]> git.ipfire.org Git - thirdparty/glibc.git/commit
x86_64: Add missing libmvec ABI tests
authorSunil K Pandey <skpgkp2@gmail.com>
Wed, 13 Oct 2021 20:37:24 +0000 (13:37 -0700)
committerSunil K Pandey <skpgkp2@gmail.com>
Fri, 22 Oct 2021 13:46:49 +0000 (06:46 -0700)
commit4f690aad9ee50ff54e94a7aac87c2a076d625f26
tree03f9a7c56a07478abc6fd1ad41f8cd8ebf13f182
parent927246e1882e4aa0ac3abac1fc795be494c38141
x86_64: Add missing libmvec ABI tests

Add vector ABI tests for cos, exp, log, pow and sin functions.

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
43 files changed:
sysdeps/x86_64/fpu/Makeconfig
sysdeps/x86_64/fpu/test-double-libmvec-cos-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-cos-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-cos-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-cos.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-exp-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-exp-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-exp-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-exp.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-log-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-log-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-log-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-log.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-pow-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-pow-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-pow-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-pow.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-sin-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-sin-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-sin-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-double-libmvec-sin.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-cosf-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-cosf-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-cosf-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-cosf.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-expf-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-expf-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-expf-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-expf.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-logf-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-logf-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-logf-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-logf.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-powf-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-powf-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-powf-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-powf.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-sinf-avx.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-sinf-avx2.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-sinf-avx512f.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-float-libmvec-sinf.c [new file with mode: 0644]
sysdeps/x86_64/fpu/test-vector-abi-arg1.h [new file with mode: 0644]
sysdeps/x86_64/fpu/test-vector-abi-arg2.h [new file with mode: 0644]