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 'benchmarks/benchmark.cc')
-rw-r--r--benchmarks/benchmark.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/benchmarks/benchmark.cc b/benchmarks/benchmark.cc
index c6133bf..2dbe483 100644
--- a/benchmarks/benchmark.cc
+++ b/benchmarks/benchmark.cc
@@ -154,6 +154,7 @@ int main(int, char ** argv) {
RunAll<sse2::Kernels16>(matrices, end, stats.sse2_16bit);
}
+#ifdef INTGEMM_COMPILER_SUPPORTS_AVX2
std::cerr << "AVX2 8bit, 100 samples..." << std::endl;
for (int samples = 0; samples < kSamples; ++samples) {
RandomMatrices *end = (samples < 4) ? matrices_end : full_sample;
@@ -165,7 +166,7 @@ int main(int, char ** argv) {
RandomMatrices *end = (samples < 4) ? matrices_end : full_sample;
RunAll<avx2::Kernels16>(matrices, end, stats.avx2_16bit);
}
-
+#endif
#ifdef INTGEMM_COMPILER_SUPPORTS_AVX512BW
std::cerr << "AVX512 8bit, 100 samples..." << std::endl;
for (int samples = 0; samples < kSamples; ++samples) {