-
-
Notifications
You must be signed in to change notification settings - Fork 485
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
feat: add blas/base/drotm-wasm
#3021
base: develop
Are you sure you want to change the base?
Conversation
Hey, @kgryte, don't know why the test case inside
Error message:
|
* // Write vector values to module memory: | ||
* drotm.write( xptr, oneTo( N, dtype ) ); | ||
* drotm.write( yptr, ones( N, dtype ) ); | ||
* drotm.write( pptr, zeros( 5, dtype ) ); |
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.
Using all zeros for the parameters is not a particularly "interesting" example.
@aman-095 Looks like there is a bug in what we are passing to
My guess is that we should update
to - obj.length = N;
+ obj.length = ( N > 0 ) ? N : 0; |
This PR will need to incorporate various docs and build changes as made in other |
wasm
support for blas/base/drotm-wasm
blas/base/drotm-wasm
Progresses #2039.
Description
This pull request adds
wasm
support fordrotm
.Related Issues
This pull request:
Questions
No.
Other
No.
Checklist
@stdlib-js/reviewers