about summary refs log tree commit diff
path: root/math
diff options
context:
space:
mode:
authorSunil K Pandey <skpgkp2@gmail.com>2021-12-22 06:20:41 -0800
committerSunil K Pandey <skpgkp2@gmail.com>2021-12-22 13:03:14 -0800
commitf20f980c71651e2b2c49e717f547d958cbe29a55 (patch)
tree49c6a6b55bfe523ac0c230182e6fbcbdc1e7c5e2 /math
parentc6d7d6312c21bbcfb236d48bb7c11cedb234389f (diff)
downloadglibc-f20f980c71651e2b2c49e717f547d958cbe29a55.tar.gz
glibc-f20f980c71651e2b2c49e717f547d958cbe29a55.tar.xz
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.h2
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.  */