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-06-24 00:09:38 +0300
committerKenneth Heafield <github@kheafield.com>2018-06-24 00:09:38 +0300
commit09be9c249c73bd3b4c21d261ad3e718981fe2eaa (patch)
tree972ee0e680487b56c7935e15dc39bb9cf1c33c50 /sse2_gemm.cc
parent0ae900a954ee19ebb8d33ba57493e4a14249c719 (diff)
Change to kName using the name of the implementation behind dispatch
Diffstat (limited to 'sse2_gemm.cc')
-rw-r--r--sse2_gemm.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/sse2_gemm.cc b/sse2_gemm.cc
index b5d128d..d7d43fd 100644
--- a/sse2_gemm.cc
+++ b/sse2_gemm.cc
@@ -128,6 +128,9 @@ void SSSE3_8bit::Multiply(const int8_t *A, const int8_t *B, float *C, float unqu
Multiply8_SSE2OrAVX2<__m128i, __m128>(A, B, C, unquant_mult, A_rows, width, B_cols);
}
+const char *const SSE2_16bit::kName = "16-bit SSE2";
+const char *const SSSE3_8bit::kName = "8-bit SSSE3";
+
#endif // __SSE2__
} // namespace intgemm