about summary refs log tree commit diff
path: root/math
diff options
context:
space:
mode:
authorSunil K Pandey <skpgkp2@gmail.com>2021-12-29 10:13:20 -0800
committerSunil K Pandey <skpgkp2@gmail.com>2021-12-30 10:19:03 -0800
commit8881cca8fb8d3a7ee89d174017dd27eded90366c (patch)
treeaa183021a734c54404062791e2582b17a5055f40 /math
parentbc1e344dc1fb7f406c42e03a63dd3dbf426af9e7 (diff)
downloadglibc-8881cca8fb8d3a7ee89d174017dd27eded90366c.tar.gz
glibc-8881cca8fb8d3a7ee89d174017dd27eded90366c.tar.xz
glibc-8881cca8fb8d3a7ee89d174017dd27eded90366c.zip
x86-64: Add vector erfc/erfcf implementation to libmvec
Implement vectorized erfc/erfcf containing SSE, AVX, AVX2 and
AVX512 versions for libmvec as per vector ABI.  It also contains
accuracy and ABI tests for vector erfc/erfcf 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 40e055e579..24e28b5c4f 100644
--- a/math/bits/mathcalls.h
+++ b/math/bits/mathcalls.h
@@ -229,7 +229,7 @@ __MATHCALL (yn,, (int, _Mdouble_));
 #if defined __USE_XOPEN || defined __USE_ISOC99
 /* Error and gamma functions.  */
 __MATHCALL_VEC (erf,, (_Mdouble_));
-__MATHCALL (erfc,, (_Mdouble_));
+__MATHCALL_VEC (erfc,, (_Mdouble_));
 __MATHCALL (lgamma,, (_Mdouble_));
 #endif