summaryrefslogtreecommitdiff
path: root/libc/src/math/docs/add_math_function.md
AgeCommit message (Collapse)Author
2025-07-21[libc] Revise document on building exhaustive math functions. (#149635)Connector Switch
I suspect the reason is that we use `add_fp_unittest` in exhaustive testing, so the suffix `__unit__` is necessary.
2025-01-01[libc] Move hdrgen yaml files into include/ (#121443)Roland McGrath
The .yaml files should live next to the corresponding .h.def files in libc/include/, rather than next to the implementation of the tool in libc/utils/hdrgen/. As with the .h.def files, there is no need for a yaml/ subdirectory under include/. This simpler layout is more natural for maintenance and also simplifies build integration outside the LLVM CMake build.
2024-12-30[libc] Move hdrgen into utils/ subdirectory (#121256)Roland McGrath
2024-12-04[libc] rename newhdrgen to just hdrgen (#118545)Nick Desaulniers
Link: #117208 Fixes: #117254
2024-07-19[libc][math]: updated math docs for newhdrgen (#99715)aaryanshukla
2024-05-15[libc][docs] Fix outdated code review section, as per #91934 (#92051)Cyuria
As in the title, fixes #91934
2024-03-22Fix typo (#86319)Job Henandez Lara
Im working on the floating point fmaximum and fminimum functions right now in a different pr and I ran the individual tests by doing ``` ninja libc.test.src.math.smoke.<func>_test.__unit__ ```
2024-03-11[libc][NFC] Clean up test/src/math/differential_testing folder, renaming it ↵lntue
to performance_testing. (#84646) Removing all the diff tests.
2023-09-26[libc] Mass replace enclosing namespace (#67032)Guillaume Chatelet
This is step 4 of https://discourse.llvm.org/t/rfc-customizable-namespace-to-allow-testing-the-libc-when-the-system-libc-is-also-llvms-libc/73079
2023-09-19[libc][math] Extract non-MPFR math tests into libc-math-smoke-tests.Tue Ly
Extract non-MPFR math tests into libc-math-smoke-tests. Reviewed By: sivachandra, jhuber6 Differential Revision: https://reviews.llvm.org/D159477
2023-06-28[libc][math] Clean up exhaustive tests implementations.Tue Ly
Clean up exhaustive tests. Let check functions return number of failures instead of passed/failed. Reviewed By: sivachandra Differential Revision: https://reviews.llvm.org/D153682
2023-02-03[libc][Obvious] Change `ninja llvmlibc` to `ninja libc` in the documentations.Tue Ly
2022-01-14[libc] Update exhaustive testing documentations.Tue Ly
2021-12-17[libc][Obvious] Change func_ to <func>_ in add_math_function.md.Tue Ly
2021-12-16[libc] Add documentation about how to add a math function to LLVM-libc.Tue Ly
Add documentation about how to add a math function to LLVM-libc. Differential Revision: https://reviews.llvm.org/D115608