-
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
Updated numpy.flip using openvino opset #21057
base: master
Are you sure you want to change the base?
Conversation
bump @rkazants |
Hi @Raghavyadav17 Can you please resolve the conflicts? Thank you! |
@gbaned apologies for not looking at it earlier, will resolve it ASAP!!! |
@gbaned resolved the conflict :) |
Pls do NOT merge!!! |
NumpyDtypeTest::test_log1p | ||
NumpyDtypeTest::test_log10 | ||
|
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.
@@ -33,7 +33,8 @@ NumpyDtypeTest::test_isfinite | |||
NumpyDtypeTest::test_isinf | |||
NumpyDtypeTest::test_isnan | |||
NumpyDtypeTest::test_linspace | |||
NumpyDtypeTest::test_log1p | |||
NumpyDtypeTest::test_log10 | |||
|
|||
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 remove also NumpyDtypeTest::test_flip
@@ -92,7 +93,7 @@ NumpyOneInputOpsCorrectnessTest::test_diag | |||
NumpyOneInputOpsCorrectnessTest::test_diagonal | |||
NumpyOneInputOpsCorrectnessTest::test_exp2 | |||
NumpyOneInputOpsCorrectnessTest::test_expm1 | |||
NumpyOneInputOpsCorrectnessTest::test_flip | |||
|
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.
remove this blank line. not needed
keras/src/backend/openvino/numpy.py
Outdated
def log1p(x): | ||
raise NotImplementedError("`log1p` is not supported with openvino backend") | ||
x=get_ov_output(x) | ||
one=ov_opset.constant(1.0,dtype=x.dtype) | ||
return OpenVINOKerasTensor(ov_opset.log(ov_opset.add(x,one)).output(0)) | ||
|
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.
why it is here? It is needed for different PR. pls 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.
@rkazants my bad will remove it !!
pytest.ini
Outdated
[pytest] | ||
env = | ||
KERAS_BACKEND=openvino |
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.
remove this file
requirements.txt
Outdated
torch==2.6.0+cpu | ||
torch-xla==2.6.0;sys_platform != 'darwin' | ||
#torch-xla==2.6.0;sys_platform != 'darwin' | ||
|
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
hi @rkazants working on the fixing the reviewed changes asap |
2316acb
to
d92cf16
Compare
@rkazants hi roman, made all the necessary changes you mentioned, please review them !! |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #21057 +/- ##
==========================================
- Coverage 82.47% 80.15% -2.32%
==========================================
Files 563 564 +1
Lines 53834 54138 +304
Branches 8359 8412 +53
==========================================
- Hits 44401 43396 -1005
- Misses 7392 8725 +1333
+ Partials 2041 2017 -24
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 hi Roman hope you're doing well; |
Not correct implementation:
|
@rkazants i'll have it fixed by today!!! |
Implemented all the necessary mentioned in the issue:
Provide decomposition in Python for numpy.flip using OpenVINO opset
Include tests by removing line corresponding to the implemented operation in excluded_concrete_tests.txt file.
create pytest.ini file and place it in the root directory of the clone repository. This file should contain the following content:
[pytest]
env =
KERAS_BACKEND=openvino
@rkazants please review this PR :)
Fixes [Good First Issue][Keras 3 OpenVINO Backend]: Support numpy.flip operation openvinotoolkit/openvino#29359