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

unique_all doesn't specify that indices should be a flattened index #588

Closed
asmeurer opened this issue Feb 3, 2023 · 0 comments · Fixed by #752
Closed

unique_all doesn't specify that indices should be a flattened index #588

asmeurer opened this issue Feb 3, 2023 · 0 comments · Fixed by #752
Labels
bug Something isn't working.
Milestone

Comments

@asmeurer
Copy link
Member

asmeurer commented Feb 3, 2023

unique_all:

second element must have the field name indices and must be an array containing the indices (first occurrences) of x that result in values. The array must have the same shape as values and must have the default array index data type.

This is under specified because it isn't clear that the indices are for a flattened x, e.g.:

>>> import numpy.array_api as xp
<stdin>:1: UserWarning: The numpy.array_api submodule is still experimental. See NEP 47.
>>> x = xp.asarray([[1, 0, 1], [0, 2, 1]])
>>> xp.unique_all(x)
UniqueAllResult(values=Array([0, 1, 2], dtype=int64), indices=Array([1, 0, 4], dtype=int64), inverse_indices=Array([[1, 0, 1],
       [0, 2, 1]], dtype=int64), counts=Array([2, 3, 1], dtype=int64))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working.
Projects
None yet
3 participants