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

Enable clip test from array-api-tests scope #2386

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

antonwolfy
Copy link
Contributor

@antonwolfy antonwolfy commented Mar 25, 2025

There were few fixes implemented in array-api-tests around clip tests.
The PR proposes to enable test_clip test from array-api-tests scope.

  • Have you provided a meaningful PR description?
  • Have you added a test, reproducer or referred to an issue with a reproducer?
  • Have you tested your changes locally for CPU and GPU devices?
  • Have you made sure that new changes do not introduce compiler warnings?
  • Have you checked performance impact of proposed changes?
  • Have you added documentation for your changes, if necessary?
  • Have you added your changes to the changelog?

@antonwolfy antonwolfy self-assigned this Mar 25, 2025
Copy link
Contributor

View rendered docs @ https://intelpython.github.io/dpnp/pull/2386/index.html

Copy link
Contributor

Array API standard conformance tests for dpnp=0.18.0dev0=py312he4f9c94_43 ran successfully.
Passed: 1005
Failed: 1
Skipped: 44

@antonwolfy
Copy link
Contributor Author

antonwolfy commented Mar 25, 2025

The issue is still present and caused by dpctl-1742:

File "/home/runner/miniconda3/envs/array-api-conformity/lib/python3.12/site-packages/dpctl/tensor/_clip.py", line 463, in clip
    raise ValueError(
ValueError: function '<function clip at 0x7f52e1a619e0>' does not support input types (uint8, uint8, uint16), and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''.
Falsifying example: test_clip(
    x=array(0, dtype=uint8),
    data=data(...),
...

@coveralls
Copy link
Collaborator

Coverage Status

coverage: 72.142%. remained the same
when pulling 0635fcf on enable-clip-tests
into 395c896 on master.

@ndgrigorian
Copy link
Collaborator

The issue is still present and caused by dpctl-1742:

File "/home/runner/miniconda3/envs/array-api-conformity/lib/python3.12/site-packages/dpctl/tensor/_clip.py", line 463, in clip
    raise ValueError(
ValueError: function '<function clip at 0x7f52e1a619e0>' does not support input types (uint8, uint8, uint16), and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''.
Falsifying example: test_clip(
    x=array(0, dtype=uint8),
    data=data(...),
...

I still think this may be a mistake in the array API tests

Per spec,
"If either min or max is an array having a different data type than x, behavior is unspecified and thus implementation-dependent."

Also,
"Clarified that behavior is only defined when x, min, and max resolve to arrays having the same data type."

@ndgrigorian
Copy link
Collaborator

ndgrigorian commented Apr 2, 2025

Regardless of our intended solution, we can file this with the array API tests as an incorrectly designed test.

It may have been more convenient to just enable type promotion in clip after all... perhaps if NumPy makes a stronger decision it can be considered.

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

Successfully merging this pull request may close these issues.

3 participants