aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/validation/NEON/ActivationLayer.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/validation/NEON/ActivationLayer.cpp b/tests/validation/NEON/ActivationLayer.cpp
index b294ff6b6b..0ef4590d7e 100644
--- a/tests/validation/NEON/ActivationLayer.cpp
+++ b/tests/validation/NEON/ActivationLayer.cpp
@@ -47,6 +47,9 @@ namespace validation
{
namespace
{
+RelativeTolerance<float> tolerance_float_sqrt(0.0001f);
+
+
/** Define relative tolerance of the activation layer.
*
* @param[in] data_type The data type used.
@@ -161,7 +164,7 @@ void test_float_sqrt_boundary_value()
library->fill_static_values(reference_src, boundary_value_vector);
auto reference_dst = reference::activation_layer<T>(reference_src, info);
- validate(Accessor(src), reference_dst);
+ validate(Accessor(src), reference_dst, tolerance_float_sqrt);
}
} // namespace