aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/NEON/SoftmaxLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/NEON/SoftmaxLayer.cpp')
-rw-r--r--tests/validation/NEON/SoftmaxLayer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/validation/NEON/SoftmaxLayer.cpp b/tests/validation/NEON/SoftmaxLayer.cpp
index 519cac3f29..66a9e03ace 100644
--- a/tests/validation/NEON/SoftmaxLayer.cpp
+++ b/tests/validation/NEON/SoftmaxLayer.cpp
@@ -83,7 +83,7 @@ Tensor compute_softmax_layer(const TensorShape &shape, DataType dt, int fixed_po
// Fill tensors
if(arm_compute::is_data_type_float(dt))
{
- std::uniform_real_distribution<> distribution(-10, 10);
+ std::uniform_real_distribution<> distribution(-1000.f, 1000.f);
library->fill(NEAccessor(src), distribution, 0);
}
else