aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/NEON/Fixedpoint/Exp_QS8.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/NEON/Fixedpoint/Exp_QS8.cpp')
-rw-r--r--tests/validation/NEON/Fixedpoint/Exp_QS8.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/validation/NEON/Fixedpoint/Exp_QS8.cpp b/tests/validation/NEON/Fixedpoint/Exp_QS8.cpp
index 086314fdd3..f8fc0c2ea3 100644
--- a/tests/validation/NEON/Fixedpoint/Exp_QS8.cpp
+++ b/tests/validation/NEON/Fixedpoint/Exp_QS8.cpp
@@ -78,9 +78,9 @@ Tensor compute_exp_qs8(const TensorShape &shape, int fixed_point_position)
BOOST_TEST(!src.info()->is_resizable());
BOOST_TEST(!dst.info()->is_resizable());
- // Fill tensors. Keep the range between (1, (1 << (fixed_point_position - 1))) so the result won't
+ // Fill tensors. Keep the range between [-1.0, 1.0) so the result won't
// overflow. E.g. e^7 = 1096, which cannot be represented in QS8
- std::uniform_int_distribution<> distribution(1, (1 << (fixed_point_position - 1)));
+ std::uniform_int_distribution<> distribution(-(1 << (fixed_point_position - 1)), (1 << (fixed_point_position - 1)));
library->fill(NEAccessor(src), distribution, 0);
Iterator input(&src, window);