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

github.com/marian-nmt/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2018-05-13 13:58:38 +0300
committerKenneth Heafield <github@kheafield.com>2018-05-13 13:58:38 +0300
commit1ff6101e92e59c0d6d65a60a8e7385b3656c150b (patch)
tree63f7a398d74c6cd65e3e9c33639888bc0628cbcb /Makefile
parent9d62c8aaf3218e71cb29518a0231f33c54e167ed (diff)
Be pedantic about avx512bw
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d9b4b47..13ae123 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
CXX := g++
-CXXFLAGS := -Wall -Werror -fPIC -O3 -march=native -mavx512vl
+CXXFLAGS := -Wall -Werror -fPIC -O3 -march=native -mavx512vl -mavx512bw
SRC := AVX_Matrix_Mult.cc SSE_Matrix_Mult.cc StopWatch.cc
OBJ := ${SRC:.cc=.o}