diff options
author | Sunil K Pandey <skpgkp2@gmail.com> | 2021-12-22 06:20:41 -0800 |
---|---|---|
committer | Sunil K Pandey <skpgkp2@gmail.com> | 2021-12-22 13:03:14 -0800 |
commit | f20f980c71651e2b2c49e717f547d958cbe29a55 (patch) | |
tree | 49c6a6b55bfe523ac0c230182e6fbcbdc1e7c5e2 /math | |
parent | c6d7d6312c21bbcfb236d48bb7c11cedb234389f (diff) | |
download | glibc-f20f980c71651e2b2c49e717f547d958cbe29a55.tar glibc-f20f980c71651e2b2c49e717f547d958cbe29a55.tar.gz glibc-f20f980c71651e2b2c49e717f547d958cbe29a55.tar.bz2 glibc-f20f980c71651e2b2c49e717f547d958cbe29a55.zip |
x86-64: Add vector acos/acosf implementation to libmvec
Implement vectorized acos/acosf containing SSE, AVX, AVX2 and
AVX512 versions for libmvec as per vector ABI. It also contains
accuracy and ABI tests for vector acos/acosf 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 da4cf4e10c..2cc6654208 100644 --- a/math/bits/mathcalls.h +++ b/math/bits/mathcalls.h @@ -50,7 +50,7 @@ /* Trigonometric functions. */ /* Arc cosine of X. */ -__MATHCALL (acos,, (_Mdouble_ __x)); +__MATHCALL_VEC (acos,, (_Mdouble_ __x)); /* Arc sine of X. */ __MATHCALL (asin,, (_Mdouble_ __x)); /* Arc tangent of X. */ |