We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
xp.linalg.vecdot is documented as alias to xp.vecdot.
xp.linalg.vecdot
xp.vecdot
However, xp.linalg.vecdot signature uses axis=None default, while xp.vecdot has axis=-1 as the default.
axis=None
axis=-1
They should be consistent.
The text was updated successfully, but these errors were encountered:
Hmmm...this should have been fixed already: #355. The regression happened during cbbab62. I can work on a fix and backport.
Sorry, something went wrong.
fix: address default value regression for axis kwarg in vecdot
axis
vecdot
d610848
Closes: data-apis#804 Ref: data-apis#355 Ref: data-apis#358 Ref: data-apis@cbbab62
fd6f507
Successfully merging a pull request may close this issue.
xp.linalg.vecdot
is documented as alias toxp.vecdot
.However,
xp.linalg.vecdot
signature usesaxis=None
default, whilexp.vecdot
hasaxis=-1
as the default.They should be consistent.
The text was updated successfully, but these errors were encountered: