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:
Diffstat (limited to 'test/kernels/exp_test.cc')
-rw-r--r--test/kernels/exp_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/kernels/exp_test.cc b/test/kernels/exp_test.cc
index d4e100e..d54f2ca 100644
--- a/test/kernels/exp_test.cc
+++ b/test/kernels/exp_test.cc
@@ -20,7 +20,7 @@ void kernel_exp_approx_taylor_test() {
std::iota(input.begin(), input.end(), -int(VECTOR_LENGTH / 2));
*output.template as<vec_t>() = kernels::exp_approx_taylor(*input.template as<vec_t>());
- for (auto i = 0; i < output.size(); ++i)
+ for (std::size_t i = 0; i < output.size(); ++i)
CHECK_EPS(output[i], exp(input[i]), 0.001f);
}