-
-
Notifications
You must be signed in to change notification settings - Fork 804
feat!: add blas/base/strmv
#2535
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
Conversation
@aman-095 Thanks for working on this. As previously discussed, we need to refactor the main and |
The changes thus far made and the refactoring will also need to be applied to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks, @aman-095!
BREAKING CHANGE: rename `none` transpose operation to `no-transpose` in `@stdlib/types` To migrate, users should change their usage of `none` to `no-transpose`. This change enhances code readability and aligns the string literal with the C enumeration constant. PR-URL: stdlib-js#2535 Ref: stdlib-js#2039 Co-authored-by: Athan Reines <[email protected]> Reviewed-by: Athan Reines <[email protected]>
Progresses: #2039.
Description
This RFC proposes to add a routine to perform one of the matrix-vector operations
x = A*x
, orx = A**T*x
, wherex
is anN
element vector, andA
is anN
byN
unit, or non-unit, upper or lower triangular matrix as defined in BLAS Level 2 routines. Specifically adding@stdlib/blas/base/strmv
is proposed.Related Issues
This pull request:
Questions
No.
Other
No.
Checklist
@stdlib-js/reviewers