diff options
author | Sunil K Pandey <skpgkp2@gmail.com> | 2021-12-29 09:48:17 -0800 |
---|---|---|
committer | Sunil K Pandey <skpgkp2@gmail.com> | 2021-12-29 11:38:39 -0800 |
commit | 0625489ccc430ccbc5e6e70b4402d7e7d2d3ed17 (patch) | |
tree | 95e5dc4a10517ff5f1925d1e707b39dc34e1b7f9 /sysdeps/x86_64/fpu/Makeconfig | |
parent | 6dea4dd3dae3eb488361c081365a0518f327dacf (diff) | |
download | glibc-0625489ccc430ccbc5e6e70b4402d7e7d2d3ed17.tar.gz glibc-0625489ccc430ccbc5e6e70b4402d7e7d2d3ed17.tar.xz glibc-0625489ccc430ccbc5e6e70b4402d7e7d2d3ed17.zip |
x86-64: Add vector acosh/acoshf implementation to libmvec
Implement vectorized acosh/acoshf containing SSE, AVX, AVX2 and AVX512 versions for libmvec as per vector ABI. It also contains accuracy and ABI tests for vector acosh/acoshf with regenerated ulps. Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
Diffstat (limited to 'sysdeps/x86_64/fpu/Makeconfig')
-rw-r--r-- | sysdeps/x86_64/fpu/Makeconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/x86_64/fpu/Makeconfig b/sysdeps/x86_64/fpu/Makeconfig index de87544259..7b90b3d049 100644 --- a/sysdeps/x86_64/fpu/Makeconfig +++ b/sysdeps/x86_64/fpu/Makeconfig @@ -23,6 +23,7 @@ postclean-generated += libmvec.mk # Define for both math and mathvec directories. libmvec-funcs = \ acos \ + acosh \ asin \ atan \ atan2 \ |