-
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
RFC: linalg.outer
support batches of vectors
#242
Comments
linalg.outer
support batches of vectors
It would be great if an array library (e.g., Torch) would implement such behavior. Without such an implementation, we'd be blazing a new path here, one which is incompatible with existing behavior. For NumPy, moving to batch would be a breaking change. For Torch, this too would be a breaking change (given the 1D requirement), but Torch also seems more generally willing to introduce breaking changes. |
I think that we will be adding this behaviour as we add this function to Note that the change in Torch would not be BC-breaking. We tend to be quite happy to add changes as long as they are backwards compatible :) |
For reference, the array API currently supports batching for both As mentioned previously, NumPy does not have a batched Accordingly, there is no API currently for performing batch outer products. I will raise this at the next consortium meeting to determine whether there is appetite for adding support in the standard. |
Based on discussions in recent consortium meetings, adding support for batching in |
This still wasn't implemented in PyTorch. We should probably bump this, and deprecate the current numpy behavior (which is pretty bad, so deserves deprecation anyway even if it wasn't for this standard) first. |
linalg.outer
support batches of vectorslinalg.outer
support batches of vectors
Current Status
Current API spec defines the
linalg.outer
behaviour for one-dimensional vector inputs only.Quoting from the docs.
Proposal
Most of the array/tensor libraries involve the manipulation and usage of batched vectors. It would be worth considering batch support in
linalg.outer
for the Array API standard, instead of only the 1D Vectors. This will also makelinalg.outer
more in line with the behaviour offered by other linalg functions in the spec which generally take in an nd-array/tensor.Interestingly
torch.outer
which also only supports 1d Tensors.numpy.outer
, but the behaviour is to flatten the inputs to 1d Vectors in case the input is not already 1-dimensional.This was initially discussed in pytorch/pytorch#63293.
cc @lezcano @rgommers
The text was updated successfully, but these errors were encountered: