]> git.ipfire.org Git - thirdparty/glibc.git/commit
x86-64: Add vector log1p/log1pf implementation to libmvec
authorSunil K Pandey <skpgkp2@gmail.com>
Wed, 29 Dec 2021 17:35:53 +0000 (09:35 -0800)
committerSunil K Pandey <skpgkp2@gmail.com>
Wed, 29 Dec 2021 19:38:27 +0000 (11:38 -0800)
commit74265c16ab74d3df3c7520aed63e7820b6870d67
tree5c5ce364a12b07dfe1f92eb85e12c661e06e2b3f
parent7e1722fec84c65bf95f249f9ad8d15ab12d8c853
x86-64: Add vector log1p/log1pf implementation to libmvec

Implement vectorized log1p/log1pf containing SSE, AVX, AVX2 and
AVX512 versions for libmvec as per vector ABI.  It also contains
accuracy and ABI tests for vector log1p/log1pf with regenerated ulps.

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
50 files changed:
bits/libm-simd-decl-stubs.h
math/bits/mathcalls.h
sysdeps/unix/sysv/linux/x86_64/libmvec.abilist
sysdeps/x86/fpu/bits/math-vector.h
sysdeps/x86/fpu/finclude/math-vector-fortran.h
sysdeps/x86_64/fpu/Makeconfig
sysdeps/x86_64/fpu/Versions
sysdeps/x86_64/fpu/libm-test-ulps
sysdeps/x86_64/fpu/multiarch/svml_d_log1p2_core-sse2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_log1p2_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_log1p2_core_sse4.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_log1p4_core-sse.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_log1p4_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_log1p4_core_avx2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_log1p8_core-avx2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_log1p8_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_log1p8_core_avx512.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_log1pf16_core-avx2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_log1pf16_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_log1pf16_core_avx512.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_log1pf4_core-sse2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_log1pf4_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_log1pf4_core_sse4.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_log1pf8_core-sse.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_log1pf8_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_log1pf8_core_avx2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_d_log1p2_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_d_log1p4_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_d_log1p4_core_avx.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_d_log1p8_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_s_log1pf16_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_s_log1pf4_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_s_log1pf8_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_s_log1pf8_core_avx.S [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-log1p-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-log1p-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-log1p-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-log1p.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-vlen2-wrappers.c
sysdeps/x86_64/fpu/test-double-vlen4-avx2-wrappers.c
sysdeps/x86_64/fpu/test-double-vlen4-wrappers.c
sysdeps/x86_64/fpu/test-double-vlen8-wrappers.c
sysdeps/x86_64/fpu/test-float-libmvec-log1pf-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-log1pf-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-log1pf-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-log1pf.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c
sysdeps/x86_64/fpu/test-float-vlen4-wrappers.c
sysdeps/x86_64/fpu/test-float-vlen8-avx2-wrappers.c
sysdeps/x86_64/fpu/test-float-vlen8-wrappers.c