-
Notifications
You must be signed in to change notification settings - Fork 19.6k
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 np.log2 for ov BackEnd #21048
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #21048 +/- ##
=======================================
Coverage 82.68% 82.68%
=======================================
Files 564 564
Lines 54114 54124 +10
Branches 8410 8411 +1
=======================================
+ Hits 44743 44755 +12
Misses 7293 7293
+ Partials 2078 2076 -2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
@chiruu12, please rebase your branch to the latest master |
@rkazants Please review sir!! |
@@ -99,7 +99,6 @@ NumpyOneInputOpsCorrectnessTest::test_imag | |||
NumpyOneInputOpsCorrectnessTest::test_isfinite | |||
NumpyOneInputOpsCorrectnessTest::test_isinf | |||
NumpyOneInputOpsCorrectnessTest::test_log1p | |||
NumpyOneInputOpsCorrectnessTest::test_log2 | |||
NumpyOneInputOpsCorrectnessTest::test_logaddexp |
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.
could you remove NumpyDtypeTest::test_log as well?
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.
Done sir!
@@ -34,7 +34,6 @@ NumpyDtypeTest::test_isinf | |||
NumpyDtypeTest::test_isnan | |||
NumpyDtypeTest::test_linspace | |||
NumpyDtypeTest::test_log1p | |||
NumpyDtypeTest::test_log | |||
NumpyDtypeTest::test_logspace |
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 add NumpyDtypeTest::test_logaddexp
. For this operation, support will be added in separate PR.
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.
Understood!!
@fchollet, looks good to me. Recommend to merge. Thanks, |
Thank you so much sir! |
I have added support for numpy.log2 in the OpenVINO backend
This PR is related to openvinotoolkit/openvino#29488
@rkazants could you please review