-
Notifications
You must be signed in to change notification settings - Fork 29
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
base: master
Are you sure you want to change the base?
Conversation
View rendered docs @ https://intelpython.github.io/dpctl/pulls/2032/index.html |
Array API standard conformance tests for dpctl=0.20.0dev0=py310h93fe807_75 ran successfully. |
619dbfd
to
a02b5e5
Compare
Array API standard conformance tests for dpctl=0.20.0dev0=py310h93fe807_78 ran successfully. |
a02b5e5
to
71ca729
Compare
Array API standard conformance tests for dpctl=0.20.0dev0=py310h93fe807_104 ran successfully. |
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
Reduces code duplication
Typos from advanced indexing updates
71ca729
to
d426408
Compare
Array API standard conformance tests for dpctl=0.20.0dev0=py310h93fe807_109 ran successfully. |
Array API standard conformance tests for dpctl=0.20.0dev0=py310h93fe807_110 ran successfully. |
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.