Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AOTI fallback ops: remove ops that were never codegen'ed (pytorch#143421
) Removes 4 fallback ops that are currently not possible to codegen, which does not break ABI-compatibility. 1. `_cudnn_rnn_backward` and `_histogramdd_bin_edges` both return `Tensor[]`, which we cannot codegen with the current design. 2. `_sparse_coo_tensor_with_dims_and_tensors` only supplies a Sparse operator, which we don't support. 3. `zeros.names` requires a `Dimname` input, which we can't currently codegen. Removing these ops from the list will improve test performance, since the fallback op generation will use the Python proxy executor instead of calling non-existent C functions. Pull Request resolved: pytorch#143421 Approved by: https://github.com/desertfire ghstack dependencies: pytorch#141371, pytorch#143223
- Loading branch information