Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/intgemm/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 02:18:34 +0300
committerNikolay Bogoychev <nheart@gmail.com>2019-04-17 02:18:34 +0300
commit845af69633fddf31ac600ba1ecbb53932132b531 (patch)
treefa862ae774167c230849c17e2903321366251181 /avx2_gemm.h
parent4d719af5632ba5d5f5861389fab382c4bdf3056b (diff)
Simplify templating a bit
Diffstat (limited to 'avx2_gemm.h')
-rw-r--r--avx2_gemm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/avx2_gemm.h b/avx2_gemm.h
index e5335a3..c560b49 100644
--- a/avx2_gemm.h
+++ b/avx2_gemm.h
@@ -177,7 +177,7 @@ struct AVX2_8bit {
AVX2 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_AVXAVX2, __m256i, __m256>(A, B, C, unquant_mult, A_rows, width, B_cols);
- Multiply8_SSE2OrAVX2__m256i<Multiply8_AVXAVX2, JustUnquantizeC>(A, B, JustUnquantizeC(C, unquant_mult), A_rows, width, B_cols);
+ Multiply8_SSE2OrAVX2__m256i<JustUnquantizeC>(A, B, JustUnquantizeC(C, unquant_mult), A_rows, width, B_cols);
}
constexpr static const char *const kName = "8-bit AVX2";