x86-64: Add vector sinh/sinhf implementation to libmvec
authorSunil K Pandey <skpgkp2@gmail.com>
Wed, 29 Dec 2021 17:05:18 +0000 (09:05 -0800)
committerSunil K Pandey <skpgkp2@gmail.com>
Wed, 29 Dec 2021 19:37:55 +0000 (11:37 -0800)
commitaa1809a1dfde88e5df73edba14b30e488b267343
treee22646d81ab1bd03aa0b3295aeba2569b6f3a5c5
parent76ddc74e86f7bc36468736dd22c4c29e39cd62d8
x86-64: Add vector sinh/sinhf implementation to libmvec

Implement vectorized sinh/sinhf containing SSE, AVX, AVX2 and
AVX512 versions for libmvec as per vector ABI.  It also contains
accuracy and ABI tests for vector sinh/sinhf 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_sinh2_core-sse2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_sinh2_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_sinh2_core_sse4.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_sinh4_core-sse.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_sinh4_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_sinh4_core_avx2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_sinh8_core-avx2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_sinh8_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_d_sinh8_core_avx512.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_sinhf16_core-avx2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_sinhf16_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_sinhf16_core_avx512.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_sinhf4_core-sse2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_sinhf4_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_sinhf4_core_sse4.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_sinhf8_core-sse.S [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_sinhf8_core.c [new file with mode: 0644]
sysdeps/x86_64/fpu/multiarch/svml_s_sinhf8_core_avx2.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_d_sinh2_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_d_sinh4_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_d_sinh4_core_avx.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_d_sinh8_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_s_sinhf16_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_s_sinhf4_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_s_sinhf8_core.S [new file with mode: 0644]
sysdeps/x86_64/fpu/svml_s_sinhf8_core_avx.S [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-sinh-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-sinh-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-sinh-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-sinh.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-sinhf-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-sinhf-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-sinhf-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-sinhf.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