-
Notifications
You must be signed in to change notification settings - Fork 352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
aten::pow support #918
aten::pow support #918
Conversation
Running `nox --session download_test_models-3` will download all the models used in testing for you Signed-off-by: Naren Dasan <[email protected]> Signed-off-by: Naren Dasan <[email protected]>
Clarifying some error messages and better controlling suppressed errors for op support Signed-off-by: Naren Dasan <[email protected]> Signed-off-by: Naren Dasan <[email protected]>
Adds support for the following aten::pow variants in the evaluator library ``` "aten::pow.int(int a, int b) -> (float)", "aten::pow.float(float a, float b) -> (float)", "aten::pow.int_float(int a, float b) -> (float)", "aten::pow.float_int(float a, int b) -> (float)", ``` Signed-off-by: Naren Dasan <[email protected]> Signed-off-by: Naren Dasan <[email protected]>
Signed-off-by: Naren Dasan <[email protected]> Signed-off-by: Naren Dasan <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code conforms to Python style guidelines
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code conforms to C++ style guidelines
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code conforms to Python style guidelines
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code conforms to C++ style guidelines
@narendasan |
The unsupported ops will still get printed here, just at a lower severity |
Description
Improves some debugging tools and implements an aten::pow evaluator.
Partially addresses #833
Fixes: #923
Type of change
Please delete options that are not relevant and/or add your own.
Checklist: