Fix unused variable compilation error
authorGiorgio Arena <giorgio.arena@arm.com>
Thu, 4 Feb 2021 15:59:03 +0000 (15:59 +0000)
committerGiorgio Arena <giorgio.arena@arm.com>
Thu, 4 Feb 2021 17:12:02 +0000 (17:12 +0000)
Resolve: COMPMID-4236

Signed-off-by: Giorgio Arena <giorgio.arena@arm.com>
Change-Id: Iaa64295c0155d3cdac6e53724c6c9674df790ee0
Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4998
Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com>
Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Tested-by: Arm Jenkins <bsgcomp@arm.com>
tests/validation/CL/DirectConvolutionLayer.cpp

index 3a6cacc0ba93c04daf75705224b609a46884fcb5..e244576daf8d5e7713f1cfaca7b44b3c0205c72c 100644 (file)
@@ -43,11 +43,10 @@ namespace validation
 {
 namespace
 {
-RelativeTolerance<half>              tolerance_fp16(half(0.2));   /**< Tolerance for floating point tests */
-RelativeTolerance<float>             tolerance_fp32(0.05f);       /**< Tolerance for floating point tests */
-AbsoluteTolerance<float>             tolerance_fp32_abs(0.0003f); /**< Absolute Tolerance for floating point tests */
-constexpr float                      tolerance_num = 0.07f;       /**< Tolerance number */
-constexpr AbsoluteTolerance<uint8_t> tolerance_qasymm8(1);        /**< Tolerance for quantized tests */
+RelativeTolerance<half>              tolerance_fp16(half(0.2)); /**< Tolerance for floating point tests */
+RelativeTolerance<float>             tolerance_fp32(0.05f);     /**< Tolerance for floating point tests */
+constexpr float                      tolerance_num = 0.07f;     /**< Tolerance number */
+constexpr AbsoluteTolerance<uint8_t> tolerance_qasymm8(1);      /**< Tolerance for quantized tests */
 
 const auto data_strides          = combine(framework::dataset::make("StrideX", 1, 3), framework::dataset::make("StrideY", 1, 3));
 const auto data_strides_small    = combine(framework::dataset::make("StrideX", 1), framework::dataset::make("StrideY", 1));