Add searchsorted
to the specification #699
Merged
Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Suggestions cannot be applied while viewing a subset of changes. Only one suggestion per line can be applied in a batch. Add this suggestion to a batch that can be applied as a single commit. Applying suggestions on deleted lines is not supported. You must change the existing code in this line in order to create a valid suggestion. Outdated suggestions cannot be applied. This suggestion has been applied or marked resolved. Suggestions cannot be applied from pending reviews. Suggestions cannot be applied on multi-line comments. Suggestions cannot be applied while the pull request is queued to merge. Suggestion cannot be applied right now. Please check back later.
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.