diff options
author | Joe Ramsay <Joe.Ramsay@arm.com> | 2023-10-05 17:10:51 +0100 |
---|---|---|
committer | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2023-10-23 15:00:45 +0100 |
commit | 067a34156c19fb3c53824e37d70820c0ce5b87b2 (patch) | |
tree | c0e5649d7892db1a9fc195adc8b381c01ab77544 /sysdeps/aarch64/fpu/Makefile | |
parent | a8e3ab3074d448ff3e58ac8f850d955dfed830ad (diff) | |
download | glibc-067a34156c19fb3c53824e37d70820c0ce5b87b2.tar.gz glibc-067a34156c19fb3c53824e37d70820c0ce5b87b2.tar.xz glibc-067a34156c19fb3c53824e37d70820c0ce5b87b2.zip |
aarch64: Add vector implementations of log10 routines
A table is also added, which is shared between AdvSIMD and SVE log10.
Diffstat (limited to 'sysdeps/aarch64/fpu/Makefile')
-rw-r--r-- | sysdeps/aarch64/fpu/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/aarch64/fpu/Makefile b/sysdeps/aarch64/fpu/Makefile index c3f204ff0d..0a047a150d 100644 --- a/sysdeps/aarch64/fpu/Makefile +++ b/sysdeps/aarch64/fpu/Makefile @@ -2,6 +2,7 @@ libmvec-supported-funcs = cos \ exp \ exp2 \ log \ + log10 \ log2 \ sin \ tan @@ -18,7 +19,8 @@ libmvec-support = $(addsuffix f_advsimd,$(float-advsimd-funcs)) \ $(addsuffix _sve,$(double-sve-funcs)) \ v_log_data \ v_exp_data \ - v_log2_data + v_log2_data \ + v_log10_data endif sve-cflags = -march=armv8-a+sve |