-
Notifications
You must be signed in to change notification settings - Fork 51
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
Add searchsorted
to the specification
#699
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rgommers This PR should be ready for final sign off. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed again, all comments were addressed and this PR looks good to me. I'll plan to merge it later today or tomorrow.
Shouldn't the language be "x1 should be a one-dimensional array" instead of "x1 must be a one-dimensional array"? |
|
||
Default: ``'left'``. | ||
sorter: Optional[array] | ||
array of indices that sort ``x1`` in ascending order. The array must have the same shape as ``x1`` and have an integer data type. Default: ``None``. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we only require this to be the default array index type?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why would that be necessary?
This PR
searchsorted
to the specification #688 by adding a specification forsearchsorted
to the Array API specification.x1
be a one-dimensional array. PyTorch and TensorFlow allowx1
to be multi-dimensional; however, NumPy et al do not. In this PR, I've chosen to restrictx1
to a one-dimensional array, as this is the lowest common denominator. The specification can be extended in the future to accommodate multi-dimensionalx1
(stacking) in the future.x2
be an array. CuPy and TensorFlow require thatx2
be an array, while NumPy, PyTorch, and others allowx2
to be a scalar. In this PR, I've chosen to restrictx2
to be an array. For the scalar use case, downstream consumers can wrap scalar values as zero-dimensional arrays.