-
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 argmin and argmax #21060
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 #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
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:
|
hello @rkazants, |
Hey @rkazants, 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.... |
NumpyOneInputOpsCorrectnessTest::test_exp | ||
NumpyOneInputOpsCorrectnessTest::test_expand_dims |
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
NumpyOneInputOpsCorrectnessTest::test_exp2 | ||
NumpyOneInputOpsCorrectnessTest::test_expm1 | ||
NumpyOneInputOpsCorrectnessTest::test_flip | ||
NumpyOneInputOpsCorrectnessTest::test_floor_divide | ||
NumpyOneInputOpsCorrectnessTest::test_hstack |
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
NumpyTwoInputOpsCorrectnessTest::test_where |
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
keras/src/backend/openvino/numpy.py
Outdated
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)) |
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.
it relates different PR. please remove it
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.
oh yeah, sorry about it.i did remove it
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,
please check it out again..
NumpyOneInputOpsCorrectnessTest::test_log1p | ||
NumpyOneInputOpsCorrectnessTest::test_logaddexp |
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
NumpyDtypeTest::test_linspace | ||
NumpyDtypeTest::test_log10 | ||
NumpyDtypeTest::test_log1p | ||
NumpyDtypeTest::test_log | ||
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.
revert these changes
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.
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...
hey @rkazants, |
hey @rkazants, |
keras/src/backend/openvino/numpy.py
Outdated
if topk_indices_shape.rank.get_length() == rank - 1: | ||
topk_indices = ov_opset.unsqueeze(topk_indices, [axis]).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.
I don't think we need this code. Please remove because TopK
will preserve the required dimension
keras/src/backend/openvino/numpy.py
Outdated
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 |
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.
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
keras/src/backend/openvino/numpy.py
Outdated
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) |
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.
this branch looks not needed, please check
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.
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...
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.
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..
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.
Hey @rkazants,
Please check it out. I request you to do it fast please...
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 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.
keras/src/backend/openvino/numpy.py
Outdated
@@ -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) |
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 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.
is something wrong? You told to change flatten_shape..
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.
hey @rkazants, whats the isssue?
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.
okay got it..sorry sir i mistakenly change argsort...
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 please check i fixed that issue...
hey @rkazants , please check.. |
@rkazants please check out this PR