From 2ae6e66e4c4f1727208e795c26361f47d4706b3c Mon Sep 17 00:00:00 2001 From: Nikolay Bogoychev Date: Wed, 17 Apr 2019 23:08:55 +0100 Subject: templatedit --- ssse3_gemm.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'ssse3_gemm.h') diff --git a/ssse3_gemm.h b/ssse3_gemm.h index bb2df94..d384500 100644 --- a/ssse3_gemm.h +++ b/ssse3_gemm.h @@ -97,11 +97,12 @@ struct SSSE3_8bit { SSSE3 static void SelectColumnsB(const int8_t *input, int8_t *output, Index rows, const Index *cols_begin, const Index *cols_end) { ssse3::SelectColumnsOfB((const __m128i*)input, (__m128i*)output, rows, cols_begin, cols_end); } - +/* SSSE3 static void Multiply(const int8_t *A, const int8_t *B, float *C, float unquant_mult, Index A_rows, Index width, Index B_cols) { //Multiply8_SSE2OrAVX2(A, B, C, unquant_mult, A_rows, width, B_cols); Multiply8_SSE2OrAVX2__m128i(A, B, JustUnquantizeC(C, unquant_mult), A_rows, width, B_cols); - } + }*/ + MULTIPLY8_define(__m128i, SSSE3) constexpr static const char *const kName = "8-bit SSSE3"; -- cgit v1.2.3