-
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
[torchlib] Add missing operators (set 2) #1733
Conversation
shubhambhokare1
commented
Jul 17, 2024
•
edited
Loading
edited
- aten.special.expm1
- aten.sort
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1733 +/- ##
==========================================
+ Coverage 74.87% 74.89% +0.02%
==========================================
Files 244 244
Lines 26344 26353 +9
Branches 4788 4791 +3
==========================================
+ Hits 19725 19738 +13
+ Misses 5698 5694 -4
Partials 921 921 ☔ View full report in Codecov by Sentry. |
Test Results 24 files ± 0 24 suites ±0 1h 55m 45s ⏱️ - 5m 59s For more details on these failures, see this check. Results for commit f8baeea. ± Comparison against base commit 9ced95d. This pull request removes 522 and adds 1537 tests. Note that renamed tests count towards both.
This pull request removes 115 skipped tests and adds 349 skipped tests. Note that renamed tests count towards both.
♻️ This comment has been updated with latest results. |
3ee0d7e
to
73ec353
Compare
f5a93f3
to
224a35f
Compare
dim_size = op.Gather(shape, dim, axis=0) | ||
dim_size = op.Reshape(dim_size, op.Constant(value_ints=[1])) |
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.
Use a slice to replace the two ops? (slice is also more preferable than gather)
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.
Oh, think I missed this comment before merge. Making a note of this as a #TODO for the PR covering the next set of operators.