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

Update integer advanced indexing for array API 2024.12 spec #2032

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

Conversation

ndgrigorian
Copy link
Collaborator

The array API specification now requires advanced integer indexing (i.e., with arrays) to promote Python integer scalars to arrays when mixed with integer arrays.

This PR implements this behavior, promoting any integer indices and fixes a bug in indexing where integer indices from 0D arrays were being brought to the host as Python scalars

With the previous behavior, 0D arrays and integer scalars were considered on the same level, and when positioned between two non-0D arrays, would throw IndexError, noting that basic slicing is not permitting between advanced indices. With the new behavior, an exception is made for integer indices after index arrays but prior to other basic slicing operations, these are now considered on the level of arrays instead, and are promoted to arrays prior to kernel launch.

  • 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?
  • If this PR is a work in progress, are you opening the PR as a draft?

@ndgrigorian ndgrigorian marked this pull request as draft March 26, 2025 23:15
Copy link

Copy link

Array API standard conformance tests for dpctl=0.20.0dev0=py310h93fe807_75 ran successfully.
Passed: 894
Failed: 2
Skipped: 154

@coveralls
Copy link
Collaborator

coveralls commented Mar 26, 2025

Coverage Status

coverage: 86.389% (+0.01%) from 86.378%
when pulling 12e2121 on update-indexing-for-array-api-2024
into 6f649bb on master.

@ndgrigorian ndgrigorian force-pushed the update-indexing-for-array-api-2024 branch from 619dbfd to a02b5e5 Compare March 31, 2025 16:36
Copy link

Array API standard conformance tests for dpctl=0.20.0dev0=py310h93fe807_78 ran successfully.
Passed: 894
Failed: 2
Skipped: 154

@ndgrigorian ndgrigorian marked this pull request as ready for review March 31, 2025 23:23
@ndgrigorian ndgrigorian force-pushed the update-indexing-for-array-api-2024 branch from a02b5e5 to 71ca729 Compare April 2, 2025 06:49
Copy link

github-actions bot commented Apr 2, 2025

Array API standard conformance tests for dpctl=0.20.0dev0=py310h93fe807_104 ran successfully.
Passed: 894
Failed: 2
Skipped: 154

array API 2024 spec requires advanced indexing with integer arrays, and when advanced indexing behavior is triggered, integral scalars are to be converted to arrays and broadcast with the other indices
this fixes cases like `x[..., arr1, int1, arr2, int2, :, int3]`, the final int will be treated as an integer instead of an array, and `arr1` through `int2` will be treated as arrays
since the index is on the host, we can raise like we normally would, which follows NumPy behavior
Typos from advanced indexing updates
@ndgrigorian ndgrigorian force-pushed the update-indexing-for-array-api-2024 branch from 71ca729 to d426408 Compare April 3, 2025 01:57
Copy link

github-actions bot commented Apr 3, 2025

Array API standard conformance tests for dpctl=0.20.0dev0=py310h93fe807_109 ran successfully.
Passed: 894
Failed: 2
Skipped: 154

@ndgrigorian ndgrigorian requested a review from antonwolfy April 3, 2025 05:53
Copy link

github-actions bot commented Apr 3, 2025

Array API standard conformance tests for dpctl=0.20.0dev0=py310h93fe807_110 ran successfully.
Passed: 894
Failed: 2
Skipped: 154

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