aboutsummaryrefslogtreecommitdiff
path: root/math/auto-libm-test-out-log10p1
AgeCommit message (Collapse)AuthorFilesLines
2025-01-31math: Fix log10p1f internal table value (BZ 32626)Adhemerval Zanella1-0/+25
It was copied wrong from CORE-MATH.
2024-08-07added inputs giving large errors on x86_64 for new C23 functionsPaul Zimmermann1-0/+1780
These functions are exp10m1, exp2m1, log10p1, log2p1. Also regenerated ulps on x86_64. For each format, there are 4 values, one for each rounding mode. (For the intel96 format, there are 8 values, 4 for Intel hardware, and 4 for AMD hardware. However, regen-ulps was only run on Intel. It should be run in a separate patch on a AMD x86_64.) Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
2024-06-17Implement C23 log10p1Joseph Myers1-0/+3063
C23 adds various <math.h> function families originally defined in TS 18661-4. Add the log10p1 functions (log10(1+x): like log1p, but for base-10 logarithms). This is directly analogous to the log2p1 implementation (except that whereas log2p1 has a smaller underflow range than log1p, log10p1 has a larger underflow range). The test inputs are copied from those for log1p and log2p1, plus a few more inputs in that wider underflow range. Tested for x86_64 and x86, and with build-many-glibcs.py.