Skip to content
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/rempio2 #2279

Merged
merged 29 commits into from
Jun 9, 2024
Merged

feat: add C implementation for math/base/special/rempio2 #2279

merged 29 commits into from
Jun 9, 2024

Conversation

gunjjoshi
Copy link
Member

@gunjjoshi gunjjoshi commented May 31, 2024

Description

What is the purpose of this pull request?

This pull request:

Related Issues

Does this pull request have any related issues?

This pull request:

Questions

Any questions for reviewers of this pull request?

No.

Other

Any other information relevant to this pull request? This may include screenshots, references, and/or implementation notes.

This is a draft PR, to discuss the implementation.

Checklist

Please ensure the following tasks are completed before submitting this pull request.


@stdlib-js/reviewers

@stdlib-bot stdlib-bot added the Math Issue or pull request specific to math functionality. label May 31, 2024
gunjjoshi added 3 commits May 31, 2024 18:07
Signed-off-by: GUNJ JOSHI <[email protected]>
Signed-off-by: GUNJ JOSHI <[email protected]>
Signed-off-by: GUNJ JOSHI <[email protected]>
@gunjjoshi gunjjoshi marked this pull request as draft May 31, 2024 12:40
@gunjjoshi
Copy link
Member Author

gunjjoshi commented May 31, 2024

I was getting failure in some of the test cases. I have referred to FreeBSD version 12.2.0, as a reference.

rempio2: https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/e_rem_pio2.c?revision=367086&view=markup
kernel-rempio2: https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/k_rem_pio2.c?revision=367086&view=markup

Specifically, if we can check main.c, addon.c and native.js, that would help us out in completing this.

gunjjoshi added 3 commits May 31, 2024 18:21
Signed-off-by: GUNJ JOSHI <[email protected]>
Signed-off-by: GUNJ JOSHI <[email protected]>
@kgryte
Copy link
Member

kgryte commented Jun 7, 2024

@gunjjoshi I refactored the addon (see 0df78ac). Tests now pass; however, results for C and JS differ. Currently, if provided 128.0, JS returns ~3.618e-17 and C returns -1.6380356615247201e-19. You'll want to investigate why this is the case.

@gunjjoshi
Copy link
Member Author

@gunjjoshi I refactored the addon (see 0df78ac). Tests now pass; however, results for C and JS differ. Currently, if provided 128.0, JS returns ~3.618e-17 and C returns -1.6380356615247201e-19. You'll want to investigate why this is the case.

Great, thanks for the help! I'll go through the implementation once more to check everything.

@gunjjoshi
Copy link
Member Author

@kgryte I was able to track down the problem. This was because in the C implementation, earlier the exponent mask the we used had a value of 0x7ff00000. But in the javascript implementation, we were using 0x7ff.

After the changes, both the implementations give the same result for 128.0, i.e., ~3.618e-17.

Also, the lint error that we currently have is arising due to two similar if conditions, but that is required for our implementation.

@gunjjoshi gunjjoshi marked this pull request as ready for review June 8, 2024 14:17
@gunjjoshi
Copy link
Member Author

There is a lint error saying the arrays are uninitialized. So, should we initialize them with zeros at the time of declaration directly, or should we declare them first, then initialize them with zeros using a for loop later?

@kgryte
Copy link
Member

kgryte commented Jun 9, 2024

@gunjjoshi I'd go ahead and initialize with zeros at the time of declaration.

@kgryte kgryte added Feature Issue or pull request for adding a new feature. C Issue involves or relates to C. Base Issue or pull requests related to "low-level" functionality oriented toward library consumers. labels Jun 9, 2024
Copy link
Member

@Planeshifter Planeshifter left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's get this in to unblock additional C implementation work. Will merge once CI has passed.

Thanks, @gunjjoshi, for your work on it!

@Planeshifter Planeshifter merged commit 0b633eb into stdlib-js:develop Jun 9, 2024
8 checks passed
@gunjjoshi
Copy link
Member Author

Thanks @Planeshifter @kgryte for helping in this.

@gunjjoshi gunjjoshi deleted the rempio2 branch June 11, 2024 03:12
aman-095 pushed a commit to aman-095/stdlib that referenced this pull request Jun 11, 2024
PR-URL: stdlib-js#2279
Ref: stdlib-js#649

---------

Signed-off-by: GUNJ JOSHI <[email protected]>
Signed-off-by: Athan Reines <[email protected]>
Co-authored-by: Philipp Burckhardt <[email protected]>
Co-authored-by: Athan Reines <[email protected]>
Reviewed-by: Philipp Burckhardt <[email protected]> 
Reviewed-by: Athan Reines <[email protected]>
aman-095 pushed a commit to aman-095/stdlib that referenced this pull request Jun 13, 2024
PR-URL: stdlib-js#2279
Ref: stdlib-js#649

---------

Signed-off-by: GUNJ JOSHI <[email protected]>
Signed-off-by: Athan Reines <[email protected]>
Co-authored-by: Philipp Burckhardt <[email protected]>
Co-authored-by: Athan Reines <[email protected]>
Reviewed-by: Philipp Burckhardt <[email protected]> 
Reviewed-by: Athan Reines <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Base Issue or pull requests related to "low-level" functionality oriented toward library consumers. C Issue involves or relates to C. Feature Issue or pull request for adding a new feature. Math Issue or pull request specific to math functionality.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants