8000 Split `unique` into separate functions by kgryte · Pull Request #275 · data-apis/array-api · GitHub
[go: up one dir, main page]

Skip to content

Split unique into separate functions #275

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

Merged
merged 7 commits into from
Oct 21, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update copy
  • Loading branch information
kgryte committed Sep 27, 2021
commit cba2ff12ef2a12902f447d6ce63d3985a0204bdd
2 changes: 1 addition & 1 deletion spec/API_specification/set_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ A conforming implementation of the array API standard must provide and support t
:::{admonition} Data-dependent output shape
:class: important

The shapes of one of the output arrays for this function depend on the data values in the input array; hence, array libraries which build computation graphs (e.g., JAX, Dask, etc.) may find this function difficult to implement without knowing array values. Accordingly, such libraries may choose to omit this function. See {ref}`data-dependent-output-shapes` section for more details.
The shapes of two of the output arrays for this function depend on the data values in the input array; hence, array libraries which build computation graphs (e.g., JAX, Dask, etc.) may find this function difficult to implement without knowing array values. Accordingly, such libraries may choose to omit this function. See {ref}`data-dependent-output-shapes` section for more details.
:::

Returns the unique elements of an input array `x`.
Expand Down
0