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:
Diffstat (limited to 'avx2_gemm.cc')
-rw-r--r--avx2_gemm.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/avx2_gemm.cc b/avx2_gemm.cc
index 86bafb5..069c76f 100644
--- a/avx2_gemm.cc
+++ b/avx2_gemm.cc
@@ -137,5 +137,8 @@ void AVX2_8bit::Multiply(const int8_t *A, const int8_t *B, float *C, float unqua
Multiply8_SSE2OrAVX2<__m256i, __m256>(A, B, C, unquant_mult, A_rows, width, B_cols);
}
+const char *const AVX2_16bit::kName = "16-bit AVX2";
+const char *const AVX2_8bit::kName = "8-bit AVX2";
+
#endif // __AVX2__
} // namespace intgemm