diff options
author | Adhemerval Zanella Netto <adhemerval.zanella@linaro.org> | 2023-03-20 13:01:15 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2023-04-03 16:13:55 -0300 |
commit | 5c11701c518276fcf12ff7d8f27e3c7102e97542 (patch) | |
tree | ff621b8fc751bdf21276ab1cc4d0ccd351f4fbc3 /benchtests/Makefile | |
parent | 3ba0c9593f273426ef36116f4e362a7ed9ecec11 (diff) | |
download | glibc-5c11701c518276fcf12ff7d8f27e3c7102e97542.zip glibc-5c11701c518276fcf12ff7d8f27e3c7102e97542.tar.gz glibc-5c11701c518276fcf12ff7d8f27e3c7102e97542.tar.bz2 |
benchtests: Add fmodf benchmark
1. Subnormals: 128 inputs.
2. Normal numbers with large exponent difference (|x/y| > 2^8):
1024 inputs between FLT_MIN and FLT_MAX;
3. Close exponents (ey >= -103 and |x/y| < 2^8): 1024 inputs with
exponents between -10 and 10.
Reviewed-by: Wilco Dijkstra <Wilco.Dijkstra@arm.com>
Diffstat (limited to 'benchtests/Makefile')
-rw-r--r-- | benchtests/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/benchtests/Makefile b/benchtests/Makefile index 7427010..5bd763a 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -49,6 +49,7 @@ bench-math := \ fmin \ fminf \ fmod \ + fmodf \ hypot \ hypotf \ ilogb \ |