From 35981ca1cf8fab278831902664b7a103bcb216e3 Mon Sep 17 00:00:00 2001 From: Manuel Bottini Date: Tue, 9 Feb 2021 16:34:54 +0000 Subject: Fix tolerance issue in CL Winograd InputTransform FP16 Change-Id: I2874e1f3ff3f0b02edf465073a4a2de5171f0504 Signed-off-by: Manuel Bottini Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5036 Tested-by: Arm Jenkins Reviewed-by: Giorgio Arena Comments-Addressed: Arm Jenkins --- tests/validation/CL/Winograd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/validation/CL/Winograd.cpp b/tests/validation/CL/Winograd.cpp index 750799ace2..115f9378c9 100644 --- a/tests/validation/CL/Winograd.cpp +++ b/tests/validation/CL/Winograd.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020 Arm Limited. + * Copyright (c) 2018-2021 Arm Limited. * * SPDX-License-Identifier: MIT * @@ -55,7 +55,7 @@ namespace // *INDENT-OFF* // clang-format off constexpr AbsoluteTolerance tolerance_f32(0.002f); -const AbsoluteTolerance tolerance_f16(half(0.5f)); +const AbsoluteTolerance tolerance_f16(half(1.f)); constexpr AbsoluteTolerance tolerance_convolution_layer_f32(0.1f); const AbsoluteTolerance tolerance_convolution_layer_f16(half(0.4f)); RelativeTolerance rel_tolerance_f16(half(0.2)); /**< Tolerance value for comparing reference's output against implementation's output for FP16 data types */ -- cgit v1.2.1