8000 Add specification for computing the dot product (linalg: vecdot) by kgryte · Pull Request #137 · data-apis/array-api · GitHub
[go: up one dir, main page]

Skip to content

Add specification for computing the dot product (linalg: vecdot) #137

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

Merged
merged 9 commits into from
May 12, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update description
  • Loading branch information
kgryte committed Mar 11, 2021
commit ca52e0e1387c65426adef2c109cec4d7b9a6ae17
2 changes: 1 addition & 1 deletion spec/API_specification/linear_algebra_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Returns the specified diagonals. If `x` has more than two dimensions, then the a
(function-dot)=
### dot(x1, x2, /, *, axis=None)

Computes the dot product of two arrays (or stacks of arrays).
Computes the dot product of two arrays.

#### Parameters

Expand Down
0