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 'ssse3_gemm.h')
-rw-r--r--ssse3_gemm.h2
1 files changed, 1 insertions, 1 deletions
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<Multiply8_C, __m128i, __m128>(A, B, C, unquant_mult, A_rows, width, B_cols);
- Multiply8_SSE2OrAVX2__m128i<Multiply8_C, JustUnquantizeC>(A, B, JustUnquantizeC(C, unquant_mult), A_rows, width, B_cols);
+ Multiply8_SSE2OrAVX2__m128i<JustUnquantizeC>(A, B, JustUnquantizeC(C, unquant_mult), A_rows, width, B_cols);
}
constexpr static const char *const kName = "8-bit SSSE3";