Skip to content
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

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

DakshBegani
Copy link

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:

  • Added expm1 implementation in numpy.py for OpenVINO backend.
  • Updated relevant files to ensure compatibility with the new operation.
  • Verified correctness by running relevant tests.

@codecov-commenter
Copy link

codecov-commenter commented Apr 3, 2025

Codecov Report

Attention: Patch coverage is 0% with 6 lines in your changes missing coverage. Please review.

Project coverage is 82.67%. Comparing base (6d26efb) to head (c3525ee).
Report is 1 commits behind head on master.

Files with missing lines Patch % Lines
keras/src/backend/openvino/numpy.py 0.00% 6 Missing ⚠️
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     
Flag Coverage Δ
keras 82.48% <0.00%> (-0.02%) ⬇️
keras-jax 64.06% <0.00%> (-0.02%) ⬇️
keras-numpy 59.09% <0.00%> (-0.01%) ⬇️
keras-openvino 32.87% <0.00%> (-0.01%) ⬇️
keras-tensorflow 64.35% <0.00%> (-0.02%) ⬇️
keras-torch 64.11% <0.00%> (-0.02%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@@ -1379,3 +1379,12 @@ def argpartition(x, kth, axis=-1):
raise NotImplementedError(
"`argpartition` is not supported with openvino backend"
)


def expm1(x):
Copy link
Contributor

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

Copy link
Author

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?

Copy link
Contributor

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

Comment on lines -1381 to +1386
)
)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

revert this change

Comment on lines +706 to +708
element_type = None
if isinstance(x, OpenVINOKerasTensor):
element_type = x.output.get_element_type()
Copy link
Contributor

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)
Copy link
Contributor

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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants