From 48533fa72adb77d551030d732512740cccf8c70b Mon Sep 17 00:00:00 2001 From: Nikolay Bogoychev Date: Tue, 16 Apr 2019 23:39:03 +0100 Subject: WriteC for 8bit --- 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 2b830a9..66e6f5a 100644 --- a/ssse3_gemm.h +++ b/ssse3_gemm.h @@ -98,7 +98,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, 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