-
Notifications
You must be signed in to change notification settings - Fork 19.6k
[Keras 3 OpenVINO Backend]: Support numpy.log1p operation #29487 #21129
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
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #21129 +/- ##
========================================
Coverage 82.68% 82.69%
========================================
Files 564 564
Lines 54132 54232 +100
Branches 8411 8425 +14
========================================
+ Hits 44761 44846 +85
- Misses 7296 7310 +14
- Partials 2075 2076 +1
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:
|
@rkazants What can I do about this ? any suggestions ? |
This reverts commit 2b880fa.
@@ -33,7 +33,6 @@ NumpyDtypeTest::test_isfinite | |||
NumpyDtypeTest::test_isinf | |||
NumpyDtypeTest::test_isnan | |||
NumpyDtypeTest::test_linspace | |||
NumpyDtypeTest::test_log1p | |||
NumpyDtypeTest::test_logaddexp | |||
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 also remove NumpyOneInputOpsCorrectnessTest::test_log1p
below
one_const = ov_opset.constant(1, x_type).output(0) | ||
added = ov_opset.add(x, one_const).output(0) | ||
result = ov_opset.log(added).output(0) | ||
return OpenVINOKerasTensor(result) | ||
|
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 more one blank line to pass CI jobs
@rkazants
Details: Added support numpy.log1p operation and a successful test run. Code
can you review please ? also i tried to fix the pre-commit run error but could not solve it, can you please help me with it ?