aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2020-02-25 20:13:36 +0000
committerMichele Di Giorgio <michele.digiorgio@arm.com>2020-02-26 10:46:12 +0000
commit7d7c4206eb5fce3a1e93bad7a91841ff6d904f23 (patch)
tree5babc6165f0afcdb5fac5e5865f1bc62760590b3
parentee939fb58e3fc50ae7c92c895f8abd1dd9f20eb3 (diff)
downloadComputeLibrary-7d7c4206eb5fce3a1e93bad7a91841ff6d904f23.tar.gz
COMPMID-3222: Mismatches for Depthwise Convolution
Signed-off-by: Michele Di Giorgio <michele.digiorgio@arm.com> Change-Id: Ie073d5fa6612381958c4bcb2405e607d5f4d6081 Signed-off-by: Michele Di Giorgio <michele.digiorgio@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2782 Reviewed-by: Giorgio Arena <giorgio.arena@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--tests/validation/CL/DepthwiseConvolutionLayerNative.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/validation/CL/DepthwiseConvolutionLayerNative.cpp b/tests/validation/CL/DepthwiseConvolutionLayerNative.cpp
index 6c9b8e355f..a3a5df14ff 100644
--- a/tests/validation/CL/DepthwiseConvolutionLayerNative.cpp
+++ b/tests/validation/CL/DepthwiseConvolutionLayerNative.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019 ARM Limited.
+ * Copyright (c) 2019-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -60,7 +60,7 @@ RelativeTolerance<float> rel_tolerance_f32(0.001f);
constexpr float abs_tolerance_f32(0.0001f);
RelativeTolerance<half_float::half> rel_tolerance_f16(half_float::half(0.01f));
-const float abs_tolerance_f16(half_float::half(0.02f));
+constexpr float abs_tolerance_f16(0.03f);
/** Width values to test - Precommit */
const auto width_values_precommit = framework::dataset::make("width", { 37U } );