blob: 4b747d64f754885a6e94a121ae410ce295b636bb [file] [log] [blame]
Moritz Pflanzerb3d25792017-07-26 11:49:37 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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/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/CLDirectConvolutionLayer.h"
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010028#include "tests/CL/CLAccessor.h"
29#include "tests/PaddingCalculator.h"
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +000030#include "tests/datasets/DirectConvolutionLayerDataset.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010031#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/DirectConvolutionLayerFixture.h"
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010037
38namespace arm_compute
39{
40namespace test
41{
42namespace validation
43{
44namespace
45{
steniu013e05e4e2017-08-25 17:18:01 +010046// COMPMID-517 Invesitgate the mismatch to see whether it is a real bug
Georgios Pinitas583137c2017-08-31 18:12:42 +010047RelativeTolerance<half> tolerance_fp16(half(0.2)); /**< Tolerance for floating point tests */
48RelativeTolerance<float> tolerance_fp32(0.02f); /**< Tolerance for floating point tests */
49constexpr float tolerance_num = 0.07f; /**< Tolerance number */
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010050
Chunosovd621bca2017-11-03 17:33:15 +070051constexpr AbsoluteTolerance<int8_t> tolerance_qs8(0); /**< Tolerance for fixed point tests */
52constexpr AbsoluteTolerance<int16_t> tolerance_qs16(0); /**< Tolerance for fixed point tests */
53constexpr AbsoluteTolerance<uint8_t> tolerance_qasymm8(1); /**< Tolerance for quantized tests */
Michalis Spyroudef665a2017-08-14 11:26:37 +010054
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010055/** Direct convolution data set. */
56const auto data = combine(datasets::SmallDirectConvolutionShapes(),
57 combine(framework::dataset::make("StrideX", 1, 3),
58 combine(framework::dataset::make("StrideY", 1, 3),
59 combine(concat(combine(framework::dataset::make("PadX", 0),
60 combine(framework::dataset::make("PadY", 0),
61 framework::dataset::make("KernelSize", 1))),
62 combine(framework::dataset::make("PadX", 0, 2),
63 combine(framework::dataset::make("PadY", 0, 2),
steniu01db006682017-08-09 16:26:22 +010064 framework::dataset::make("KernelSize", { 3, 5 })))),
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010065 framework::dataset::make("NumKernels", { 1, 4, 8, 16 })))));
Chunosovd621bca2017-11-03 17:33:15 +070066const auto data_fixed_point = combine(datasets::SmallDirectConvolutionShapes(),
67 combine(framework::dataset::make("StrideX", 1, 3),
68 combine(framework::dataset::make("StrideY", 1, 3),
69 combine(concat(combine(framework::dataset::make("PadX", 0),
70 combine(framework::dataset::make("PadY", 0),
71 framework::dataset::make("KernelSize", 1))),
72 combine(framework::dataset::make("PadX", 0, 2),
73 combine(framework::dataset::make("PadY", 0, 2),
74 framework::dataset::make("KernelSize", { 3 })))),
75 framework::dataset::make("NumKernels", { 1, 4, 8, 16 })))));
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010076} // namespace
77
78TEST_SUITE(CL)
79TEST_SUITE(DirectConvolutionLayer)
80
81//TODO(COMPMID-415): Configuration tests?
82
Georgios Pinitas30902ed2017-11-14 15:32:57 +000083// *INDENT-OFF*
84// clang-format off
85DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(zip(
86 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Mismatching data type input/weights
87 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Mismatching input feature maps
88 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Unsupported kernel width
89 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Non-rectangular weights dimensions
90 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Invalid weights dimensions
91 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Invalid stride
92 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Invalid biases size
93 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Invalid biases dimensions
94 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Invalid output size
95 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0),
96 }),
97 framework::dataset::make("WeightsInfo",{ TensorInfo(TensorShape(3U, 3U, 2U, 4U), 1, DataType::F16, 0),
98 TensorInfo(TensorShape(3U, 3U, 3U, 4U), 1, DataType::F32, 0),
99 TensorInfo(TensorShape(9U, 9U, 2U, 4U), 1, DataType::F32, 0),
100 TensorInfo(TensorShape(5U, 3U, 2U, 4U), 1, DataType::F32, 0),
101 TensorInfo(TensorShape(3U, 3U, 2U, 4U, 3U), 1, DataType::F32, 0),
102 TensorInfo(TensorShape(3U, 3U, 2U, 4U), 1, DataType::F32, 0),
103 TensorInfo(TensorShape(3U, 3U, 2U, 4U), 1, DataType::F32, 0),
104 TensorInfo(TensorShape(3U, 3U, 2U, 4U), 1, DataType::F32, 0),
105 TensorInfo(TensorShape(3U, 3U, 2U, 4U), 1, DataType::F32, 0),
106 TensorInfo(TensorShape(3U, 3U, 2U, 4U), 1, DataType::F32, 0),
107 })),
108 framework::dataset::make("BiasesInfo",{ TensorInfo(TensorShape(4U), 1, DataType::F32, 0),
109 TensorInfo(TensorShape(4U), 1, DataType::F32, 0),
110 TensorInfo(TensorShape(4U), 1, DataType::F32, 0),
111 TensorInfo(TensorShape(4U), 1, DataType::F32, 0),
112 TensorInfo(TensorShape(4U), 1, DataType::F32, 0),
113 TensorInfo(TensorShape(4U), 1, DataType::F32, 0),
114 TensorInfo(TensorShape(3U), 1, DataType::F32, 0),
115 TensorInfo(TensorShape(4U, 2U), 1, DataType::F32, 0),
116 TensorInfo(TensorShape(4U), 1, DataType::F32, 0),
117 TensorInfo(TensorShape(4U), 1, DataType::F32, 0),
118 })),
119 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(25U, 11U, 4U), 1, DataType::F32, 0),
120 TensorInfo(TensorShape(25U, 11U, 4U), 1, DataType::F32, 0),
121 TensorInfo(TensorShape(25U, 11U, 4U), 1, DataType::F32, 0),
122 TensorInfo(TensorShape(25U, 11U, 4U), 1, DataType::F32, 0),
123 TensorInfo(TensorShape(25U, 11U, 4U), 1, DataType::F32, 0),
124 TensorInfo(TensorShape(25U, 11U, 4U), 1, DataType::F32, 0),
125 TensorInfo(TensorShape(25U, 11U, 4U), 1, DataType::F32, 0),
126 TensorInfo(TensorShape(25U, 11U, 4U), 1, DataType::F32, 0),
127 TensorInfo(TensorShape(26U, 11U, 4U), 1, DataType::F32, 0),
128 TensorInfo(TensorShape(25U, 11U, 4U), 1, DataType::F32, 0),
129 })),
130 framework::dataset::make("ConvInfo", { PadStrideInfo(1, 1, 0, 0),
131 PadStrideInfo(1, 1, 0, 0),
132 PadStrideInfo(1, 1, 0, 0),
133 PadStrideInfo(1, 1, 0, 0),
134 PadStrideInfo(1, 1, 0, 0),
135 PadStrideInfo(3, 3, 0, 0),
136 PadStrideInfo(1, 1, 0, 0),
137 PadStrideInfo(1, 1, 0, 0),
138 PadStrideInfo(1, 1, 0, 0),
139 PadStrideInfo(1, 1, 0, 0),
140 })),
141 framework::dataset::make("Expected", { true, true, true, true, true, true, true, true, true, false })),
142 input_info, weights_info, biases_info, output_info, conv_info, expected)
143{
144 bool is_error = bool(CLDirectConvolutionLayer::validate(&input_info, &weights_info, &biases_info, &output_info, conv_info));
145 ARM_COMPUTE_EXPECT(is_error == expected, framework::LogLevel::ERRORS);
146}
147// clang-format on
148// *INDENT-ON*
149
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100150template <typename T>
151using CLDirectConvolutionLayerFixture = DirectConvolutionValidationFixture<CLTensor, CLAccessor, CLDirectConvolutionLayer, T>;
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +0000152template <typename T>
153using CLDirectConvolutionValidationWithTensorShapesFixture = DirectConvolutionValidationWithTensorShapesFixture<CLTensor, CLAccessor, CLDirectConvolutionLayer, T>;
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100154
155TEST_SUITE(Float)
156TEST_SUITE(FP16)
Georgios Pinitas583137c2017-08-31 18:12:42 +0100157FIXTURE_DATA_TEST_CASE(Run, CLDirectConvolutionLayerFixture<half>, framework::DatasetMode::ALL, combine(data, framework::dataset::make("DataType", DataType::F16)))
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100158{
159 // Validate output
steniu013e05e4e2017-08-25 17:18:01 +0100160 validate(CLAccessor(_target), _reference, tolerance_fp16, tolerance_num);
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100161}
162TEST_SUITE_END()
163
164TEST_SUITE(FP32)
165FIXTURE_DATA_TEST_CASE(Run, CLDirectConvolutionLayerFixture<float>, framework::DatasetMode::ALL, combine(data, framework::dataset::make("DataType", DataType::F32)))
166{
167 // Validate output
168 validate(CLAccessor(_target), _reference, tolerance_fp32);
169}
170TEST_SUITE_END()
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +0000171
172TEST_SUITE(FP32_CustomDataset)
173FIXTURE_DATA_TEST_CASE(Run, CLDirectConvolutionValidationWithTensorShapesFixture<float>, framework::DatasetMode::ALL, combine(datasets::DirectConvolutionLayerDataset(),
174 framework::dataset::make("DataType", DataType::F32)))
175{
176 // Validate output
177 validate(CLAccessor(_target), _reference, tolerance_fp32);
178}
179TEST_SUITE_END()
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100180TEST_SUITE_END()
181
Michalis Spyroudef665a2017-08-14 11:26:37 +0100182template <typename T>
183using CLDirectConvolutionLayerFixedPointFixture = DirectConvolutionValidationFixedPointFixture<CLTensor, CLAccessor, CLDirectConvolutionLayer, T>;
184
Chunosovd621bca2017-11-03 17:33:15 +0700185TEST_SUITE(FixedPoint)
Michalis Spyroudef665a2017-08-14 11:26:37 +0100186TEST_SUITE(QS8)
Chunosovd621bca2017-11-03 17:33:15 +0700187FIXTURE_DATA_TEST_CASE(Run, CLDirectConvolutionLayerFixedPointFixture<int8_t>, framework::DatasetMode::ALL, combine(combine(data_fixed_point, framework::dataset::make("DataType", DataType::QS8)),
Michalis Spyroudef665a2017-08-14 11:26:37 +0100188 framework::dataset::make("FractionalBits", 2, 7)))
189{
190 // Validate output
191 validate(CLAccessor(_target), _reference, tolerance_qs8);
192}
193TEST_SUITE_END()
194
195TEST_SUITE(QS16)
Chunosovd621bca2017-11-03 17:33:15 +0700196FIXTURE_DATA_TEST_CASE(Run, CLDirectConvolutionLayerFixedPointFixture<int16_t>, framework::DatasetMode::ALL, combine(combine(data_fixed_point, framework::dataset::make("DataType", DataType::QS16)),
Michalis Spyroudef665a2017-08-14 11:26:37 +0100197 framework::dataset::make("FractionalBits", 2, 15)))
198{
199 // Validate output
200 validate(CLAccessor(_target), _reference, tolerance_qs16);
201}
202TEST_SUITE_END()
203TEST_SUITE_END()
204
Chunosovd621bca2017-11-03 17:33:15 +0700205template <typename T>
206using CLDirectConvolutionLayerQuantizedFixture = DirectConvolutionValidationQuantizedFixture<CLTensor, CLAccessor, CLDirectConvolutionLayer, T>;
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +0000207template <typename T>
208using CLDirectConvolutionValidationWithTensorShapesQuantizedFixture = DirectConvolutionValidationWithTensorShapesQuantizedFixture<CLTensor, CLAccessor, CLDirectConvolutionLayer, T>;
Chunosovd621bca2017-11-03 17:33:15 +0700209
210TEST_SUITE(Quantized)
211TEST_SUITE(QASYMM8)
212FIXTURE_DATA_TEST_CASE(Run, CLDirectConvolutionLayerQuantizedFixture<uint8_t>, framework::DatasetMode::ALL, combine(combine(data, framework::dataset::make("DataType", DataType::QASYMM8)),
Georgios Pinitas6fdfaa82017-11-29 14:27:24 +0000213 framework::dataset::make("QuantizationInfo", { QuantizationInfo(2.f / 255, 10) })))
Chunosovd621bca2017-11-03 17:33:15 +0700214{
215 // Validate output
216 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
217}
218TEST_SUITE_END()
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +0000219
220TEST_SUITE(QASYMM8_CustomDataset)
221FIXTURE_DATA_TEST_CASE(Run, CLDirectConvolutionValidationWithTensorShapesQuantizedFixture<uint8_t>, framework::DatasetMode::ALL, combine(combine(datasets::DirectConvolutionLayerDataset(),
222 framework::dataset::make("DataType", DataType::QASYMM8)),
223 framework::dataset::make("QuantizationInfo", { QuantizationInfo(2.f / 255, 127) })))
224{
225 // Validate output
226 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
227}
228TEST_SUITE_END()
Chunosovd621bca2017-11-03 17:33:15 +0700229TEST_SUITE_END()
230
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100231TEST_SUITE_END()
232TEST_SUITE_END()
233} // namespace validation
234} // namespace test
Chunosov5124be52017-11-22 20:42:13 +0700235} // namespace arm_compute