diff options
author | Sunil K Pandey <skpgkp2@gmail.com> | 2021-12-29 09:54:31 -0800 |
---|---|---|
committer | Sunil K Pandey <skpgkp2@gmail.com> | 2021-12-29 11:38:44 -0800 |
commit | f9ce13fdac6c27745f872561102f1a9f746c5b2e (patch) | |
tree | 78b5fcb301bd15ba0ea457f059c58b941b06e91b /math | |
parent | 0625489ccc430ccbc5e6e70b4402d7e7d2d3ed17 (diff) | |
download | glibc-f9ce13fdac6c27745f872561102f1a9f746c5b2e.tar.gz glibc-f9ce13fdac6c27745f872561102f1a9f746c5b2e.tar.xz glibc-f9ce13fdac6c27745f872561102f1a9f746c5b2e.zip |
x86-64: Add vector erf/erff implementation to libmvec
Implement vectorized erf/erff containing SSE, AVX, AVX2 and AVX512 versions for libmvec as per vector ABI. It also contains accuracy and ABI tests for vector erf/erff 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 bc37973c41..a5b6c4457f 100644 --- a/math/bits/mathcalls.h +++ b/math/bits/mathcalls.h @@ -228,7 +228,7 @@ __MATHCALL (yn,, (int, _Mdouble_)); #if defined __USE_XOPEN || defined __USE_ISOC99 /* Error and gamma functions. */ -__MATHCALL (erf,, (_Mdouble_)); +__MATHCALL_VEC (erf,, (_Mdouble_)); __MATHCALL (erfc,, (_Mdouble_)); __MATHCALL (lgamma,, (_Mdouble_)); #endif |