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:
Diffstat (limited to 'intgemm/avx2_gemm.h')
-rw-r--r--intgemm/avx2_gemm.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/intgemm/avx2_gemm.h b/intgemm/avx2_gemm.h
index 5e81475..6e01679 100644
--- a/intgemm/avx2_gemm.h
+++ b/intgemm/avx2_gemm.h
@@ -1,5 +1,9 @@
#pragma once
+#include "intgemm/intgemm_config.h"
+
+#ifdef INTGEMM_COMPILER_SUPPORTS_AVX2
+
#include "interleave.h"
#include "kernels.h"
#include "multiply.h"
@@ -224,3 +228,5 @@ struct Kernels8 {
} // namespace avx2
} // namespace intgemm
+
+#endif