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 argmin and argmax #21060

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

Conversation

Hmm-1224
Copy link

@rkazants please check out this PR

@codecov-commenter
Copy link

codecov-commenter commented Mar 18, 2025

Codecov Report

Attention: Patch coverage is 77.77778% with 8 lines in your changes missing coverage. Please review.

Project coverage is 82.68%. Comparing base (1ba2012) to head (46e51b6).
Report is 25 commits behind head on master.

Files with missing lines Patch % Lines
keras/src/backend/openvino/numpy.py 77.77% 4 Missing and 4 partials ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master   #21060      +/-   ##
==========================================
+ Coverage   82.47%   82.68%   +0.21%     
==========================================
  Files         563      564       +1     
  Lines       53837    54168     +331     
  Branches     8359     8419      +60     
==========================================
+ Hits        44402    44789     +387     
+ Misses       7394     7300      -94     
- Partials     2041     2079      +38     
Flag Coverage Δ
keras 82.49% <77.77%> (+0.20%) ⬆️
keras-jax 64.03% <0.00%> (+0.23%) ⬆️
keras-numpy 59.06% <0.00%> (+0.31%) ⬆️
keras-openvino 32.92% <77.77%> (+0.20%) ⬆️
keras-tensorflow 64.31% <0.00%> (+0.20%) ⬆️
keras-torch 64.07% <0.00%> (+0.24%) ⬆️

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.

@Hmm-1224
Copy link
Author

hello @rkazants,
please check out this PR and guide me further .....

@Hmm-1224
Copy link
Author

Hmm-1224 commented Mar 24, 2025

Hey @rkazants,
As we are approaching the final stages of GSoC 2025, I’m truly passionate about contributing to OpenVINO and would love to successfully complete this PR as a prerequisite. I tried to reach out to you many times but may be those messages couldn't reach you. I’d really appreciate it if you could take a moment to review it.

Apart from this as you are a valuable member of this community, i want you to review my proposal and give me suggestions if needed....
OpenVINO (1).pdf

Comment on lines 90 to 91
NumpyOneInputOpsCorrectnessTest::test_exp
NumpyOneInputOpsCorrectnessTest::test_expand_dims
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

NumpyOneInputOpsCorrectnessTest::test_exp2
NumpyOneInputOpsCorrectnessTest::test_expm1
NumpyOneInputOpsCorrectnessTest::test_flip
NumpyOneInputOpsCorrectnessTest::test_floor_divide
NumpyOneInputOpsCorrectnessTest::test_hstack
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

NumpyTwoInputOpsCorrectnessTest::test_where
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 814 to 828
def hstack(xs):
raise NotImplementedError("`hstack` is not supported with openvino backend")
if not isinstance(xs, (list, tuple)):
raise TypeError("Input to `hstack` must be a list or tuple of tensors.")
if len(xs) == 0:
raise ValueError("Input list to `hstack` cannot be empty.")
element_type = None
for x in xs:
if isinstance(x, OpenVINOKerasTensor):
element_type = x.output.get_element_type()
break
xs = [get_ov_output(x, element_type) for x in xs]
xs = _align_operand_types(xs[0], xs[1], "hstack()")
rank = len(xs[0].get_partial_shape())
axis = 1 if rank > 1 else 0
return OpenVINOKerasTensor(ov_opset.concat(xs, axis=axis).output(0))
Copy link
Contributor

Choose a reason for hiding this comment

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

it relates different PR. please remove it

Copy link
Author

Choose a reason for hiding this comment

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

oh yeah, sorry about it.i did remove it

Copy link
Author

@Hmm-1224 Hmm-1224 Mar 27, 2025

Choose a reason for hiding this comment

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

@rkazants,
please check it out again..

@Hmm-1224 Hmm-1224 requested a review from rkazants March 27, 2025 10:21
Comment on lines 97 to 98
NumpyOneInputOpsCorrectnessTest::test_log1p
NumpyOneInputOpsCorrectnessTest::test_logaddexp
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 33 to 36
NumpyDtypeTest::test_linspace
NumpyDtypeTest::test_log10
NumpyDtypeTest::test_log1p
NumpyDtypeTest::test_log
NumpyDtypeTest::test_logaddexp
NumpyDtypeTest::test_logspace
Copy link
Contributor

Choose a reason for hiding this comment

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

revert these changes

Copy link
Author

@Hmm-1224 Hmm-1224 Mar 28, 2025

Choose a reason for hiding this comment

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

Hello @rkazants ,
check out the if changes is made correctly...sorry if this frustrate you. Actually i just copy paste from keras-team:master excluded_conrete_test.txt and remove argmin and argmax but changes you told me to make was different from that...

@Hmm-1224 Hmm-1224 requested a review from rkazants March 28, 2025 06:19
@Hmm-1224
Copy link
Author

hey @rkazants,
please check it out. i guess i made all mandatory changes u suggested..

@Hmm-1224
Copy link
Author

Hmm-1224 commented Mar 29, 2025

Screenshot 2025-03-29 150512

Why is this coming ? since i removed argmax argmin the no. of lines reduced and last line come at 164 from 168..then why is it creating issue?

@Hmm-1224
Copy link
Author

Hmm-1224 commented Apr 1, 2025

hey @rkazants,
please check out the modifications.8th April is deadline and i have to complete it before deadline. Please help me in competing this task on time..
Also i requested you to review my OpenVINO proposal. And i truly need your feedback on it.. If you could take out few minutes it would be great. Sorry i have to talk about that here but i personally mailed you but you probably missed it.

Comment on lines 351 to 352
if topk_indices_shape.rank.get_length() == rank - 1:
topk_indices = ov_opset.unsqueeze(topk_indices, [axis]).output(0)
Copy link
Contributor

Choose a reason for hiding this comment

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

I don't think we need this code. Please remove because TopK will preserve the required dimension

axis = rank + axis
k = ov_opset.constant(1, Type.i32).output(0)
topk_outputs = ov_opset.topk(
x, k=k, axis=axis, mode="max", sort="none", index_element_type=Type.i32
Copy link
Contributor

Choose a reason for hiding this comment

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

According to numpy documentation "In case of multiple occurrences of the maximum values, the indices corresponding to the first occurrence are returned" in https://numpy.org/doc/2.2/reference/generated/numpy.argmax.html, we should use sort = value , mode = max , stable = true

Comment on lines 355 to 359
if keepdims:
new_shape = ov_opset.constant(
[1 if i == axis else -1 for i in range(rank)], Type.i32
).output(0)
topk_indices = ov_opset.reshape(topk_indices, new_shape, True).output(0)
Copy link
Contributor

Choose a reason for hiding this comment

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

this branch looks not needed, please check

Copy link
Author

@Hmm-1224 Hmm-1224 Apr 3, 2025

Choose a reason for hiding this comment

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

i tried without it first but it didn't work and were failing for two testcases and resulted in following error..
TypeError: reshape() missing 1 required positional argument: 'special_zero' .

To resolve this, I ensured that reshape() receives the correct arguments by explicitly setting the shape adjustment logic when keepdims=True. This avoids errors and ensures correct behavior. If you have alternate suggestions please do share i will work on it...

Copy link
Author

@Hmm-1224 Hmm-1224 Apr 3, 2025

Choose a reason for hiding this comment

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

topk_indices = topk_outputs.output(1)
if not  keepdims:
    topk_indices = ov_opset.squeeze(topk_indices, [axis]).output(0)

this is how i firstly tried as you told TopK already preserves the shape when keepdims=True but didn't work for two testcases as i described above..

Copy link
Author

Choose a reason for hiding this comment

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

Hey @rkazants,
Please check it out. I request you to do it fast please...

Copy link
Contributor

Choose a reason for hiding this comment

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

@Hmm-1224,

please leave only branch if not keepdims: as you tried

and change flatten_shape above to:

flatten_shape = ov_opset.constant([-1] + [1] * (rank - 1), Type.i32).output(0)

axis is None case turned to be a bit tricky case.

@Hmm-1224 Hmm-1224 requested a review from rkazants April 3, 2025 19:20
@@ -342,7 +394,7 @@ def argsort(x, axis=-1):
if rank == 0:
return OpenVINOKerasTensor(ov_opset.constant([0], Type.i32).output(0))
if axis is None:
flatten_shape = ov_opset.constant([-1], Type.i32).output(0)
flatten_shape = ov_opset.constant([-1] + [1] * (rank - 1), Type.i32).output(0)
Copy link
Contributor

Choose a reason for hiding this comment

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

?

Copy link
Author

Choose a reason for hiding this comment

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

is something wrong? You told to change flatten_shape..

Copy link
Author

Choose a reason for hiding this comment

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

hey @rkazants, whats the isssue?

Copy link
Author

Choose a reason for hiding this comment

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

okay got it..sorry sir i mistakenly change argsort...

Copy link
Author

Choose a reason for hiding this comment

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

@rkazants please check i fixed that issue...

@Hmm-1224 Hmm-1224 requested a review from rkazants April 4, 2025 09:46
@Hmm-1224
Copy link
Author

Hmm-1224 commented Apr 5, 2025

hey @rkazants , please check..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Assigned Reviewer
Development

Successfully merging this pull request may close these issues.

4 participants