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

bench: update benchmarks and examples in math/base/special/ldexp #2781

Merged
merged 20 commits into from
Nov 26, 2024

Conversation

gunjjoshi
Copy link
Member

Description

What is the purpose of this pull request?

This pull request:

  • replaces the use of built-in pow with stdlib_base_pow.
  • fixes indentation in example.c.

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.

No.

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 12, 2024
@gunjjoshi
Copy link
Member Author

This error in examples comes even without applying the changes in this PR. I'll have a look on ldexp to find out the problem.

@gunjjoshi
Copy link
Member Author

The error message comes as:

example.c:20:10: fatal error: 'stdlib/math/base/special/ldexp.h' file not found
#include "stdlib/math/base/special/ldexp.h"

even though the header files looks correct.

@Planeshifter
Copy link
Member

@gunjjoshi Looks like ldexp is missing from the manifest.json' dependencies in the example configuration.

Signed-off-by: Gunj Joshi <[email protected]>
Signed-off-by: Gunj Joshi <[email protected]>
@gunjjoshi
Copy link
Member Author

@gunjjoshi Looks like ldexp is missing from the manifest.json' dependencies in the example configuration.

@Planeshifter For other packages too, we do not include the package's path in the example configuration of manifest.json, right? That is included directly from the header file inside the package. Still, I tried after including that, but the condition was the same.

@Planeshifter
Copy link
Member

@gunjjoshi Yeah, the package itself shouldn't be listed as a dependency under its own configuration. I was mistakenly under the impression that the failure was caused in a different package's example. Not clear to me what's going on right now... Also seeing failures loading different modules in the CI checks here.

@Planeshifter
Copy link
Member

Planeshifter commented Aug 12, 2024

@gunjjoshi @stdlib/number/float32/base/to-word seems wrong as a dependency in manifest.json. We need @stdlib/number/float64/base/to-words, I think.

@gunjjoshi
Copy link
Member Author

@Planeshifter It doesn't seem we have used that package anywhere in ldexp. We should remove that.

@gunjjoshi
Copy link
Member Author

We have used float64/base/to_words in main.c, but we listed float32/base/to_word in manifest.json. Even after rectifying that, the error persists.

@Planeshifter
Copy link
Member

After looking into this a bit more, I noticed that running the C examples for @stdlib/math/base/special/pow is failing as well.

Running the examples with DEBUG=library-manifest:main, it looks to me as if we have a cycle here and @stdlib/utils/library-manifest may not be handling those yet?

cc @kgryte

@kgryte
Copy link
Member

kgryte commented Nov 25, 2024

/stdlib merge

@stdlib-bot stdlib-bot added the bot: In Progress Pull request is currently awaiting automation. label Nov 25, 2024
@stdlib-bot stdlib-bot removed the bot: In Progress Pull request is currently awaiting automation. label Nov 25, 2024
@stdlib-bot
Copy link
Contributor

stdlib-bot commented Nov 25, 2024

Coverage Report

Package Statements Branches Functions Lines
math/base/special/ldexp $\color{green}279/279$
$\color{green}+100.00\%$
$\color{green}18/18$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}279/279$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this PR.

@kgryte
Copy link
Member

kgryte commented Nov 25, 2024

it looks to me as if we have a cycle here and @stdlib/utils/library-manifest may not be handling those yet?

That's correct. We cannot handle cyclic dependencies in C implementations. In this case, I think it would be fine to refactor the example in order to avoid the use of math/base/special/pow. Perhaps instead of randomly generating exponents in a loop, we can simply hardcode 3-4 examples (sign, frac, exp, etc) to show roundtripping. Does that sound reasonable, @gunjjoshi?

@kgryte kgryte added the Needs Changes Pull request which needs changes before being merged. label Nov 25, 2024
@kgryte kgryte changed the title refactor: use stdlib equivalent instead of built-in, fix indentation in math/base/special/ldexp docs: replace use of built-in in examples and fix indentation in math/base/special/ldexp Nov 25, 2024
@gunjjoshi
Copy link
Member Author

@kgryte Yes, that does. I'll update the examples accordingly, thanks!

@gunjjoshi
Copy link
Member Author

Updated the C examples. Also, updated benchmarks to follow latest conventions.

@gunjjoshi
Copy link
Member Author

The CI failure seems to occur due to the failure in cephes benchmarks, as it is unable to find cephes files.

@kgryte
Copy link
Member

kgryte commented Nov 26, 2024

The CI failure seems to occur due to the failure in cephes benchmarks

@Planeshifter I forget. Did we not already address the Cephes build issue?

@kgryte kgryte changed the title docs: replace use of built-in in examples and fix indentation in math/base/special/ldexp bench: update benchmarks and examples in math/base/special/ldexp Nov 26, 2024
Copy link
Member

@kgryte kgryte left a comment

Choose a reason for hiding this comment

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

LGTM. Thanks, @gunjjoshi.

@kgryte kgryte added Ready To Merge A pull request which is ready to be merged. and removed Needs Changes Pull request which needs changes before being merged. labels Nov 26, 2024
@Planeshifter
Copy link
Member

@kgryte I don't recall us addressing the Cephes build errors.

@stdlib-bot
Copy link
Contributor

PR Commit Message

bench: update benchmarks and examples in `math/base/special/ldexp`

PR-URL: https://github.com/stdlib-js/stdlib/pull/2781

Co-authored-by: stdlib-bot <[email protected]>
Reviewed-by: Athan Reines <[email protected]>
Signed-off-by: Gunj Joshi <[email protected]>

Please review the above commit message and make any necessary adjustments.

@kgryte
Copy link
Member

kgryte commented Nov 26, 2024

As the CI failure is due to an upstream workflow failure and not due to the changes in this PR, I will go ahead and merge.

@kgryte kgryte merged commit 2a10dde into stdlib-js:develop Nov 26, 2024
18 of 19 checks passed
kgryte pushed a commit that referenced this pull request Feb 22, 2025
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