-
Notifications
You must be signed in to change notification settings - Fork 57
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
Register aten::pow.Scalar
for aten::pow
#1719
Conversation
Signed-off-by: Hankyeol Kyung <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1719 +/- ##
===========================================
- Coverage 75.23% 40.31% -34.93%
===========================================
Files 242 172 -70
Lines 25861 23385 -2476
Branches 4660 4205 -455
===========================================
- Hits 19456 9427 -10029
- Misses 5519 13557 +8038
+ Partials 886 401 -485 ☔ View full report in Codecov by Sentry. |
aten::pow
aten::pow.Scalar
for aten::pow
Signed-off-by: Hankyeol Kyung <[email protected]>
Model still exportable with |
Thank you for your contribution! |
Hello,
After upgrading onnxscript from version
0.1.0.dev20240516
to the latest version, I encountered an error while trying to export my Torch model to ONNX:Upon investigating the issue, I found that the changes made to
aten_pow
in PR #1612 are causing this problem. Reverting these changes allows the model to be exported to ONNX successfully again.Could support for
aten::pow
be reintroduced to enable smooth exporting of models?Thank you for your consideration.