aboutsummaryrefslogtreecommitdiff
path: root/SingleSource/UnitTests/Vector/Makefile
diff options
context:
space:
mode:
authorIlia Taraban <ilia.taraban@intel.com>2018-12-17 09:12:37 +0000
committerIlia Taraban <ilia.taraban@intel.com>2018-12-17 09:12:37 +0000
commit2aa6523a6e30ce11f459c1e888b3717e03266285 (patch)
tree19e96c6458c20c9ecc07090fbd4561817fdb7e26 /SingleSource/UnitTests/Vector/Makefile
parentd1838643c129e8d5a34fd4b2482b84e28e5204b6 (diff)
test-suite: add avx512 tests with miscellaneous intrinsics
Summary: Here is another bunch of avx512 tests. In each test we do miscellaneous operations(shuffles, compress, shifts and etc) and also check result. Reviewers: craig.topper, RKSimon, MatzeB, zvi Reviewed By: RKSimon Subscribers: mgorny, eraman, llvm-commits Differential Revision: https://reviews.llvm.org/D51621 git-svn-id: https://llvm.org/svn/llvm-project/test-suite/trunk@349334 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'SingleSource/UnitTests/Vector/Makefile')
-rw-r--r--SingleSource/UnitTests/Vector/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/SingleSource/UnitTests/Vector/Makefile b/SingleSource/UnitTests/Vector/Makefile
index 304258e8..671634ab 100644
--- a/SingleSource/UnitTests/Vector/Makefile
+++ b/SingleSource/UnitTests/Vector/Makefile
@@ -20,6 +20,12 @@ ifeq ($(CC_UNDER_TEST_IS_CLANG), 1)
ifeq ($(HAVE_X86_AVX512F_INSTRUCTIONS), 1)
DIRS += AVX512F
endif
+ifeq ($(HAVE_X86_AVX512BW_INSTRUCTIONS), 1)
+DIRS += AVX512BWVL
+endif
+ifeq ($(HAVE_X86_AVX512DQ_INSTRUCTIONS), 1)
+DIRS += AVX512DQ
+endif
endif
# Assume ARMv7 implies NEON.