Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/intgemm/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2018-06-23 22:21:09 +0300
committerKenneth Heafield <github@kheafield.com>2018-06-23 22:21:09 +0300
commit4da058ae1c33a859882e60eb0bf89512762422d8 (patch)
tree76be6cd4dc198a0321ff02a8b5c3e088a791c817
parent1c3146d2900f9143cb46fc2bac2f3e6c9e08062f (diff)
Add AVX512DQ to compile options
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2d97f59..90ccab2 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ OBJ := ${SRC:.cc=.o}
all: test quantize_test benchmark example
avx512_gemm.o: multiply.h interleave.h avx512_gemm.h avx512_gemm.cc
- ${CXX} ${CXXFLAGS} -c -mavx512bw -mavx512vl avx512_gemm.cc -o avx512_gemm.o
+ ${CXX} ${CXXFLAGS} -c -mavx512bw -mavx512vl -mavx512dq avx512_gemm.cc -o avx512_gemm.o
avx2_gemm.o: multiply.h interleave.h avx2_gemm.h avx2_gemm.cc
${CXX} ${CXXFLAGS} -c -mavx2 avx2_gemm.cc -o avx2_gemm.o