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:
authorNikolay Bogoychev <nheart@gmail.com>2019-04-17 01:39:03 +0300
committerNikolay Bogoychev <nheart@gmail.com>2019-04-17 01:39:03 +0300
commit48533fa72adb77d551030d732512740cccf8c70b (patch)
tree44c57c33a44b338729a2f08dd0105d3dd0bf61ec /ssse3_gemm.h
parent627ab821c71606aa6ff4947640def78b4f2b192c (diff)
WriteC for 8bit
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 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<Multiply8_C, __m128i, __m128>(A, B, C, unquant_mult, A_rows, width, B_cols);
- Multiply8_SSE2OrAVX2__m128i<Multiply8_C>(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);
}
constexpr static const char *const kName = "8-bit SSSE3";