-
-
Notifications
You must be signed in to change notification settings - Fork 836
refactor: update blas/ext/base/dssumpw
to follow current project conventions
#1999
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
blas/ext/base/dssumpw
to follow current project conventions
STDLIB_NAPI_ARGV_INT64( env, strideY, argv, 5 ); | ||
STDLIB_NAPI_ARGV_STRIDED_FLOAT32ARRAY( env, X, N, strideX, argv, 2 ); | ||
STDLIB_NAPI_ARGV_STRIDED_FLOAT32ARRAY( env, Y, N, strideY, argv, 4 ); | ||
c_saxpy( N, alpha, X, strideX, Y, strideY ); |
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.
This implementation is incorrect. See the addon.cpp
file and update accordingly.
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.
Updated addon.c
file as instructed. Please review. Thanks!
Signed-off-by: Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
Signed-off-by: Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
lib/node_modules/@stdlib/blas/ext/base/dssumpw/test/test.dssumpw.js
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/test/test.ndarray.js
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/test/test.ndarray.native.js
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/test/test.dssumpw.native.js
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/lib/ndarray.native.js
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/include/stdlib/blas/ext/base/dssumpw.h
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/lib/dssumpw.native.js
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/examples/index.js
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/examples/c/example.c
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/examples/c/Makefile
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/docs/types/test.ts
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/docs/types/index.d.ts
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/benchmark/c/Makefile
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/benchmark/c/benchmark.length.c
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/benchmark/benchmark.ndarray.native.js
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/benchmark/benchmark.ndarray.js
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/benchmark/benchmark.native.js
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/benchmark/benchmark.js
Outdated
Show resolved
Hide resolved
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
lib/node_modules/@stdlib/blas/ext/base/dssumpw/benchmark/c/Makefile
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/blas/ext/base/dssumpw/examples/c/Makefile
Outdated
Show resolved
Hide resolved
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
@Planeshifter are there any more changes that are required? |
@soumajit23 Looks like CI is failing for this PR. Until test and benchmark failures are addressed, this PR won't be able to move forward. |
Resolves # 1503
Description
This pull request:
Related Issues
This pull request:
blas/ext/base/dssumpw
to follow current project conventions #1503Questions
No.
Other
No.
Checklist
@stdlib-js/reviewers