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 'sse2_gemm.h')
-rw-r--r--sse2_gemm.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sse2_gemm.h b/sse2_gemm.h
index 23997ed..84823fa 100644
--- a/sse2_gemm.h
+++ b/sse2_gemm.h
@@ -22,6 +22,8 @@ struct SSE2_16bit {
static void PrepareB(const float *input, int16_t *output, float quant_mult, int rows, int cols);
+ static void SelectColumnsB(const int16_t *input, int16_t *output, int rows, const int *cols_begin, const int *cols_end);
+
static void Multiply(const int16_t *A, const int16_t *B, float *C, float unquant_mult, int A_rows, int width, int B_cols);
static const char *const kName;