-
-
Notifications
You must be signed in to change notification settings - Fork 794
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 C implementation for math/base/special/pow
#1739
Conversation
There is some minor error that is leading to test failure. Can you please check the implementation? CC @kgryte @Pranavchiku @Planeshifter |
lib/node_modules/@stdlib/math/base/special/pow/benchmark/c/native/benchmark.c
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/math/base/special/pow/include/stdlib/math/base/special/pow.h
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/math/base/special/pow/include/stdlib/math/base/special/pow.h
Outdated
Show resolved
Hide resolved
@kgryte @Pranavchiku all tests, examples, and benchmarks work well locally. Don't know why CI is failing. Please review. |
math/base/special/pow
math/base/special/pow
Signed-off-by: Athan <[email protected]>
Signed-off-by: Athan <[email protected]>
Signed-off-by: Athan <[email protected]>
Signed-off-by: Athan <[email protected]>
Signed-off-by: Athan <[email protected]>
Signed-off-by: Athan <[email protected]>
Signed-off-by: Athan <[email protected]>
Signed-off-by: Athan <[email protected]>
Signed-off-by: Athan <[email protected]>
Signed-off-by: Athan <[email protected]>
CC @kgryte @Pranavchiku all tests work well locally. Don't know why tests are failing here. |
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.
The discrepancy in test cases arise from floating-point operation fusing (see clang.llvm.org/docs/UsersManual.html#cmdoption-ffp-contract), where multiple floating-point operations are combined into a single operation.
See prior discussion here: #2298 (comment)
When compiling the add-on with this optimization disabled via
CFLAGS="-ffp-contract=off" NODE_GYP_FLAGS="" make install-node-addons NODE_ADDONS_PATTERN="math/base/special/pow"
all test cases match the results from the test fixtures.
Woah! we finally got |
Resolves #1656.
Description
This RFC proposes adding native C implementation for
@stdlib/math/base/special/pow
Related Issues
This pull request:
@stdlib/math/base/special/pow
#1656Questions
No.
Other
No.
Checklist
@stdlib-js/reviewers