-
Notifications
You must be signed in to change notification settings - Fork 794
Open
Open
Copy link
Labels
module: exirIssues related to Export IR and the code under exir/Issues related to Export IR and the code under exir/
Description
🚀 The feature, motivation and pitch
Currently the verifier logic only makes sure we have core ATen ops in the graph:
https://github.com/pytorch/executorch/blob/main/exir/verification/verifier.py#L126
The problem with this is that we still don't have 100% coverage of core ATen ops in portable kernel library (our default kernel library) so that even the verifier is happy it might run into issues when we run the .pte file in the runtime.
For example as of now adaptive_avgpool is marked as core but doesn't have portable kernel.
We want to enhance the verifier to give out warnings when this happens. We don't want to error out because it might be the case where user has a custom kernel library and is able to run this op.
Alternatives
No response
Additional context
No response
RFC (Optional)
No response
GregoryComer
Metadata
Metadata
Assignees
Labels
module: exirIssues related to Export IR and the code under exir/Issues related to Export IR and the code under exir/
Type
Projects
Status
To triage