diff options
author | Sunil K Pandey <skpgkp2@gmail.com> | 2021-12-29 08:29:26 -0800 |
---|---|---|
committer | Sunil K Pandey <skpgkp2@gmail.com> | 2021-12-29 11:37:03 -0800 |
commit | 11c01de14c879ffc8dbac8ce32242a7552cbd4ad (patch) | |
tree | 70ec1403eab4be667adb5ce5a4c50f5b9da87e07 /math | |
parent | 146310177aa9f2c7d990ef856ed6e8bb94407f06 (diff) | |
download | glibc-11c01de14c879ffc8dbac8ce32242a7552cbd4ad.tar.gz glibc-11c01de14c879ffc8dbac8ce32242a7552cbd4ad.tar.xz glibc-11c01de14c879ffc8dbac8ce32242a7552cbd4ad.zip |
x86-64: Add vector asin/asinf implementation to libmvec
Implement vectorized asin/asinf containing SSE, AVX, AVX2 and AVX512 versions for libmvec as per vector ABI. It also contains accuracy and ABI tests for vector asin/asinf 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 3e27c21f21..bb53b7021e 100644 --- a/math/bits/mathcalls.h +++ b/math/bits/mathcalls.h @@ -52,7 +52,7 @@ /* Arc cosine of X. */ __MATHCALL_VEC (acos,, (_Mdouble_ __x)); /* Arc sine of X. */ -__MATHCALL (asin,, (_Mdouble_ __x)); +__MATHCALL_VEC (asin,, (_Mdouble_ __x)); /* Arc tangent of X. */ __MATHCALL_VEC (atan,, (_Mdouble_ __x)); /* Arc tangent of Y/X. */ |