aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/CL/RNNLayer.cpp
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2018-08-28 18:08:41 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commitb79b5d45280f17272e89d1ab7e600d26a6fc9918 (patch)
tree18d3c8c35e6b23e8e2fcfd076902649c85034a78 /tests/validation/CL/RNNLayer.cpp
parent6513ccb0ff80b00aaf1d4cc2e64c4823913bc9fa (diff)
downloadComputeLibrary-b79b5d45280f17272e89d1ab7e600d26a6fc9918.tar.gz
COMPMID-1545: Fix FP16 CLRNNLayer mismatches
Setting the relative tolerance to the same value as for CLConvolutionLayer and CLFullyConnectedLayer. Change-Id: Ia4b483f07df5f2de8a1e3ceec51d80798881929e Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/145909 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'tests/validation/CL/RNNLayer.cpp')
-rw-r--r--tests/validation/CL/RNNLayer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/validation/CL/RNNLayer.cpp b/tests/validation/CL/RNNLayer.cpp
index 9179c0955c..5d518f9d9b 100644
--- a/tests/validation/CL/RNNLayer.cpp
+++ b/tests/validation/CL/RNNLayer.cpp
@@ -40,7 +40,7 @@ namespace validation
namespace
{
RelativeTolerance<float> tolerance_f32(0.001f);
-RelativeTolerance<half> tolerance_f16(half(0.1));
+RelativeTolerance<half> tolerance_f16(half(0.2));
} // namespace
TEST_SUITE(CL)