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
rewrite linalg.norm such that it supports different norms.
Reference: https://numpy.org/doc/stable/reference/generated/numpy.linalg.norm.html https://pytorch.org/docs/stable/generated/torch.linalg.norm.html#torch.linalg.norm https://data-apis.org/array-api/latest/extensions/linear_algebra_functions.html#linalg-norm-x-axis-none-keepdims-false-ord-none
Additional functions especially for matrix norm and vector norm possible: https://pytorch.org/docs/stable/generated/torch.linalg.vector_norm.html#torch.linalg.vector_norm https://pytorch.org/docs/stable/generated/torch.linalg.matrix_norm.html#torch.linalg.matrix_norm
The text was updated successfully, but these errors were encountered:
mtar
Successfully merging a pull request may close this issue.
rewrite linalg.norm such that it supports different norms.
Reference:
https://numpy.org/doc/stable/reference/generated/numpy.linalg.norm.html
https://pytorch.org/docs/stable/generated/torch.linalg.norm.html#torch.linalg.norm
https://data-apis.org/array-api/latest/extensions/linear_algebra_functions.html#linalg-norm-x-axis-none-keepdims-false-ord-none
Additional functions especially for matrix norm and vector norm possible:
https://pytorch.org/docs/stable/generated/torch.linalg.vector_norm.html#torch.linalg.vector_norm
https://pytorch.org/docs/stable/generated/torch.linalg.matrix_norm.html#torch.linalg.matrix_norm
The text was updated successfully, but these errors were encountered: