Replies: 1 comment
-
OnnxRuntime should tell you what operators couldn't be implemented in a provider if you set your logging level to ORT_LOGGING_LEVEL_VERBOSE (or maybe ORT_LOGGING_LEVEL_INFO I'm not 100% sure) when creating the OrtEnv. If all work in the one provider it'll just say that all are using the same provider. But this should tell you what you need. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to get acceleration of Random Forest model converted from
sklearn
toonnx
using NNAPI execution provider. There is a list of supported operators: https://onnxruntime.ai/docs/execution-providers/NNAPI-ExecutionProvider.html#supported-opsI'd like to see what operators that are used in my model are not supported by NNAPI execution provider. How do I get such list? Or is there a way to list all operators used by my model?
Beta Was this translation helpful? Give feedback.
All reactions