summaryrefslogtreecommitdiff
path: root/libc/test/src/math/pow_test.cpp
AgeCommit message (Collapse)Author
2024-08-06[libc][math] Improve the error analysis and accuracy for pow function. (#102098)lntue
2024-08-05[libc][math] Implement fast pass for double precision pow function with up ↵lntue
to 1ULP error. (#101926)
2023-04-20[libc][math] Remove placeholder implementations of asin and pow.Tue Ly
Reviewed By: sivachandra Differential Revision: https://reviews.llvm.org/D148781
2023-03-07[libc][math] Switch math functions to use libc_errno and fix some errno and ↵Tue Ly
floating point exceptions. Switch math functions to use libc_errno and fix some errno and floating point exceptions Reviewed By: sivachandra Differential Revision: https://reviews.llvm.org/D145349
2023-02-07[libc][NFC] Move UnitTest and IntegrationTest to the 'test' directory.Siva Chandra Reddy
This part of the effort to make all test related pieces into the `test` directory. This helps is excluding test related pieces in a straight forward manner if LLVM_INCLUDE_TESTS is OFF. Future patches will also move the MPFR wrapper and testutils into the 'test' directory.
2022-10-31[libc][math] Add place-holder implementation for pow function.Tue Ly
Add place-holder implementation for pow function to unblock libc demo examples. Reviewed By: michaelrj Differential Revision: https://reviews.llvm.org/D137109