-
Couldn't load subscription status.
- Fork 15k
[libc][math][c23] Implement higher math function cbrtf16 in LLVM libc
#132484
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
Open
krishna2803
wants to merge
16
commits into
llvm:main
Choose a base branch
from
krishna2803:cbrtf16
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
07e24a5
chore: change polynomial degree comment from 7 to 6
krishna2803 f3860e1
add: implement cbrtf16
krishna2803 888ada7
chore: update CMakeLists.txt
krishna2803 7fc5a41
chore: update entrypoints
krishna2803 974257a
feat: add tests for cbrtf16
krishna2803 36d343b
chore: update CMakeLists.txt for tests
krishna2803 08900aa
chore: remove debugging artefact.
krishna2803 ebdaeac
refactor: separate sign_bit from out_e
krishna2803 a1abd76
chore: fix typo `sqrt` -> `cbrt`
krishna2803 089c0a1
chore: add cast to uint32_t
krishna2803 4c9b493
fix: exponent handling (fixed for negative exponents!)
krishna2803 d7052a7
fix: update headers
krishna2803 b761bc9
chore: update docs
krishna2803 26cbd96
chore: add better tests for special numbers
krishna2803 07dd1fd
chore: update bazel build files
krishna2803 5c365f9
chore: add comments explaining the exponent calculations.
krishna2803 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.
Please add the comments to explain how we derived the exponent computations.