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 /bits | |
parent | 6dea4dd3dae3eb488361c081365a0518f327dacf (diff) | |
download | glibc-0625489ccc430ccbc5e6e70b4402d7e7d2d3ed17.zip glibc-0625489ccc430ccbc5e6e70b4402d7e7d2d3ed17.tar.gz glibc-0625489ccc430ccbc5e6e70b4402d7e7d2d3ed17.tar.bz2 |
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 'bits')
-rw-r--r-- | bits/libm-simd-decl-stubs.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bits/libm-simd-decl-stubs.h b/bits/libm-simd-decl-stubs.h index bb7380a..b17bf78 100644 --- a/bits/libm-simd-decl-stubs.h +++ b/bits/libm-simd-decl-stubs.h @@ -263,4 +263,15 @@ #define __DECL_SIMD_atanhf32x #define __DECL_SIMD_atanhf64x #define __DECL_SIMD_atanhf128x + +#define __DECL_SIMD_acosh +#define __DECL_SIMD_acoshf +#define __DECL_SIMD_acoshl +#define __DECL_SIMD_acoshf16 +#define __DECL_SIMD_acoshf32 +#define __DECL_SIMD_acoshf64 +#define __DECL_SIMD_acoshf128 +#define __DECL_SIMD_acoshf32x +#define __DECL_SIMD_acoshf64x +#define __DECL_SIMD_acoshf128x #endif |