blob: c7c3b4192ee1c41e6158c9cdce51b3740b755c70 [file] [log] [blame]
Georgios Pinitasdc460f12017-08-24 19:02:44 +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/CLPoolingLayer.h"
Georgios Pinitasdc460f12017-08-24 19:02:44 +010028#include "tests/CL/CLAccessor.h"
29#include "tests/PaddingCalculator.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010030#include "tests/datasets/PoolingTypesDataset.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/PoolingLayerFixture.h"
Georgios Pinitasdc460f12017-08-24 19:02:44 +010037
38namespace arm_compute
39{
40namespace test
41{
42namespace validation
43{
44namespace
45{
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000046/** Input data set for floating-point data types */
Georgios Pinitasadaae7e2017-10-30 15:56:32 +000047const auto PoolingLayerDatasetFP = combine(combine(combine(datasets::PoolingTypes(), framework::dataset::make("PoolingSize", { 2, 3, 4, 7, 9 })),
48 framework::dataset::make("PadStride", { PadStrideInfo(1, 1, 0, 0), PadStrideInfo(2, 1, 0, 0), PadStrideInfo(1, 2, 1, 1), PadStrideInfo(2, 2, 1, 0) })),
49 framework::dataset::make("ExcludePadding", { true, false }));
Georgios Pinitasdc460f12017-08-24 19:02:44 +010050
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000051/** Input data set for fixed-point data types */
Georgios Pinitasadaae7e2017-10-30 15:56:32 +000052const auto PoolingLayerDatasetQS = combine(combine(combine(framework::dataset::make("PoolingType", { PoolingType::MAX, PoolingType::AVG }), framework::dataset::make("PoolingSize", { 2, 3 })),
53 framework::dataset::make("PadStride", { PadStrideInfo(1, 1, 0, 0), PadStrideInfo(2, 1, 0, 0), PadStrideInfo(1, 2, 1, 1), PadStrideInfo(2, 2, 1, 0) })),
54 framework::dataset::make("ExcludePadding", { true, false }));
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000055
56/** Input data set for asymmetric data type */
57const auto PoolingLayerDatasetQASYMM8 = combine(combine(combine(framework::dataset::make("PoolingType", { PoolingType::MAX, PoolingType::AVG }), framework::dataset::make("PoolingSize", { 2, 3 })),
58 framework::dataset::make("PadStride", { PadStrideInfo(1, 1, 0, 0), PadStrideInfo(2, 1, 0, 0), PadStrideInfo(1, 2, 1, 1), PadStrideInfo(2, 2, 1, 0) })),
59 framework::dataset::make("ExcludePadding", { true, false }));
60
61constexpr AbsoluteTolerance<float> tolerance_f32(0.001f); /**< Tolerance value for comparing reference's output against implementation's output for 32-bit floating-point type */
62constexpr AbsoluteTolerance<float> tolerance_f16(0.01f); /**< Tolerance value for comparing reference's output against implementation's output for 16-bit floating-point type */
63constexpr AbsoluteTolerance<float> tolerance_qs16(6); /**< Tolerance value for comparing reference's output against implementation's output for 16-bit fixed-point type */
64constexpr AbsoluteTolerance<float> tolerance_qs8(3); /**< Tolerance value for comparing reference's output against implementation's output for 8-bit fixed-point type */
65constexpr AbsoluteTolerance<uint8_t> tolerance_qasymm8(1); /**< Tolerance value for comparing reference's output against implementation's output for 8-bit asymmetric type */
Georgios Pinitasdc460f12017-08-24 19:02:44 +010066} // namespace
67
68TEST_SUITE(CL)
69TEST_SUITE(PoolingLayer)
70
Georgios Pinitas3faea252017-10-30 14:13:50 +000071// *INDENT-OFF*
72// clang-format off
73DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000074 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Mismatching data type
Georgios Pinitas3faea252017-10-30 14:13:50 +000075 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0),
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000076 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::QS8, 4), // Mismatching fixed point position
Georgios Pinitas3faea252017-10-30 14:13:50 +000077 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::QS16, 11),
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000078 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Invalid pad/size combination
79 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Invalid pad/size combination
80 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::QASYMM8, 0), // Invalid parameters
Georgios Pinitas4c2dd542017-11-13 12:58:41 +000081 TensorInfo(TensorShape(15U, 13U, 5U), 1, DataType::F32, 0), // Non-rectangular Global Pooling
82 TensorInfo(TensorShape(13U, 13U, 5U), 1, DataType::F32, 0), // Invalid output Global Pooling
83 TensorInfo(TensorShape(13U, 13U, 5U), 1, DataType::F32, 0),
Georgios Pinitas3faea252017-10-30 14:13:50 +000084 }),
85 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(25U, 11U, 2U), 1, DataType::F16, 0),
86 TensorInfo(TensorShape(25U, 11U, 2U), 1, DataType::F32, 0),
87 TensorInfo(TensorShape(25U, 11U, 2U), 1, DataType::QS8, 5),
88 TensorInfo(TensorShape(25U, 11U, 2U), 1, DataType::QS16, 11),
89 TensorInfo(TensorShape(30U, 11U, 2U), 1, DataType::F32, 0),
90 TensorInfo(TensorShape(25U, 16U, 2U), 1, DataType::F32, 0),
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000091 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::QASYMM8, 0),
Georgios Pinitas4c2dd542017-11-13 12:58:41 +000092 TensorInfo(TensorShape(1U, 1U, 5U), 1, DataType::F32, 0),
93 TensorInfo(TensorShape(2U, 2U, 5U), 1, DataType::F32, 0),
94 TensorInfo(TensorShape(1U, 1U, 5U), 1, DataType::F32, 0),
Georgios Pinitas3faea252017-10-30 14:13:50 +000095 })),
96 framework::dataset::make("PoolInfo", { PoolingLayerInfo(PoolingType::AVG, 3, PadStrideInfo(1, 1, 0, 0)),
97 PoolingLayerInfo(PoolingType::AVG, 3, PadStrideInfo(1, 1, 0, 0)),
98 PoolingLayerInfo(PoolingType::AVG, 3, PadStrideInfo(1, 1, 0, 0)),
99 PoolingLayerInfo(PoolingType::AVG, 3, PadStrideInfo(1, 1, 0, 0)),
100 PoolingLayerInfo(PoolingType::AVG, 2, PadStrideInfo(1, 1, 2, 0)),
101 PoolingLayerInfo(PoolingType::AVG, 2, PadStrideInfo(1, 1, 0, 2)),
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000102 PoolingLayerInfo(PoolingType::L2, 3, PadStrideInfo(1, 1, 0, 0)),
Georgios Pinitas4c2dd542017-11-13 12:58:41 +0000103 PoolingLayerInfo(PoolingType::AVG),
104 PoolingLayerInfo(PoolingType::MAX),
105 PoolingLayerInfo(PoolingType::AVG),
Georgios Pinitas3faea252017-10-30 14:13:50 +0000106 })),
Georgios Pinitas4c2dd542017-11-13 12:58:41 +0000107 framework::dataset::make("Expected", { true, false, true, false, true, true, true, true, true, false })),
Georgios Pinitas3faea252017-10-30 14:13:50 +0000108 input_info, output_info, pool_info, expected)
109{
110 ARM_COMPUTE_EXPECT(bool(CLPoolingLayer::validate(&input_info, &output_info, pool_info)) == expected, framework::LogLevel::ERRORS);
111}
112// clang-format on
113// *INDENT-ON*
114
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100115template <typename T>
116using CLPoolingLayerFixture = PoolingLayerValidationFixture<CLTensor, CLAccessor, CLPoolingLayer, T>;
117
118TEST_SUITE(Float)
119TEST_SUITE(FP32)
120FIXTURE_DATA_TEST_CASE(RunSmall, CLPoolingLayerFixture<float>, framework::DatasetMode::ALL, combine(datasets::SmallShapes(), combine(PoolingLayerDatasetFP, framework::dataset::make("DataType",
121 DataType::F32))))
122{
123 // Validate output
124 validate(CLAccessor(_target), _reference, tolerance_f32);
125}
126FIXTURE_DATA_TEST_CASE(RunLarge, CLPoolingLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(datasets::LargeShapes(), combine(PoolingLayerDatasetFP, framework::dataset::make("DataType",
127 DataType::F32))))
128{
129 // Validate output
130 validate(CLAccessor(_target), _reference, tolerance_f32);
131}
132TEST_SUITE_END()
133
134TEST_SUITE(FP16)
Georgios Pinitas583137c2017-08-31 18:12:42 +0100135FIXTURE_DATA_TEST_CASE(RunSmall, CLPoolingLayerFixture<half>, framework::DatasetMode::ALL, combine(datasets::SmallShapes(), combine(PoolingLayerDatasetFP,
136 framework::dataset::make("DataType", DataType::F16))))
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100137{
138 // Validate output
139 validate(CLAccessor(_target), _reference, tolerance_f16);
140}
Georgios Pinitas583137c2017-08-31 18:12:42 +0100141FIXTURE_DATA_TEST_CASE(RunLarge, CLPoolingLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(datasets::LargeShapes(), combine(PoolingLayerDatasetFP,
142 framework::dataset::make("DataType", DataType::F16))))
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100143{
144 // Validate output
145 validate(CLAccessor(_target), _reference, tolerance_f16);
146}
147TEST_SUITE_END()
148TEST_SUITE_END()
149
150template <typename T>
151using CLPoolingLayerFixedPointFixture = PoolingLayerValidationFixedPointFixture<CLTensor, CLAccessor, CLPoolingLayer, T>;
152
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000153TEST_SUITE(FixedPoint)
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100154TEST_SUITE(QS8)
155FIXTURE_DATA_TEST_CASE(RunSmall, CLPoolingLayerFixedPointFixture<int8_t>, framework::DatasetMode::ALL, combine(combine(datasets::SmallShapes(), combine(PoolingLayerDatasetQS,
156 framework::dataset::make("DataType", DataType::QS8))),
157 framework::dataset::make("FractionalBits", 1, 4)))
158{
159 // Validate output
160 validate(CLAccessor(_target), _reference, tolerance_qs8);
161}
162FIXTURE_DATA_TEST_CASE(RunLarge, CLPoolingLayerFixedPointFixture<int8_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeShapes(), combine(PoolingLayerDatasetQS,
163 framework::dataset::make("DataType", DataType::QS8))),
164 framework::dataset::make("FractionalBits", 1, 4)))
165{
166 // Validate output
167 validate(CLAccessor(_target), _reference, tolerance_qs8);
168}
169TEST_SUITE_END()
170
171TEST_SUITE(QS16)
172FIXTURE_DATA_TEST_CASE(RunSmall, CLPoolingLayerFixedPointFixture<int16_t>, framework::DatasetMode::ALL, combine(combine(datasets::SmallShapes(), combine(PoolingLayerDatasetQS,
173 framework::dataset::make("DataType", DataType::QS16))),
174 framework::dataset::make("FractionalBits", 1, 12)))
175{
176 // Validate output
177 validate(CLAccessor(_target), _reference, tolerance_qs16);
178}
179FIXTURE_DATA_TEST_CASE(RunLarge, CLPoolingLayerFixedPointFixture<int16_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeShapes(), combine(PoolingLayerDatasetQS,
180 framework::dataset::make("DataType", DataType::QS16))),
181 framework::dataset::make("FractionalBits", 1, 12)))
182{
183 // Validate output
184 validate(CLAccessor(_target), _reference, tolerance_qs16);
185}
186TEST_SUITE_END()
187TEST_SUITE_END()
188
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000189TEST_SUITE(Quantized)
190
191template <typename T>
192using CLPoolingLayerQuantizedFixture = PoolingLayerValidationQuantizedFixture<CLTensor, CLAccessor, CLPoolingLayer, T>;
193
194TEST_SUITE(QASYMM8)
195FIXTURE_DATA_TEST_CASE(RunSmall, CLPoolingLayerQuantizedFixture<uint8_t>, framework::DatasetMode::ALL, combine(combine(datasets::SmallShapes(), combine(PoolingLayerDatasetQASYMM8,
196 framework::dataset::make("DataType", DataType::QASYMM8))),
197 framework::dataset::make("QuantizationInfo", { QuantizationInfo(2.f / 255, 127),
198 QuantizationInfo(7.f / 255, 123)
199 })))
200{
201 // Validate output
202 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
203}
204FIXTURE_DATA_TEST_CASE(RunLarge, CLPoolingLayerQuantizedFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeShapes(), combine(PoolingLayerDatasetQASYMM8,
205 framework::dataset::make("DataType", DataType::QASYMM8))),
206 framework::dataset::make("QuantizationInfo", { QuantizationInfo(1.f / 255, 0) })))
207{
208 // Validate output
209 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
210}
211TEST_SUITE_END()
212TEST_SUITE_END()
213
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100214TEST_SUITE_END()
215TEST_SUITE_END()
216} // namespace validation
217} // namespace test
218} // namespace arm_compute