-
-
Notifications
You must be signed in to change notification settings - Fork 868
feat: add C implementation for math/base/special/gammainc
#7408
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
Merged
Planeshifter
merged 20 commits into
stdlib-js:develop
from
anandkaranubc:feat/gammainc-c
Jun 27, 2025
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
d24f74f
feat: temp commit
anandkaranubc b55983d
Merge branch 'develop' into feat/gammainc
anandkaranubc a225e46
feat: temp commit
anandkaranubc c263025
Merge branch 'develop' into feat/gammainc
anandkaranubc 8cc8e26
feat: add C implementation for `math/base/special/gammainc`
anandkaranubc dcbd012
Merge branch 'develop' into feat/gammainc
anandkaranubc 02b8dd1
chore: update copyright years
stdlib-bot cc28656
bench: shorten the interval for input values
anandkaranubc f052817
chore: add scripts
anandkaranubc 0265fb5
Merge branch 'develop' into feat/gammainc-c
anandkaranubc 474b103
fix: use correct equation
anandkaranubc d79211e
test: add more tests
anandkaranubc e1c5923
Merge branch 'develop' into feat/gammainc-c
anandkaranubc ce37e13
Merge branch 'develop' into feat/gammainc-c
anandkaranubc bf5c3bc
test: use `ulpdiff` for tests
anandkaranubc d27d06c
test: fix ulp difference
anandkaranubc c9f071c
test: use appropriate filenames for clarity
anandkaranubc effecca
test: add more tests
anandkaranubc 24a88ab
test: add comment explaining large differences
anandkaranubc dbb1de6
test: increase the tolerance threshold to account for compiler optimi…
anandkaranubc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Adding a note for future reference: this was done because the workflows build the native addons with the
CFLAGS="-ffp-contract=off"
flag. If this flag is not set, the tests pass with the ULP difference observed in the previous commit.