-
Notifications
You must be signed in to change notification settings - Fork 19.5k
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
[OpenVINO backend] Support numpy.argsort #20913
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #20913 +/- ##
==========================================
+ Coverage 82.35% 82.38% +0.02%
==========================================
Files 561 561
Lines 52992 53072 +80
Branches 8207 8221 +14
==========================================
+ Hits 43644 43725 +81
Misses 7337 7337
+ Partials 2011 2010 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
87a2c2d
to
ea65e1f
Compare
6fc1ece
to
c339f3a
Compare
c339f3a
to
a0dc9b1
Compare
…at16 numpy arrays
@@ -10,7 +10,6 @@ NumpyDtypeTest::test_arctan2_ | |||
NumpyDtypeTest::test_argmax | |||
NumpyDtypeTest::test_argmin | |||
NumpyDtypeTest::test_argpartition | |||
NumpyDtypeTest::test_argsort |
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.
please remove exclusion for another test for correctness as well
Implements the numpy.argsort operation for the Keras 3 OpenVINO backend.
Fixes #29012.
@rkazants, could you please review?