-
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
Add OpenVINO backend support for numpy.expm1 #21127
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 #21127 +/- ##
==========================================
- Coverage 82.69% 82.67% -0.02%
==========================================
Files 564 564
Lines 54132 54138 +6
Branches 8411 8412 +1
==========================================
- Hits 44765 44761 -4
- Misses 7294 7302 +8
- Partials 2073 2075 +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:
|
keras/src/backend/openvino/numpy.py
Outdated
@@ -1379,3 +1379,12 @@ def argpartition(x, kth, axis=-1): | |||
raise NotImplementedError( | |||
"`argpartition` is not supported with openvino backend" | |||
) | |||
|
|||
|
|||
def expm1(x): |
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.
there exists expm1
declaration for which you need provide implementation. No need to create a new declaration.
Also, please activate test for this op
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.
implemented to its previous declaration, what exactly do you mean to activate test for this op?
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.
check other PRs how they remove
) | ||
) |
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.
revert this change
element_type = None | ||
if isinstance(x, OpenVINOKerasTensor): | ||
element_type = x.output.get_element_type() |
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.
not needed, please remove
element_type = None | ||
if isinstance(x, OpenVINOKerasTensor): | ||
element_type = x.output.get_element_type() | ||
x = get_ov_output(x, element_type) |
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.
just leave: x = get_ov_output(x)
This pull request adds OpenVINO backend support for numpy.expm1. The expm1 function is implemented using OpenVINO operations to perform element-wise exp(x) - 1.
Changes include:
numpy.py
for OpenVINO backend.