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, 2 insertions, 0 deletions
diff --git a/ssse3_gemm.h b/ssse3_gemm.h
index 9897d94..d904a3e 100644
--- a/ssse3_gemm.h
+++ b/ssse3_gemm.h
@@ -23,6 +23,8 @@ struct SSSE3_8bit {
static void PrepareB(const float *input, int8_t *output, float quant_mult, int rows, int cols);
+ static void SelectColumnsB(const int8_t *input, int8_t *output, int rows, const int *cols_begin, const int *cols_end);
+
static void Multiply(const int8_t *A, const int8_t *B, float *C, float unquant_mult, int A_rows, int width, int B_cols);
static const char *const kName;