From 845af69633fddf31ac600ba1ecbb53932132b531 Mon Sep 17 00:00:00 2001 From: Nikolay Bogoychev Date: Wed, 17 Apr 2019 00:18:34 +0100 Subject: Simplify templating a bit --- ssse3_gemm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ssse3_gemm.h') diff --git a/ssse3_gemm.h b/ssse3_gemm.h index f0d76b7..bb2df94 100644 --- a/ssse3_gemm.h +++ b/ssse3_gemm.h @@ -100,7 +100,7 @@ struct SSSE3_8bit { 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_SSE2OrAVX2__m128i(A, B, JustUnquantizeC(C, unquant_mult), A_rows, width, B_cols); } constexpr static const char *const kName = "8-bit SSSE3"; -- cgit v1.2.3