-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Implement fixed point bitsfx functions in llvm-libc #113359
Comments
@llvm/issue-subscribers-libc Author: None (PiJoules)
Some fixed point functions from ISO 18037 are implemented in llvm-libc, but not all of them are implemented. The various bits`fx` functions should also be added. Copying from the extension:
These can first be implemented as |
Hi! This issue may be a good introductory issue for people new to working on LLVM. If you would like to work on this issue, your first steps are:
If you have any further questions about this issue, don't hesitate to ask via a comment in the thread below. |
@llvm/issue-subscribers-good-first-issue Author: None (PiJoules)
Some fixed point functions from ISO 18037 are implemented in llvm-libc, but not all of them are implemented. The various bits`fx` functions should also be added. Copying from the extension:
These can first be implemented as |
I can try this, assign me pls |
also, are there any previously merged PR's that I can refer on how to implement libc functions? |
Initially I was thinking this could be a Thanks for taking this on also! |
oh thanks, that will be helpful |
@braw-lee : Your original patch got a lot of feedback that you haven't responded to. Are you intending to continue working on it, or should we mark this as 'unassigned' so someone else can pick up the effort? |
hi! @PiJoules @erichkeane i would like to take this up |
Yup, thanks for taking this up! Sorry for the delayed response also |
…lvm#128413) Fixes llvm#113359 --------- Signed-off-by: krishna2803 <[email protected]>
…lvm#128413) Fixes llvm#113359 --------- Signed-off-by: krishna2803 <[email protected]>
Some fixed point functions from ISO 18037 are implemented in llvm-libc, but not all of them are implemented. The various bits
fx
functions should also be added. Copying from the extension:These can first be implemented as
__builtin_*
functions in clang then llvm-libc can provide the wrappers for each of the builtin functions.The text was updated successfully, but these errors were encountered: