pytorch
cbb2df54 - Added check for unsupported dispatch key in codegen (#67961)

Commit
3 years ago
Added check for unsupported dispatch key in codegen (#67961) Summary: Added a check for the dispatch keys present in native_function.yaml, they must be part of the fixed set of dispatch keys. If not, signal an error. I also removed two dispatch keys from the function schema copy_ , because they are not supported (SparseHIP, SpareXPU). Pull Request resolved: https://github.com/pytorch/pytorch/pull/67961 Test Plan: this function schema (for example) in native_function.yaml ``` - func: native_norm(Tensor self, Scalar p=2) -> Tensor dispatch: SparseCPU, SparseCUDA, SparseHIP: norm_sparse ``` now generates this error during codegen: `AssertionError: SparseHIP is not a supported dispatch key.` Fixes https://github.com/pytorch/pytorch/issues/66190 Reviewed By: albanD Differential Revision: D34327853 Pulled By: ezyang fbshipit-source-id: 6959d14a7752aefd025baa482d56547b4ed69b4c (cherry picked from commit 26bea380af91a72b39d09c2e36274b4f6f8d50fa)
Committer
Parents
Loading