From e5d76e1574103de405df625e48e5294ea106060c Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Wed, 14 Jul 2021 16:01:44 +0100 Subject: Increase tolerance for NEMeanStdDevNormalization A reduction step is performed with 2x2 reduction vectors for fp32 that can lead to different results. Increasing the tolerance to accommodate. Resolves: COMPMID-4644 Signed-off-by: Georgios Pinitas Change-Id: I53380bbd64e18efdaace9d0e96bb35cbfcea8f04 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5947 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- tests/validation/NEON/MeanStdDevNormalizationLayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/validation/NEON/MeanStdDevNormalizationLayer.cpp b/tests/validation/NEON/MeanStdDevNormalizationLayer.cpp index 90d3d05a0d..dee8f78da9 100644 --- a/tests/validation/NEON/MeanStdDevNormalizationLayer.cpp +++ b/tests/validation/NEON/MeanStdDevNormalizationLayer.cpp @@ -47,7 +47,7 @@ namespace #ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC RelativeTolerance tolerance_f16(half(0.2f)); #endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */ -RelativeTolerance tolerance_f32(1e-8f); +RelativeTolerance tolerance_f32(1e-4f); } // namespace TEST_SUITE(NEON) -- cgit v1.2.1