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

Definition of vecdot is ambiguous in the complex case. #356

Closed
lezcano opened this issue Dec 31, 2021 · 6 comments · Fixed by #512
Closed

Definition of vecdot is ambiguous in the complex case. #356

lezcano opened this issue Dec 31, 2021 · 6 comments · Fixed by #512
Labels
topic: Complex Data Types Complex number data types. topic: Linear Algebra Linear algebra.
Milestone

Comments

@lezcano
Copy link
Contributor

lezcano commented Dec 31, 2021

The function linalg.vecdot is defined as:

Computes the (vector) dot product of two arrays.

It is not clear what this means for complex vectors, as it could be \sum x_i y_i or it could be (as defined for a complex dot product) \sum \conj(x_i) y_i.

I am aware that the API does not cover complex tensors yet, but many of the libraries that are currently implementing this operation do support complex tensors, so it would be great to disambiguate the meaning of this operation now, so that libraries that implement it can safely implement the intended operation for complex tensors.

lezcano added a commit to pytorch/pytorch that referenced this issue Dec 31, 2021
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Dec 31, 2021
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

ghstack-source-id: d91ef0b35bce783a90524d99d8c8177f5a4dc8e3
Pull Request resolved: #70542
lezcano added a commit to pytorch/pytorch that referenced this issue Jan 3, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Jan 3, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Jan 3, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

ghstack-source-id: e57955993cc8c1388b7abaa9354b81c53da393cb
Pull Request resolved: #70542
@kgryte
Copy link
Contributor

kgryte commented Jan 5, 2022

@lezcano In pytorch/pytorch#70542, you've implemented the complex dot product as the \sum x_i y_i. Any particular reason for this choice?

As documented in #137, NumPy, in its main namespace, has both non-conjugating APIs and a conjugating API (vdot).

In the OP of #137, I advocated for complex conjugation in vecdot rather than having a separate API, which has the nicety of ensuring that the inner product of a complex vector with itself is real and positive definite.

For external reference, both Julia and MATLAB conjugate. BLAS has two routines: one conjugating (cdotc) and the other non-conjugating (cdotu).

@kgryte kgryte added topic: Complex Data Types Complex number data types. topic: Linear Algebra Linear algebra. labels Jan 5, 2022
@kgryte kgryte added this to the v2022 milestone Jan 5, 2022
@lezcano
Copy link
Contributor Author

lezcano commented Jan 5, 2022

I just had to choose one and I went for implementing the equivalent of matmul for vectors (as you cannot do this with matmul).

Now, according to the specification, the correct way of implementing this would be as a complex inner product, i.e. x^H y. What the operation that I just implemented means in the complex case is the application of a batch of complex 1-forms on a batch of complex vectors.

In my opinion, given the name, the correct implementation in the complex case should be x^H y. What do you think?

@kgryte
Copy link
Contributor

kgryte commented Jan 5, 2022

I'm of the same opinion: x^H y. Perhaps others have different opinions?

lezcano added a commit to pytorch/pytorch that referenced this issue Jan 5, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Jan 5, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

ghstack-source-id: e51aaed27c6e5de717ef0f6c51a3b862ccf4a717
Pull Request resolved: #70542
@asmeurer
Copy link
Member

asmeurer commented Jan 5, 2022

I just had to choose one and I went for implementing the equivalent of matmul for vectors (as you cannot do this with matmul).

matmul/@ supports 1D array inputs. For higher dimensional arrays you can use mT to align the dimensions for matmul.

@lezcano
Copy link
Contributor Author

lezcano commented Jan 6, 2022

You can indeed replicate the this behaviour resizing the inputs adding a dimension of size 1 in both inputs (see pytorch/pytorch#18027) but this seems fairly clunky. There is no easy way to do this at the moment with the API.

@kgryte
Copy link
Contributor

kgryte commented Jan 10, 2022

This issue was discussed during the most recent consortium meeting (1-6-2021). Consensus there was that the definition of the vector dot product for complex number input should conjugate (i.e., x^H y; similar to NumPy's vdot).

Implementors can begin their complex number vecdot implementations assuming that this will be added to the specification along with more general complex number guidance.

lezcano added a commit to pytorch/pytorch that referenced this issue Mar 10, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

ghstack-source-id: 9ebc81abaf7a31b10ff3552f661d0c1944b86aa7
Pull Request resolved: #70542
lezcano added a commit to pytorch/pytorch that referenced this issue Mar 10, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Mar 10, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue May 18, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

ghstack-source-id: 8fcfd2fd3fbf6e3c380085ca6a082b60aa5d0b01
Pull Request resolved: #70542
lezcano added a commit to pytorch/pytorch that referenced this issue May 18, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue May 18, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue May 19, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue May 19, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue May 19, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

ghstack-source-id: fd02fc24fc72ec5b0f610f8307a24bcd472e8875
Pull Request resolved: #70542
lezcano added a commit to pytorch/pytorch that referenced this issue May 19, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

ghstack-source-id: 1432408716f26f00dbea4c9796f1c210a2c61dc4
Pull Request resolved: #70542
lezcano added a commit to pytorch/pytorch that referenced this issue May 19, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue May 19, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 6, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

ghstack-source-id: 0d2c1db3047d1f6e1101a4d48e47e52a132ce10f
Pull Request resolved: #70542
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 6, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 6, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 6, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 6, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 6, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

ghstack-source-id: 8bcd1e56fe5a8fd8a0072c333d74cd769de62887
Pull Request resolved: #70542
pytorchmergebot pushed a commit to pytorch/pytorch that referenced this issue Jul 8, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc @mruberry @rgommers @pmeier @asmeurer @leofang @AnirudhDagar @asi1024 @emcastillo @kmaehashi
Pull Request resolved: #70542
Approved by: https://github.com/IvanYashchuk, https://github.com/mruberry
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 11, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 11, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 11, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

ghstack-source-id: fd4705bf4f0e3d4ef363b3449042b5b824a52303
Pull Request resolved: #70542
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 11, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 11, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 12, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 12, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 12, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

ghstack-source-id: 54fcace70184c891c88609c19406a519f527cb8b
Pull Request resolved: #70542
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 12, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

ghstack-source-id: 13976c01d5bf8ef68b2199ab886eef2f5fc1ac62
Pull Request resolved: #70542
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 12, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
lezcano added a commit to pytorch/pytorch that referenced this issue Jul 12, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

[ghstack-poisoned]
pytorchmergebot pushed a commit to pytorch/pytorch that referenced this issue Jul 12, 2022
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc @mruberry @rgommers @pmeier @asmeurer @leofang @AnirudhDagar @asi1024 @emcastillo @kmaehashi
Pull Request resolved: #70542
Approved by: https://github.com/IvanYashchuk, https://github.com/mruberry
facebook-github-bot pushed a commit to pytorch/pytorch that referenced this issue Jul 13, 2022
Summary:
This PR adds the function `linalg.vecdot` specified by the [Array
API](https://data-apis.org/array-api/latest/API_specification/linear_algebra_functions.html#function-vecdot)

For the complex case, it chooses to implement \sum x_i y_i. See the
discussion in data-apis/array-api#356

Edit. When it comes to testing, this function is not quite a binopt, nor a reduction opt. As such, we're this close to be able to get the extra testing, but we don't quite make it. Now, it's such a simple op that I think we'll make it without this.

Resolves #18027.

cc mruberry rgommers pmeier asmeurer leofang AnirudhDagar asi1024 emcastillo kmaehashi

Pull Request resolved: #70542
Approved by: https://github.com/IvanYashchuk, https://github.com/mruberry

Test Plan: contbuild & OSS CI, see https://hud.pytorch.org/commit/pytorch/pytorch/e505796a2c0711e6e8ea39c12c19848dc49a60b5

Reviewed By: DanilBaibak

Differential Revision: D37813214

Pulled By: DanilBaibak

fbshipit-source-id: 782cb7cb31fda5dba4f3de70496f2470b41d8e34
rgommers added a commit to rgommers/array-api that referenced this issue Nov 17, 2022
Closes data-apisgh-356 (where the definition x1^H x2 was decided).
kgryte added a commit that referenced this issue Dec 14, 2022
* Add complex number support to `vecdot`

Closes gh-356 (where the definition x1^H x2 was decided).

* Move operation description to extended intro

* Fix equation

* Update equation

* Update copy

* Fix equation

* Fix equation

* Remove note

* Add linebreak

* Update copy

Co-authored-by: Athan <kgryte@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
topic: Complex Data Types Complex number data types. topic: Linear Algebra Linear algebra.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants