-
Notifications
You must be signed in to change notification settings - Fork 12k
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
[libc][math][c23] Implement C23 floating point min and max functions #85496
Comments
@llvm/issue-subscribers-libc Author: None (lntue)
- The missing functions are: `fmaximum`, `fminimum`, `fmaximum_mag`, `fminimum_mag`, `fmaximum_num`, `fminimum_num`, `fmaximum_mag_num`, `fminimum_mag_num`.
- These functions are defined in C23 standard: sections 7.12.12.4 - 7.12.12.11 in https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3096.pdf
- Need to support the following data types: float, double, long double, float128.
|
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 (lntue)
- The missing functions are: `fmaximum`, `fminimum`, `fmaximum_mag`, `fminimum_mag`, `fmaximum_num`, `fminimum_num`, `fmaximum_mag_num`, `fminimum_mag_num`.
- These functions are defined in C23 standard: sections 7.12.12.4 - 7.12.12.11 in https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3096.pdf
- Need to support the following data types: float, double, long double, float128.
|
can this issue be assigned to me please? thanks |
@lntue thanks. I started working on it today. |
please assign this issue to me ? |
Hey this has been assigned to me already. I’m working on it right now. |
@lntue hello, hope all is well. I just want to let you know that I’m about to make the tests for my changes. I have written the library functions. I just need to test my code and then I’ll submit my pr. Thanks |
fmaximum
,fminimum
,fmaximum_mag
,fminimum_mag
,fmaximum_num
,fminimum_num
,fmaximum_mag_num
,fminimum_mag_num
.The text was updated successfully, but these errors were encountered: