blob: 20ba113cd8f6f2ab038231f2e2f7a4253b09bd91 [file] [log] [blame]
Alex Gilday7da29b62018-03-23 14:16:00 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2019 Arm Limited.
Alex Gilday7da29b62018-03-23 14:16:00 +00003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
Michalis Spyrou80943252019-01-10 17:19:50 +000021 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
Alex Gilday7da29b62018-03-23 14:16:00 +000022 * SOFTWARE.
23 */
24#include "arm_compute/core/Types.h"
25#include "arm_compute/runtime/CL/CLTensor.h"
26#include "arm_compute/runtime/CL/CLTensorAllocator.h"
27#include "arm_compute/runtime/CL/functions/CLConvolutionLayer.h"
28#include "arm_compute/runtime/CL/functions/CLGEMMConvolutionLayer.h"
29#include "tests/CL/CLAccessor.h"
30#include "tests/PaddingCalculator.h"
31#include "tests/datasets/DilatedConvolutionLayerDataset.h"
32#include "tests/framework/Asserts.h"
33#include "tests/framework/Macros.h"
34#include "tests/framework/datasets/Datasets.h"
35#include "tests/validation/Validation.h"
36#include "tests/validation/fixtures/ConvolutionLayerFixture.h"
37
38namespace arm_compute
39{
40namespace test
41{
42namespace validation
43{
44namespace
45{
Gian Marco Iodice84cb75d2018-08-21 11:57:17 +010046RelativeTolerance<float> rel_tolerance_f32(0.05f); /**< Relative tolerance value for comparing reference's output against implementation's output for DataType::F32 */
47RelativeTolerance<half_float::half> rel_tolerance_f16(half_float::half(0.2)); /**< Relative tolerance value for comparing reference's output against implementation's output for DataType::F16 */
Georgios Pinitas51e53a32018-10-22 13:49:08 +010048constexpr AbsoluteTolerance<float> abs_tolerance_qasymm8(1); /**< Relative tolerance value for comparing reference's output against implementation's output for quantized data types */
Gian Marco Iodice84cb75d2018-08-21 11:57:17 +010049constexpr float abs_tolerance_f32 = 0.001f; /**< Absolute tolerance value for comparing reference's output against implementation's output for DataType::F32 */
50constexpr float abs_tolerance_f16 = 0.3f; /**< Absolute tolerance value for comparing reference's output against implementation's output for DataType::F16 */
51constexpr float tolerance_num_f16 = 0.07f; /**< Tolerance number for FP16 */
Alex Gilday7da29b62018-03-23 14:16:00 +000052
53/** CNN data types */
54const auto CNNDataTypes = framework::dataset::make("DataType",
55{
56 DataType::F16,
57 DataType::F32,
Alex Gilday7da29b62018-03-23 14:16:00 +000058 DataType::QASYMM8,
59});
60} // namespace
61
62TEST_SUITE(CL)
63TEST_SUITE(DilatedConvolutionLayer)
64
Gian Marco Iodicee52a3002018-04-11 15:59:10 +010065DATA_TEST_CASE(ValidateConvolutionMethod, framework::DatasetMode::ALL, zip(zip(zip(zip(zip(zip(
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010066 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(17U, 31U, 2U), 1, DataType::F32),
67 TensorInfo(TensorShape(17U, 31U, 2U), 1, DataType::F32),
68 TensorInfo(TensorShape(23U, 27U, 23U, 4U), 1, DataType::F32),
69 TensorInfo(TensorShape(3U, 3U, 2U, 1U), 1, DataType::F32),
70 TensorInfo(TensorShape(33U, 27U, 7U, 4U), 1, DataType::F32)
Gian Marco Iodicee52a3002018-04-11 15:59:10 +010071 }),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010072 framework::dataset::make("WeightsInfo", { TensorInfo(TensorShape(5U, 5U, 2U, 19U), 1, DataType::F32),
73 TensorInfo(TensorShape(5U, 5U, 2U, 19U), 1, DataType::F32),
74 TensorInfo(TensorShape(3U, 3U, 23U, 21U), 1, DataType::F32),
75 TensorInfo(TensorShape(3U, 3U, 5U, 21U), 1, DataType::F32),
76 TensorInfo(TensorShape(5U, 5U, 7U, 16U), 1, DataType::F16)
Gian Marco Iodicee52a3002018-04-11 15:59:10 +010077 })),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010078 framework::dataset::make("OutputInfo", { TensorInfo(TensorShape(15U, 15U, 19U), 1, DataType::F32),
79 TensorInfo(TensorShape(15U, 15U, 19U), 1, DataType::F32),
80 TensorInfo(TensorShape(21U, 25U, 21U, 4U), 1, DataType::F32),
81 TensorInfo(TensorShape(11U, 25U, 21U), 1, DataType::F32),
82 TensorInfo(TensorShape(11U, 12U, 16U, 4U), 1, DataType::F32)
Alex Gilday7da29b62018-03-23 14:16:00 +000083 })),
84 framework::dataset::make("ConvInfo", { PadStrideInfo(1, 2, 1, 1),
85 PadStrideInfo(1, 2, 1, 1),
86 PadStrideInfo(1, 1, 0, 0),
87 PadStrideInfo(2, 1, 0, 0),
88 PadStrideInfo(3, 2, 1, 0)
89 })),
90 framework::dataset::make("GpuTarget", { GPUTarget::BIFROST,
91 GPUTarget::MIDGARD,
92 GPUTarget::G71,
93 GPUTarget::MIDGARD,
94 GPUTarget::BIFROST
95 })),
96 framework::dataset::make("Dilation", { Size2D(1U, 1U),
97 Size2D(1U, 1U),
98 Size2D(1U, 1U),
99 Size2D(2U, 2U),
100 Size2D(3U, 3U)
101 })),
102
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100103 framework::dataset::make("Expected", { ConvolutionMethod::GEMM, ConvolutionMethod::GEMM, ConvolutionMethod::WINOGRAD, ConvolutionMethod::GEMM, ConvolutionMethod::GEMM })),
104 input_info, weights_info, output_info, conv_info, gpu_target, dilation, expected)
Alex Gilday7da29b62018-03-23 14:16:00 +0000105{
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +0100106 ConvolutionMethod is_valid = CLConvolutionLayer::get_convolution_method(&input_info.clone()->set_is_resizable(true),
107 &weights_info.clone()->set_is_resizable(true),
108 &output_info.clone()->set_is_resizable(true), conv_info, WeightsInfo(), ActivationLayerInfo(), gpu_target, dilation);
Alex Gilday7da29b62018-03-23 14:16:00 +0000109 ARM_COMPUTE_EXPECT(is_valid == expected, framework::LogLevel::ERRORS);
110}
Gian Marco Iodicebcafc4d2018-08-17 11:02:54 +0100111
Alex Gilday7da29b62018-03-23 14:16:00 +0000112TEST_SUITE_END()
113
114TEST_SUITE(GEMMDilatedConvolutionLayer)
115
Michalis Spyrou80943252019-01-10 17:19:50 +0000116DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(datasets::SmallDilatedConvolutionLayerDataset(),
Alex Gilday7da29b62018-03-23 14:16:00 +0000117 CNNDataTypes),
118 input_shape, weights_shape, bias_shape, output_shape, info, dilation, data_type)
119{
Alex Gilday7da29b62018-03-23 14:16:00 +0000120 auto bias_data_type = is_data_type_quantized_asymmetric(data_type) ? DataType::S32 : data_type;
121
122 // Create tensors
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100123 CLTensor src = create_tensor<CLTensor>(input_shape, data_type, 1, QuantizationInfo(2.f / 255.f, 127));
124 CLTensor weights = create_tensor<CLTensor>(weights_shape, data_type, 1, QuantizationInfo(2.f / 255.f, 127));
125 CLTensor bias = create_tensor<CLTensor>(bias_shape, bias_data_type, 1, QuantizationInfo(2.f / 255.f, 127));
126 CLTensor dst = create_tensor<CLTensor>(output_shape, data_type, 1, QuantizationInfo(2.f / 255.f, 127));
Alex Gilday7da29b62018-03-23 14:16:00 +0000127
128 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
129 ARM_COMPUTE_EXPECT(weights.info()->is_resizable(), framework::LogLevel::ERRORS);
130 ARM_COMPUTE_EXPECT(bias.info()->is_resizable(), framework::LogLevel::ERRORS);
131 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
132
133 const QuantizationInfo src_quantization_info = src.info()->quantization_info();
134 const QuantizationInfo weights_quantization_info = weights.info()->quantization_info();
135
136 // Create and configure function
137 CLGEMMConvolutionLayer conv;
138 conv.configure(&src, &weights, &bias, &dst, info, WeightsInfo(), dilation);
139
140 // Validate valid region
141 const ValidRegion src_valid_region = shape_to_valid_region(input_shape);
142 const ValidRegion weights_valid_region = shape_to_valid_region(weights_shape);
143 const ValidRegion bias_valid_region = shape_to_valid_region(bias_shape);
144 const ValidRegion dst_valid_region = shape_to_valid_region(output_shape);
145
146 validate(src.info()->valid_region(), src_valid_region);
147 validate(weights.info()->valid_region(), weights_valid_region);
148 validate(bias.info()->valid_region(), bias_valid_region);
149 validate(dst.info()->valid_region(), dst_valid_region);
150
151 // Validate QuantizationInfo
152 ARM_COMPUTE_EXPECT(src.info()->quantization_info() == src_quantization_info, framework::LogLevel::ERRORS);
153 ARM_COMPUTE_EXPECT(weights.info()->quantization_info() == weights_quantization_info, framework::LogLevel::ERRORS);
154
155 // Validate padding
156 //TODO(COMPMID-415) Need to validate padding?
157}
158
159template <typename T>
160using CLGEMMDilatedConvolutionLayerFixture = ConvolutionValidationFixture<CLTensor, CLAccessor, CLGEMMConvolutionLayer, T>;
161
162TEST_SUITE(Float)
163TEST_SUITE(FP16)
Michalis Spyroue2503892018-04-23 15:17:31 +0100164FIXTURE_DATA_TEST_CASE(RunSmall, CLGEMMDilatedConvolutionLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(combine(datasets::SmallDilatedConvolutionLayerDataset(),
Alex Gilday7da29b62018-03-23 14:16:00 +0000165 framework::dataset::make("ReshapeWeights", { true })),
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000166 framework::dataset::make("DataType", DataType::F16)),
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100167 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })),
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000168 framework::dataset::make("ActivationLayerInfo", ActivationLayerInfo())))
Alex Gilday7da29b62018-03-23 14:16:00 +0000169{
170 // Validate output
Gian Marco Iodicebcafc4d2018-08-17 11:02:54 +0100171 validate(CLAccessor(_target), _reference, rel_tolerance_f16, 0.0f, abs_tolerance_f16);
Alex Gilday7da29b62018-03-23 14:16:00 +0000172}
Gian Marco Iodicebcafc4d2018-08-17 11:02:54 +0100173
Michalis Spyroue2503892018-04-23 15:17:31 +0100174FIXTURE_DATA_TEST_CASE(RunLarge, CLGEMMDilatedConvolutionLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(combine(combine(datasets::LargeDilatedConvolutionLayerDataset(),
Alex Gilday7da29b62018-03-23 14:16:00 +0000175 framework::dataset::make("ReshapeWeights", { true })),
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000176 framework::dataset::make("DataType", DataType::F16)),
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100177 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })),
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000178 framework::dataset::make("ActivationLayerInfo", ActivationLayerInfo())))
Alex Gilday7da29b62018-03-23 14:16:00 +0000179{
180 // Validate output
Gian Marco Iodice84cb75d2018-08-21 11:57:17 +0100181 validate(CLAccessor(_target), _reference, rel_tolerance_f16, tolerance_num_f16);
Alex Gilday7da29b62018-03-23 14:16:00 +0000182}
Gian Marco Iodicebcafc4d2018-08-17 11:02:54 +0100183
Alex Gilday7da29b62018-03-23 14:16:00 +0000184TEST_SUITE_END()
185
186TEST_SUITE(FP32)
Michalis Spyroue2503892018-04-23 15:17:31 +0100187FIXTURE_DATA_TEST_CASE(RunSmall, CLGEMMDilatedConvolutionLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(combine(datasets::SmallDilatedConvolutionLayerDataset(),
Alex Gilday7da29b62018-03-23 14:16:00 +0000188 framework::dataset::make("ReshapeWeights", { true })),
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000189 framework::dataset::make("DataType", DataType::F32)),
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100190 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })),
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000191 framework::dataset::make("ActivationLayerInfo", ActivationLayerInfo())))
Alex Gilday7da29b62018-03-23 14:16:00 +0000192{
193 // Validate output
Gian Marco Iodicebcafc4d2018-08-17 11:02:54 +0100194 validate(CLAccessor(_target), _reference, rel_tolerance_f32);
Alex Gilday7da29b62018-03-23 14:16:00 +0000195}
Gian Marco Iodicebcafc4d2018-08-17 11:02:54 +0100196
Michalis Spyroue2503892018-04-23 15:17:31 +0100197FIXTURE_DATA_TEST_CASE(RunLarge, CLGEMMDilatedConvolutionLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(combine(combine(datasets::LargeDilatedConvolutionLayerDataset(),
Alex Gilday7da29b62018-03-23 14:16:00 +0000198 framework::dataset::make("ReshapeWeights", { true })),
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000199 framework::dataset::make("DataType", DataType::F32)),
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100200 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })),
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000201 framework::dataset::make("ActivationLayerInfo", ActivationLayerInfo())))
Alex Gilday7da29b62018-03-23 14:16:00 +0000202{
203 // Validate output
Gian Marco Iodicebcafc4d2018-08-17 11:02:54 +0100204 validate(CLAccessor(_target), _reference, rel_tolerance_f32, 0.f, abs_tolerance_f32);
Alex Gilday7da29b62018-03-23 14:16:00 +0000205}
206TEST_SUITE_END()
207TEST_SUITE_END()
208
209template <typename T>
Alex Gilday7da29b62018-03-23 14:16:00 +0000210using CLGEMMDilatedConvolutionLayerQuantizedFixture = ConvolutionValidationQuantizedFixture<CLTensor, CLAccessor, CLGEMMConvolutionLayer, T>;
211
212TEST_SUITE(Quantized)
213TEST_SUITE(QASYMM8)
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000214FIXTURE_DATA_TEST_CASE(RunSmall, CLGEMMDilatedConvolutionLayerQuantizedFixture<uint8_t>, framework::DatasetMode::PRECOMMIT,
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100215 combine(combine(combine(combine(combine(datasets::SmallDilatedConvolutionLayerDataset(),
216 framework::dataset::make("ReshapeWeights", { true })),
217 framework::dataset::make("DataType", DataType::QASYMM8)),
218 framework::dataset::make("DataLayout", { DataLayout::NCHW })),
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000219 framework::dataset::make("QuantizationInfo", { QuantizationInfo(2.f / 255.f, 10) })),
220 framework::dataset::make("ActivationLayerInfo", { ActivationLayerInfo() })))
Alex Gilday7da29b62018-03-23 14:16:00 +0000221{
222 // Validate output
Gian Marco Iodicebcafc4d2018-08-17 11:02:54 +0100223 validate(CLAccessor(_target), _reference, abs_tolerance_qasymm8);
Alex Gilday7da29b62018-03-23 14:16:00 +0000224}
Gian Marco Iodicebcafc4d2018-08-17 11:02:54 +0100225
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000226FIXTURE_DATA_TEST_CASE(RunLarge, CLGEMMDilatedConvolutionLayerQuantizedFixture<uint8_t>, framework::DatasetMode::NIGHTLY,
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100227 combine(combine(combine(combine(combine(datasets::LargeDilatedConvolutionLayerDataset(),
228 framework::dataset::make("ReshapeWeights", { true })),
229 framework::dataset::make("DataType", DataType::QASYMM8)),
230 framework::dataset::make("DataLayout", { DataLayout::NCHW })),
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000231 framework::dataset::make("QuantizationInfo", { QuantizationInfo(2.f / 255.f, 0) })),
232 framework::dataset::make("ActivationLayerInfo", { ActivationLayerInfo() })))
Alex Gilday7da29b62018-03-23 14:16:00 +0000233{
234 // Validate output
Gian Marco Iodicebcafc4d2018-08-17 11:02:54 +0100235 validate(CLAccessor(_target), _reference, abs_tolerance_qasymm8);
Alex Gilday7da29b62018-03-23 14:16:00 +0000236}
237TEST_SUITE_END()
238TEST_SUITE_END()
239
240TEST_SUITE_END()
241TEST_SUITE_END()
242} // namespace validation
243} // namespace test
244} // namespace arm_compute