blob: 2aa7cfe7c1e1e5f70874ca00d62b33a866bf0b72 [file] [log] [blame]
Michalis Spyrou780db4e2017-11-23 09:49:51 +00001/*
Georgios Pinitasced7a8d2018-02-01 16:31:33 +00002 * Copyright (c) 2017-2018 ARM Limited.
Michalis Spyrou780db4e2017-11-23 09:49:51 +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,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#include "arm_compute/core/CL/kernels/CLFillBorderKernel.h"
25#include "arm_compute/core/Types.h"
26#include "arm_compute/runtime/CL/CLTensor.h"
27#include "arm_compute/runtime/CL/CLTensorAllocator.h"
28#include "arm_compute/runtime/CL/functions/CLDeconvolutionLayer.h"
29#include "tests/CL/CLAccessor.h"
30#include "tests/PaddingCalculator.h"
31#include "tests/datasets/ShapeDatasets.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/DeconvolutionLayerFixture.h"
37
38namespace arm_compute
39{
40namespace test
41{
42namespace validation
43{
44namespace
45{
Georgios Pinitas793f87d2018-05-18 20:08:58 +010046constexpr AbsoluteTolerance<float> tolerance_fp32(0.001f); /**< Tolerance for floating point tests */
47RelativeTolerance<half_float::half> tolerance_f16(half_float::half(0.2)); /**< Tolerance value for comparing reference's for DataType::F16 */
Michele Di Giorgioc1961b52018-08-16 11:47:45 +010048constexpr AbsoluteTolerance<float> tolerance_qasymm8(1.0); /**< Tolerance value for comparing reference's output against implementation's output for quantized data types */
Georgios Pinitas793f87d2018-05-18 20:08:58 +010049constexpr float tolerance_num = 0.07f; /**< Tolerance number */
Michalis Spyrou780db4e2017-11-23 09:49:51 +000050
Georgios Pinitasced7a8d2018-02-01 16:31:33 +000051const auto data4x4 = datasets::SmallDeconvolutionShapes() * framework::dataset::make("StrideX", 1, 4) * framework::dataset::make("StrideY", 1, 4) * framework::dataset::make("PadX", 0, 3)
52 * framework::dataset::make("PadY", 0, 3) * framework::dataset::make("ax", 0) * framework::dataset::make("ay", 0) * framework::dataset::make("NumKernels", { 1, 3 });
53
Michalis Spyrou780db4e2017-11-23 09:49:51 +000054const auto data3x3 = datasets::SmallDeconvolutionShapes() * framework::dataset::make("StrideX", 1, 4) * framework::dataset::make("StrideY", 1, 4) * framework::dataset::make("PadX", 0, 2)
55 * framework::dataset::make("PadY", 0, 2) * framework::dataset::make("ax", 0) * framework::dataset::make("ay", 0) * framework::dataset::make("NumKernels", { 1, 3 });
56
57const auto data1x1 = datasets::SmallDeconvolutionShapes() * framework::dataset::make("StrideX", 1, 4) * framework::dataset::make("StrideY", 1, 4) * framework::dataset::make("PadX", 0, 1)
58 * framework::dataset::make("PadY", 0, 1) * framework::dataset::make("ax", 0) * framework::dataset::make("ay", 0) * framework::dataset::make("NumKernels", { 1, 3 });
59
60} // namespace
61
62TEST_SUITE(CL)
63TEST_SUITE(DeconvolutionLayer)
64
65DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, (combine(datasets::SmallDeconvolutionShapes(), framework::dataset::make("DataType", DataType::F32))),
66 input_shape, data_type)
67{
68 // Create shapes
69 const unsigned int kernel_size_x = 3;
70 const unsigned int kernel_size_y = 3;
71 const unsigned int num_kernels = 1;
72 const TensorShape weights_shape(kernel_size_x, kernel_size_y, input_shape.z(), num_kernels);
73 const TensorShape bias_shape(num_kernels);
74 auto out_dim = deconvolution_output_dimensions(input_shape.x(), input_shape.y(), kernel_size_x, kernel_size_y, 1, 1, 0, 0, 1, 1);
75 TensorShape output_shape = deconvolution_output_shape(out_dim, input_shape, weights_shape);
76
77 // Create tensors
78 CLTensor src = create_tensor<CLTensor>(input_shape, data_type, 1);
79 CLTensor weights = create_tensor<CLTensor>(weights_shape, data_type, 1);
80 CLTensor bias = create_tensor<CLTensor>(bias_shape, data_type, 1);
81 CLTensor dst = create_tensor<CLTensor>(output_shape, data_type, 1);
82
83 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
84 ARM_COMPUTE_EXPECT(weights.info()->is_resizable(), framework::LogLevel::ERRORS);
85 ARM_COMPUTE_EXPECT(bias.info()->is_resizable(), framework::LogLevel::ERRORS);
86 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
87
88 // Create and configure function
89 CLDeconvolutionLayer deconv;
90 deconv.configure(&src, &weights, &bias, &dst, PadStrideInfo(1, 1, 1, 1, DimensionRoundingType::CEIL), 0, 0);
91
92 // Validate valid region
93 const ValidRegion src_valid_region = shape_to_valid_region(input_shape);
94 const ValidRegion weights_valid_region = shape_to_valid_region(weights_shape);
95 const ValidRegion bias_valid_region = shape_to_valid_region(bias_shape);
96 const ValidRegion dst_valid_region = shape_to_valid_region(output_shape);
97
98 validate(src.info()->valid_region(), src_valid_region);
99 validate(weights.info()->valid_region(), weights_valid_region);
100 validate(bias.info()->valid_region(), bias_valid_region);
101 validate(dst.info()->valid_region(), dst_valid_region);
102}
103
104// *INDENT-OFF*
105// clang-format off
106DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(zip(zip(zip(
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100107 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Mismatching data type
108 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Invalid weights shape
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100109 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Invalid bias shape
110 TensorInfo(TensorShape(13U, 11U, 4U, 3U), 1, DataType::F32), // Window shrink
111 TensorInfo(TensorShape(32U, 16U, 2U), 1, DataType::F32),
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000112 }),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100113 framework::dataset::make("WeightsInfo", { TensorInfo(TensorShape(3U, 3U, 2U, 2U), 1, DataType::F16),
114 TensorInfo(TensorShape(3U, 3U, 2U, 4U), 1, DataType::F32),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100115 TensorInfo(TensorShape(3U, 2U, 2U, 2U), 1, DataType::F32),
116 TensorInfo(TensorShape(3U, 3U, 4U), 1, DataType::F32),
117 TensorInfo(TensorShape(1U, 1U, 2U, 4U), 1, DataType::F32),
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000118 })),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100119 framework::dataset::make("BiasInfo", { TensorInfo(TensorShape(1U), 1, DataType::F16),
120 TensorInfo(TensorShape(1U), 1, DataType::F32),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100121 TensorInfo(TensorShape(25U, 11U), 1, DataType::F32),
122 TensorInfo(TensorShape(1U), 1, DataType::F32),
123 TensorInfo(TensorShape(4U), 1, DataType::F32),
Michele Di Giorgio9fef38a2018-07-06 18:06:58 +0100124 TensorInfo(TensorShape(4U), 1, DataType::S32),
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000125 })),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100126 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(25U, 11U, 2U), 1, DataType::F16),
127 TensorInfo(TensorShape(25U, 10U, 2U), 1, DataType::F32),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100128 TensorInfo(TensorShape(13U, 13U, 2U), 1, DataType::F32),
129 TensorInfo(TensorShape(11U, 9U, 1U, 3U), 1, DataType::F32),
130 TensorInfo(TensorShape(32U, 16U, 4U), 1, DataType::F32),
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000131 })),
132 framework::dataset::make("PadStrideInfo", { PadStrideInfo(1, 1, 0, 0),
133 PadStrideInfo(1, 1, 0, 0),
134 PadStrideInfo(1, 1, 0, 0),
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000135 PadStrideInfo(1, 1, 1, 1),
136 PadStrideInfo(1, 1, 0, 0),
137 })),
138 framework::dataset::make("ax", { 1U,
139 1U,
140 1U,
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000141 0U,
142 0U,
143 })),
144 framework::dataset::make("ay", { 1U,
145 1U,
146 1U,
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000147 0U,
148 0U,
149 })),
Michele Di Giorgio9fef38a2018-07-06 18:06:58 +0100150 framework::dataset::make("Expected", { false, false, false, false, true })),
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000151 input_info, weights_info, bias_info, output_info, pad_info, ax, ay, expected)
152{
153 bool is_valid = bool(CLDeconvolutionLayer::validate(&input_info.clone()->set_is_resizable(false), &weights_info.clone()->set_is_resizable(false), &bias_info.clone()->set_is_resizable(false), &output_info.clone()->set_is_resizable(false), pad_info, ax, ay));
154 ARM_COMPUTE_EXPECT(is_valid == expected, framework::LogLevel::ERRORS);
155}
156// clang-format on
157// *INDENT-ON*
158
159template <typename T>
Georgios Pinitasced7a8d2018-02-01 16:31:33 +0000160using CLDeconvolutionLayerFixture4x4 = DeconvolutionValidationFixture<CLTensor, CLAccessor, CLDeconvolutionLayer, T, 4, 4>;
161
162template <typename T>
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000163using CLDeconvolutionLayerFixture3x3 = DeconvolutionValidationFixture<CLTensor, CLAccessor, CLDeconvolutionLayer, T, 3, 3>;
164
165template <typename T>
166using CLDeconvolutionLayerFixture1x1 = DeconvolutionValidationFixture<CLTensor, CLAccessor, CLDeconvolutionLayer, T, 1, 1>;
167
168TEST_SUITE(Float)
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000169TEST_SUITE(FP32)
Georgios Pinitasced7a8d2018-02-01 16:31:33 +0000170
Georgios Pinitas793f87d2018-05-18 20:08:58 +0100171TEST_SUITE(W4x4)
Georgios Pinitasced7a8d2018-02-01 16:31:33 +0000172FIXTURE_DATA_TEST_CASE(Run, CLDeconvolutionLayerFixture4x4<float>, framework::DatasetMode::ALL, combine(data4x4, framework::dataset::make("DataType", DataType::F32)))
173{
174 // Validate output
175 validate(CLAccessor(_target), _reference, tolerance_fp32);
176}
177TEST_SUITE_END()
178
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000179TEST_SUITE(W3x3)
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000180FIXTURE_DATA_TEST_CASE(Run, CLDeconvolutionLayerFixture3x3<float>, framework::DatasetMode::ALL, combine(data3x3, framework::dataset::make("DataType", DataType::F32)))
181{
182 // Validate output
183 validate(CLAccessor(_target), _reference, tolerance_fp32);
184}
185TEST_SUITE_END()
186
187TEST_SUITE(W1x1)
188FIXTURE_DATA_TEST_CASE(Run, CLDeconvolutionLayerFixture1x1<float>, framework::DatasetMode::ALL, combine(data1x1, framework::dataset::make("DataType", DataType::F32)))
189{
190 // Validate output
191 validate(CLAccessor(_target), _reference, tolerance_fp32);
192}
193TEST_SUITE_END()
194
195TEST_SUITE_END()
Georgios Pinitas793f87d2018-05-18 20:08:58 +0100196
197TEST_SUITE(FP16)
198
199TEST_SUITE(W4x4)
200FIXTURE_DATA_TEST_CASE(Run, CLDeconvolutionLayerFixture4x4<half>, framework::DatasetMode::ALL, combine(data4x4, framework::dataset::make("DataType", DataType::F16)))
201{
202 // Validate output
203 validate(CLAccessor(_target), _reference, tolerance_f16, tolerance_num);
204}
205TEST_SUITE_END()
206
207TEST_SUITE(W3x3)
208FIXTURE_DATA_TEST_CASE(Run, CLDeconvolutionLayerFixture3x3<half>, framework::DatasetMode::ALL, combine(data3x3, framework::dataset::make("DataType", DataType::F16)))
209{
210 // Validate output
211 validate(CLAccessor(_target), _reference, tolerance_f16, tolerance_num);
212}
213TEST_SUITE_END()
214
215TEST_SUITE(W1x1)
216FIXTURE_DATA_TEST_CASE(Run, CLDeconvolutionLayerFixture1x1<half>, framework::DatasetMode::ALL, combine(data1x1, framework::dataset::make("DataType", DataType::F16)))
217{
218 // Validate output
219 validate(CLAccessor(_target), _reference, tolerance_f16, tolerance_num);
220}
221TEST_SUITE_END()
222
223TEST_SUITE_END()
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000224TEST_SUITE_END()
225
Michele Di Giorgio9fef38a2018-07-06 18:06:58 +0100226template <typename T>
227using CLDeconvolutionLayerQuantizedFixture4x4 = DeconvolutionValidationQuantizedFixture<CLTensor, CLAccessor, CLDeconvolutionLayer, T, 4, 4>;
228
229template <typename T>
230using CLDeconvolutionLayerQuantizedFixture3x3 = DeconvolutionValidationQuantizedFixture<CLTensor, CLAccessor, CLDeconvolutionLayer, T, 3, 3>;
231
232template <typename T>
233using CLDeconvolutionLayerQuantizedFixture1x1 = DeconvolutionValidationQuantizedFixture<CLTensor, CLAccessor, CLDeconvolutionLayer, T, 1, 1>;
234
235TEST_SUITE(Quantized)
236TEST_SUITE(QASYMM8)
237
238TEST_SUITE(W4x4)
239FIXTURE_DATA_TEST_CASE(Run, CLDeconvolutionLayerQuantizedFixture4x4<uint8_t>, framework::DatasetMode::ALL, combine(combine(data4x4, framework::dataset::make("DataType", DataType::QASYMM8)),
Michele Di Giorgioc1961b52018-08-16 11:47:45 +0100240 framework::dataset::make("QuantizationInfo", QuantizationInfo(2.f / 255.f, 0))))
Michele Di Giorgio9fef38a2018-07-06 18:06:58 +0100241{
242 // Validate output
243 validate(CLAccessor(_target), _reference, tolerance_qasymm8, tolerance_num);
244}
245TEST_SUITE_END()
246
247TEST_SUITE(W3x3)
248FIXTURE_DATA_TEST_CASE(Run, CLDeconvolutionLayerQuantizedFixture3x3<uint8_t>, framework::DatasetMode::ALL, combine(combine(data3x3, framework::dataset::make("DataType", DataType::QASYMM8)),
Michele Di Giorgioc1961b52018-08-16 11:47:45 +0100249 framework::dataset::make("QuantizationInfo", QuantizationInfo(2.f / 255.f, 0))))
Michele Di Giorgio9fef38a2018-07-06 18:06:58 +0100250{
251 // Validate output
252 validate(CLAccessor(_target), _reference, tolerance_qasymm8, tolerance_num);
253}
254TEST_SUITE_END()
255
256TEST_SUITE(W1x1)
257FIXTURE_DATA_TEST_CASE(Run, CLDeconvolutionLayerQuantizedFixture1x1<uint8_t>, framework::DatasetMode::ALL, combine(combine(data1x1, framework::dataset::make("DataType", DataType::QASYMM8)),
Michele Di Giorgioc1961b52018-08-16 11:47:45 +0100258 framework::dataset::make("QuantizationInfo", QuantizationInfo(2.f / 255.f, 0))))
Michele Di Giorgio9fef38a2018-07-06 18:06:58 +0100259{
260 // Validate output
261 validate(CLAccessor(_target), _reference, tolerance_qasymm8, tolerance_num);
262}
263TEST_SUITE_END()
264
265TEST_SUITE_END()
266TEST_SUITE_END()
267
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000268TEST_SUITE_END()
269TEST_SUITE_END()
270} // namespace validation
271} // namespace test
272} // namespace arm_compute