diff options
author | Sunil K Pandey <skpgkp2@gmail.com> | 2021-12-29 08:41:18 -0800 |
---|---|---|
committer | Sunil K Pandey <skpgkp2@gmail.com> | 2021-12-29 11:37:29 -0800 |
commit | 3fc9ccc20b6d0d5e4517d2e766f14ce780a228a5 (patch) | |
tree | 21dfad9c847f54ca417c735e09b95f7f6023d690 /sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c | |
parent | 37475ba88303929e85704693455c7294e50aba77 (diff) | |
download | glibc-3fc9ccc20b6d0d5e4517d2e766f14ce780a228a5.zip glibc-3fc9ccc20b6d0d5e4517d2e766f14ce780a228a5.tar.gz glibc-3fc9ccc20b6d0d5e4517d2e766f14ce780a228a5.tar.bz2 |
x86-64: Add vector exp2/exp2f implementation to libmvec
Implement vectorized exp2/exp2f containing SSE, AVX, AVX2 and
AVX512 versions for libmvec as per vector ABI. It also contains
accuracy and ABI tests for vector exp2/exp2f with regenerated ulps.
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
Diffstat (limited to 'sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c')
-rw-r--r-- | sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c b/sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c index 4c2ea6d..597d7d7 100644 --- a/sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c +++ b/sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c @@ -31,6 +31,7 @@ VECTOR_WRAPPER (WRAPPER_NAME (acosf), _ZGVeN16v_acosf) VECTOR_WRAPPER (WRAPPER_NAME (atanf), _ZGVeN16v_atanf) VECTOR_WRAPPER (WRAPPER_NAME (asinf), _ZGVeN16v_asinf) VECTOR_WRAPPER_ff (WRAPPER_NAME (hypotf), _ZGVeN16vv_hypotf) +VECTOR_WRAPPER (WRAPPER_NAME (exp2f), _ZGVeN16v_exp2f) #define VEC_INT_TYPE __m512i |