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:
authorKenneth Heafield <github@kheafield.com>2018-06-30 19:43:14 +0300
committerKenneth Heafield <github@kheafield.com>2018-06-30 19:43:14 +0300
commit902c78f662576e214644b205c5632956a69addae (patch)
tree72ad923259019837a93184ed1a450562875e8997 /sse2_gemm.cc
parent1164e1c941c98a9fba1f234f84778b855a2a8fa8 (diff)
Change column selection to std::size_t.
Should change everything else too soon.
Diffstat (limited to 'sse2_gemm.cc')
-rw-r--r--sse2_gemm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sse2_gemm.cc b/sse2_gemm.cc
index 0d015c0..9493775 100644
--- a/sse2_gemm.cc
+++ b/sse2_gemm.cc
@@ -59,7 +59,7 @@ void SSE2_16bit::PrepareB(const float *input, int16_t *output, float quant_mult,
PrepareBFor16(input, output, QuantizeTile16(quant_mult), rows, cols);
}
-void SSE2_16bit::SelectColumnsB(const int16_t *input, int16_t *output, int rows, const int *cols_begin, const int *cols_end) {
+void SSE2_16bit::SelectColumnsB(const int16_t *input, int16_t *output, int rows, const std::size_t *cols_begin, const std::size_t *cols_end) {
SelectColumnsOfB((const __m128i*)input, (__m128i*)output, rows * 2, cols_begin, cols_end);
}