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-24 01:24:22 +0300
committerKenneth Heafield <github@kheafield.com>2018-06-24 01:24:22 +0300
commit905d41044bd9338b02bc40c0e3ea5bfc4155903e (patch)
tree926d055336d42a4b120d3c2f104bacb60a98cebf /intgemm.cc
parent09be9c249c73bd3b4c21d261ad3e718981fe2eaa (diff)
Be really pedantic about not compiling SSE2 with SSSE3 instructions
Diffstat (limited to 'intgemm.cc')
-rw-r--r--intgemm.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/intgemm.cc b/intgemm.cc
index fdf0658..7798d14 100644
--- a/intgemm.cc
+++ b/intgemm.cc
@@ -1,6 +1,7 @@
#include "intgemm.h"
#include "sse2_gemm.h"
+#include "ssse3_gemm.h"
#include "avx2_gemm.h"
#include "avx512_gemm.h"