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:
authorMateusz Chudyk <mateuszchudyk@gmail.com>2019-05-29 17:08:11 +0300
committerMateusz Chudyk <mateuszchudyk@gmail.com>2019-06-18 16:38:54 +0300
commitcc02a23473f888b06b59ecb7af3fa89d064b573f (patch)
treec12d3ac70111a6fb6f4dc7932dbc3c6b2a7a045c /test/multiply_test.cc
parentf0785bea3b42a8e5ab7e322b5ad0dc1e9018d65f (diff)
Change postprocess API
From now, run function takes input vector and offset in dst buffer
Diffstat (limited to 'test/multiply_test.cc')
-rw-r--r--test/multiply_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/multiply_test.cc b/test/multiply_test.cc
index 0c0becf..00256a8 100644
--- a/test/multiply_test.cc
+++ b/test/multiply_test.cc
@@ -416,7 +416,7 @@ template <class Routine> void TestMultiplyBias(Index A_rows, Index width, Index
AlignedVector<float> test_C(A_rows * B_cols);
- Routine::Multiply(A_prep.begin(), B_prep.begin(), test_C.begin(), CreatePostprocessPipeline(Unquantize(unquant_mult), AddBias(bias.begin())), A_rows, width, B_cols);
+ Routine::Multiply(A_prep.begin(), B_prep.begin(), test_C.begin(), CreatePostprocessPipeline(Unquantize(unquant_mult), AddBias(bias.begin(), B_cols)), A_rows, width, B_cols);
AlignedVector<Integer> B_quant(B.size());
Routine::Quantize(B.begin(), B_quant.begin(), quant_mult, B.size());