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:
authorKenneth Heafield <github@kheafield.com>2020-04-20 15:38:50 +0300
committerKenneth Heafield <github@kheafield.com>2020-04-20 15:38:50 +0300
commitec396d1b8d6f29e3a70924df4225cfd4050a1c2b (patch)
tree49e8d418665dfc36b8782a4a7016ee28c53ef30e
parentb872fd6a00d7f232d84427807a666806727e7b88 (diff)
Fix OMP parallel wrap typing for Shift
-rw-r--r--multiply.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/multiply.h b/multiply.h
index adb71ee..85fa869 100644
--- a/multiply.h
+++ b/multiply.h
@@ -635,7 +635,7 @@ template <class Callback, class Backend, class Integer = typename Backend::Integ
#pragma omp parallel
Backend::template Multiply<Callback>(A, B, A_rows, width, B_cols, callback);
}
-template <class Callback, class Backend> static inline void OMPParallelWrap8Shift(const int8_t *A, const int8_t *B, Index A_rows, Index width, Index B_cols, Callback callback) {
+template <class Callback, class Backend> static inline void OMPParallelWrap8Shift(const uint8_t *A, const int8_t *B, Index A_rows, Index width, Index B_cols, Callback callback) {
#pragma omp parallel
Backend::template Multiply8Shift<Callback>(A, B, A_rows, width, B_cols, callback);
}