diff options
author | Paul Zimmermann <Paul.Zimmermann@inria.fr> | 2021-05-03 11:30:25 +0200 |
---|---|---|
committer | Paul Zimmermann <Paul.Zimmermann@inria.fr> | 2021-05-10 18:45:34 +0200 |
commit | 8d0985b055a83c57785e7cabd4673f75c0bc8fa0 (patch) | |
tree | d948b735556ee2db3cc14580c2bc7f4544015907 /benchtests/Makefile | |
parent | 732139dabeda7ecce0d56200bc176251e759ccde (diff) | |
download | glibc-8d0985b055a83c57785e7cabd4673f75c0bc8fa0.tar.gz glibc-8d0985b055a83c57785e7cabd4673f75c0bc8fa0.tar.xz glibc-8d0985b055a83c57785e7cabd4673f75c0bc8fa0.zip |
add workload traces for cbrtl
These workload traces cover the whole "long double" range. This patch was prepared with the help of Adhemerval Zanella. Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'benchtests/Makefile')
-rw-r--r-- | benchtests/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/benchtests/Makefile b/benchtests/Makefile index 4bc702a275..1530939a8c 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -28,6 +28,10 @@ bench-math := acos acosh asin asinh atan atanh cos cosh exp exp2 log log2 \ exp10f ilogb ilogbf cbrt erf erfc exp10 expm1 j0 j1 lgamma \ log10 log1p tgamma y0 y1 atan2 +ifneq (,$(filter yes,$(float96-fcts))) +bench-math += cbrtl +endif + ifneq (,$(filter yes,$(float128-fcts) $(float128-alias-fcts))) bench-math += expf128 powf128 sinf128 ilogbf128 endif |