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

RFC: linalg.outer support batches of vectors #242

Open
AnirudhDagar opened this issue Aug 16, 2021 · 5 comments
Open

RFC: linalg.outer support batches of vectors #242

AnirudhDagar opened this issue Aug 16, 2021 · 5 comments
Labels
API change Changes to existing functions or objects in the API. RFC Request for comments. Feature requests and proposed changes. status: Blocked Issue or pull request which is current blocked. topic: Linear Algebra Linear algebra.

Comments

@AnirudhDagar
Copy link
Contributor

Current Status

Current API spec defines the linalg.outer behaviour for one-dimensional vector inputs only.

Quoting from the docs.

Computes the outer product of two vectors x1 and x2 .
Parameters

  • x1 :
    • first one-dimensional input array of size N . Should have a numeric data type.
  • x2 :
    • second one-dimensional input array of size M . Should have a numeric data type.

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 make linalg.outer more in line with the behaviour offered by other linalg functions in the spec which generally take in an nd-array/tensor.


Interestingly

  • PyTorch currently has torch.outer which also only supports 1d Tensors.
  • NumPy though supports nd-arrays with 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

@AnirudhDagar AnirudhDagar changed the title Proposal: linalg.outer support batches of vectors Proposal: linalg.outer support batches of vectors Aug 16, 2021
@kgryte
Copy link
Contributor

kgryte commented Aug 16, 2021

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.

@lezcano
Copy link
Contributor

lezcano commented Aug 17, 2021

I think that we will be adding this behaviour as we add this function to torch.linalg.

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 :)

@kgryte kgryte added API change Changes to existing functions or objects in the API. topic: Linear Algebra Linear algebra. labels Oct 4, 2021
@kgryte kgryte added this to the v2021 milestone Oct 4, 2021
@kgryte
Copy link
Contributor

kgryte commented Oct 4, 2021

For reference, the array API currently supports batching for both vector_norm, cross, and vecdot.

As mentioned previously, NumPy does not have a batched outer API, but does have ufunc.outer which supports multidimensional arrays; however, this functionality is the equivalent of the tensor product and may also be accomplished with tensordot.

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.

@kgryte
Copy link
Contributor

kgryte commented Apr 18, 2022

Based on discussions in recent consortium meetings, adding support for batching in linalg.outer has received positive support and is tentatively slated for the 2022 revision of the array API standard.

@rgommers
Copy link
Member

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.

@rgommers rgommers removed this from the v2022 milestone Nov 28, 2022
@kgryte kgryte added the RFC Request for comments. Feature requests and proposed changes. label Apr 4, 2024
@kgryte kgryte changed the title Proposal: linalg.outer support batches of vectors RFC: linalg.outer support batches of vectors Apr 4, 2024
@kgryte kgryte added the status: Blocked Issue or pull request which is current blocked. label Apr 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
API change Changes to existing functions or objects in the API. RFC Request for comments. Feature requests and proposed changes. status: Blocked Issue or pull request which is current blocked. topic: Linear Algebra Linear algebra.
Projects
None yet
Development

No branches or pull requests

4 participants