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 /math | |
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 'math')
-rw-r--r-- | math/bits/mathcalls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h index 04dd9c5..bc37973 100644 --- a/math/bits/mathcalls.h +++ b/math/bits/mathcalls.h @@ -82,7 +82,7 @@ __MATHDECL_VEC (void,sincos,, #if defined __USE_XOPEN_EXTENDED || defined __USE_ISOC99 /* Hyperbolic arc cosine of X. */ -__MATHCALL (acosh,, (_Mdouble_ __x)); +__MATHCALL_VEC (acosh,, (_Mdouble_ __x)); /* Hyperbolic arc sine of X. */ __MATHCALL (asinh,, (_Mdouble_ __x)); /* Hyperbolic arc tangent of X. */ |