aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/CL/SoftmaxLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/CL/SoftmaxLayer.cpp')
-rw-r--r--tests/validation/CL/SoftmaxLayer.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/validation/CL/SoftmaxLayer.cpp b/tests/validation/CL/SoftmaxLayer.cpp
index c4a9970b78..6a22eb1bcc 100644
--- a/tests/validation/CL/SoftmaxLayer.cpp
+++ b/tests/validation/CL/SoftmaxLayer.cpp
@@ -44,8 +44,9 @@ namespace validation
namespace
{
/** Tolerance for float operations */
-constexpr AbsoluteTolerance<float> tolerance_f16(0.002f);
-constexpr AbsoluteTolerance<float> tolerance_f32(0.000001f);
+RelativeTolerance<half_float::half> tolerance_f16(half_float::half(0.2));
+RelativeTolerance<float> tolerance_f32(0.001f);
+
/** Tolerance for fixed point operations */
constexpr AbsoluteTolerance<int8_t> tolerance_fixed_point(2);