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

refactor: use stdlib fmod and DDD_D napi function in math/base/special/wrap #2814

Merged
merged 2 commits into from
Aug 31, 2024

Conversation

gunjjoshi
Copy link
Member

@gunjjoshi gunjjoshi commented Aug 20, 2024

Description

What is the purpose of this pull request?

This pull request:

  • completes the TODO to remove math.h in the C implementation and use stdlib_base_fmod in math/base/special/wrap.
  • uses DDD_D napi function, instead of writing everything again in addon.c.
  • uses our fmod in js implementation as well, even though the % operator in js works fine, so that we do not have differences in our implementations.

Related Issues

Does this pull request have any related issues?

None.

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.

While committing the changes, the C implementation was giving styling errors, indicating that on lines https://github.com/stdlib-js/stdlib/blob/develop/lib/node_modules/%40stdlib/math/base/special/wrap/src/main.c#L52, https://github.com/stdlib-js/stdlib/blob/develop/lib/node_modules/%40stdlib/math/base/special/wrap/src/main.c#L55 and https://github.com/stdlib-js/stdlib/blob/develop/lib/node_modules/%40stdlib/math/base/special/wrap/src/main.c#L58, the conditions were not proper, as we are checking if it is +-0 and assigning it as +0 again. To avoid this, I used stdlib_base_abs in the conditions. Though this error was only coming for C implementation, I applied the changes to the js implementation as well, so that they are close enough.

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 Aug 20, 2024
@gunjjoshi gunjjoshi changed the title refactor: use stdlib fmod and DDD_D napi function refactor: use stdlib fmod and DDD_D napi function in math/base/special/wrap Aug 20, 2024
@gunjjoshi
Copy link
Member Author

The error message, due to which I had to use stdlib_base_abs is as follows:

Screenshot 2024-08-20 at 22 23 35

@kgryte
Copy link
Member

kgryte commented Aug 20, 2024

@gunjjoshi Oh, right, I see. The C compiler isn't accounting for negative zero here. Instead of abs, use is_negative_zero in the condition check.

@kgryte
Copy link
Member

kgryte commented Aug 20, 2024

You don't need to do anything in the JS version, TMK. So it's fine if the JS and C implementations diverge on this.

@gunjjoshi
Copy link
Member Author

Made the changes, thanks @kgryte!

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.

LGTM!

@Planeshifter Planeshifter added the Ready To Merge A pull request which is ready to be merged. label Aug 31, 2024
@Planeshifter Planeshifter merged commit f65c856 into stdlib-js:develop Aug 31, 2024
13 checks passed
@gunjjoshi gunjjoshi deleted the wrap branch September 6, 2024 18:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Math Issue or pull request specific to math functionality. Ready To Merge A pull request which is ready to be merged.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants