blob: ff7c24f024796068d02be3e4dfd5b4148483b860 [file] [log] [blame]
Georgios Pinitasdc460f12017-08-24 19:02:44 +01001/*
Michalis Spyrou80943252019-01-10 17:19:50 +00002 * Copyright (c) 2017-2019 ARM Limited.
Georgios Pinitasdc460f12017-08-24 19:02:44 +01003 *
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"
Georgios Pinitas15997872018-02-19 13:58:22 +000030#include "tests/datasets/PoolingLayerDataset.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010031#include "tests/datasets/PoolingTypesDataset.h"
32#include "tests/datasets/ShapeDatasets.h"
33#include "tests/framework/Asserts.h"
34#include "tests/framework/Macros.h"
35#include "tests/framework/datasets/Datasets.h"
36#include "tests/validation/Validation.h"
37#include "tests/validation/fixtures/PoolingLayerFixture.h"
Georgios Pinitasdc460f12017-08-24 19:02:44 +010038
39namespace arm_compute
40{
41namespace test
42{
43namespace validation
44{
45namespace
46{
Michalis Spyrou064add62018-11-01 18:14:27 +000047/** Input data sets for floating-point data types */
Michalis Spyrou5ce99a22019-01-25 14:17:49 +000048const auto PoolingLayerDatasetFP = combine(combine(combine(datasets::PoolingTypes(), framework::dataset::make("PoolingSize", { Size2D(2, 2), Size2D(3, 3), Size2D(5, 7) })),
Georgios Pinitasadaae7e2017-10-30 15:56:32 +000049 framework::dataset::make("PadStride", { PadStrideInfo(1, 1, 0, 0), PadStrideInfo(2, 1, 0, 0), PadStrideInfo(1, 2, 1, 1), PadStrideInfo(2, 2, 1, 0) })),
50 framework::dataset::make("ExcludePadding", { true, false }));
Georgios Pinitasdc460f12017-08-24 19:02:44 +010051
Michalis Spyrou80943252019-01-10 17:19:50 +000052const auto PoolingLayerDatasetFPSmall = combine(combine(combine(datasets::PoolingTypes(), framework::dataset::make("PoolingSize", { Size2D(2, 2), Size2D(3, 3) })),
53 framework::dataset::make("PadStride", { PadStrideInfo(1, 1, 0, 0), PadStrideInfo(2, 1, 0, 0) })),
Michalis Spyrou064add62018-11-01 18:14:27 +000054 framework::dataset::make("ExcludePadding", { true, false }));
55
56/** Input data sets for asymmetric data type */
57const auto PoolingLayerDatasetQASYMM8 = combine(concat(combine(combine(framework::dataset::make("PoolingType",
58{
59 PoolingType::MAX, PoolingType::AVG,
60}),
Michalis Spyrou5ce99a22019-01-25 14:17:49 +000061framework::dataset::make("PoolingSize", { Size2D(2, 2), Size2D(3, 3) })),
62framework::dataset::make("PadStride", { PadStrideInfo(1, 1, 0, 0), PadStrideInfo(1, 2, 1, 1), PadStrideInfo(2, 2, 1, 0) })),
63combine(combine(framework::dataset::make("PoolingType", { PoolingType::AVG }), framework::dataset::make("PoolingSize", { Size2D(5, 7) })), framework::dataset::make("PadStride", { PadStrideInfo(2, 1, 0, 0) }))),
Michalis Spyrou064add62018-11-01 18:14:27 +000064framework::dataset::make("ExcludePadding", { true }));
65
66const auto PoolingLayerDatasetQASYMM8Small = combine(combine(combine(framework::dataset::make("PoolingType",
67{
68 PoolingType::MAX, PoolingType::AVG,
69}),
Michalis Spyrou80943252019-01-10 17:19:50 +000070framework::dataset::make("PoolingSize", { Size2D(2, 2), Size2D(5, 7) })),
71framework::dataset::make("PadStride", { PadStrideInfo(1, 2, 1, 1) })),
Michalis Spyrou064add62018-11-01 18:14:27 +000072framework::dataset::make("ExcludePadding", { true }));
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000073
74constexpr AbsoluteTolerance<float> tolerance_f32(0.001f); /**< Tolerance value for comparing reference's output against implementation's output for 32-bit floating-point type */
75constexpr AbsoluteTolerance<float> tolerance_f16(0.01f); /**< Tolerance value for comparing reference's output against implementation's output for 16-bit floating-point type */
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000076constexpr AbsoluteTolerance<uint8_t> tolerance_qasymm8(1); /**< Tolerance value for comparing reference's output against implementation's output for 8-bit asymmetric type */
Pablo Telloa52e4cf2019-04-01 14:55:18 +010077const auto pool_data_layout_dataset = framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC });
78
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +010079const auto pool_fp_mixed_precision_dataset = framework::dataset::make("FpMixedPrecision", { true, false });
80
Georgios Pinitasdc460f12017-08-24 19:02:44 +010081} // namespace
82
83TEST_SUITE(CL)
84TEST_SUITE(PoolingLayer)
85
Georgios Pinitas3faea252017-10-30 14:13:50 +000086// *INDENT-OFF*
87// clang-format off
88DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010089 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Mismatching data type
90 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Window shrink
91 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Invalid pad/size combination
92 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Invalid pad/size combination
93 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::QASYMM8), // Invalid parameters
94 TensorInfo(TensorShape(15U, 13U, 5U), 1, DataType::F32), // Non-rectangular Global Pooling
95 TensorInfo(TensorShape(13U, 13U, 5U), 1, DataType::F32), // Invalid output Global Pooling
96 TensorInfo(TensorShape(13U, 13U, 5U), 1, DataType::F32),
Georgios Pinitas3faea252017-10-30 14:13:50 +000097 }),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010098 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(25U, 11U, 2U), 1, DataType::F16),
99 TensorInfo(TensorShape(25U, 11U, 2U), 1, DataType::F32),
100 TensorInfo(TensorShape(30U, 11U, 2U), 1, DataType::F32),
101 TensorInfo(TensorShape(25U, 16U, 2U), 1, DataType::F32),
102 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::QASYMM8),
103 TensorInfo(TensorShape(1U, 1U, 5U), 1, DataType::F32),
104 TensorInfo(TensorShape(2U, 2U, 5U), 1, DataType::F32),
105 TensorInfo(TensorShape(1U, 1U, 5U), 1, DataType::F32),
Georgios Pinitas3faea252017-10-30 14:13:50 +0000106 })),
107 framework::dataset::make("PoolInfo", { PoolingLayerInfo(PoolingType::AVG, 3, PadStrideInfo(1, 1, 0, 0)),
108 PoolingLayerInfo(PoolingType::AVG, 3, PadStrideInfo(1, 1, 0, 0)),
Georgios Pinitas3faea252017-10-30 14:13:50 +0000109 PoolingLayerInfo(PoolingType::AVG, 2, PadStrideInfo(1, 1, 2, 0)),
110 PoolingLayerInfo(PoolingType::AVG, 2, PadStrideInfo(1, 1, 0, 2)),
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000111 PoolingLayerInfo(PoolingType::L2, 3, PadStrideInfo(1, 1, 0, 0)),
Georgios Pinitas4c2dd542017-11-13 12:58:41 +0000112 PoolingLayerInfo(PoolingType::AVG),
113 PoolingLayerInfo(PoolingType::MAX),
114 PoolingLayerInfo(PoolingType::AVG),
Georgios Pinitas3faea252017-10-30 14:13:50 +0000115 })),
Vidhya Sudhan Loganathan0fc25452018-06-18 14:40:56 +0100116 framework::dataset::make("Expected", { false, false, false, false, false, true, false, true })),
Georgios Pinitas3faea252017-10-30 14:13:50 +0000117 input_info, output_info, pool_info, expected)
118{
Giorgio Arena9f26b3e2017-11-28 14:35:00 +0000119 ARM_COMPUTE_EXPECT(bool(CLPoolingLayer::validate(&input_info.clone()->set_is_resizable(false), &output_info.clone()->set_is_resizable(false), pool_info)) == expected, framework::LogLevel::ERRORS);
Georgios Pinitas3faea252017-10-30 14:13:50 +0000120}
121// clang-format on
122// *INDENT-ON*
123
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100124template <typename T>
125using CLPoolingLayerFixture = PoolingLayerValidationFixture<CLTensor, CLAccessor, CLPoolingLayer, T>;
126
Georgios Pinitas15997872018-02-19 13:58:22 +0000127template <typename T>
128using CLSpecialPoolingLayerFixture = SpecialPoolingLayerValidationFixture<CLTensor, CLAccessor, CLPoolingLayer, T>;
129
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100130template <typename T>
131using CLMixedPrecesionPoolingLayerFixture = PoolingLayerValidationMixedPrecisionFixture<CLTensor, CLAccessor, CLPoolingLayer, T>;
132
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100133TEST_SUITE(Float)
134TEST_SUITE(FP32)
Georgios Pinitas15997872018-02-19 13:58:22 +0000135FIXTURE_DATA_TEST_CASE(RunSpecial, CLSpecialPoolingLayerFixture<float>, framework::DatasetMode::ALL, datasets::PoolingLayerDatasetSpecial() * framework::dataset::make("DataType", DataType::F32))
Diego Lopez Recas61ef5bf2017-12-11 12:36:55 +0000136{
137 // Validate output
138 validate(CLAccessor(_target), _reference, tolerance_f32);
139}
Michalis Spyrou064add62018-11-01 18:14:27 +0000140FIXTURE_DATA_TEST_CASE(RunSmall, CLPoolingLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallShapes(), combine(PoolingLayerDatasetFPSmall,
141 framework::dataset::make("DataType",
142 DataType::F32))),
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100143 pool_data_layout_dataset))
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100144{
145 // Validate output
146 validate(CLAccessor(_target), _reference, tolerance_f32);
147}
Michalis Spyrou57dac842018-03-01 16:03:50 +0000148FIXTURE_DATA_TEST_CASE(RunLarge, CLPoolingLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeShapes(), combine(PoolingLayerDatasetFP,
149 framework::dataset::make("DataType",
150 DataType::F32))),
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100151 pool_data_layout_dataset))
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100152{
153 // Validate output
154 validate(CLAccessor(_target), _reference, tolerance_f32);
155}
Michalis Spyrou57dac842018-03-01 16:03:50 +0000156TEST_SUITE_END() // FP32
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100157
158TEST_SUITE(FP16)
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100159FIXTURE_DATA_TEST_CASE(RunSmall, CLMixedPrecesionPoolingLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(datasets::SmallShapes(), combine(PoolingLayerDatasetFPSmall,
160 framework::dataset::make("DataType", DataType::F16))),
161 pool_data_layout_dataset),
162 pool_fp_mixed_precision_dataset))
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100163{
164 // Validate output
165 validate(CLAccessor(_target), _reference, tolerance_f16);
166}
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100167FIXTURE_DATA_TEST_CASE(RunLarge, CLMixedPrecesionPoolingLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::LargeShapes(), combine(PoolingLayerDatasetFP,
168 framework::dataset::make("DataType", DataType::F16))),
169 pool_data_layout_dataset),
170 pool_fp_mixed_precision_dataset))
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100171{
172 // Validate output
173 validate(CLAccessor(_target), _reference, tolerance_f16);
174}
Michalis Spyrou57dac842018-03-01 16:03:50 +0000175TEST_SUITE_END() // FP16
176TEST_SUITE_END() // Float
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100177
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000178TEST_SUITE(Quantized)
179
180template <typename T>
181using CLPoolingLayerQuantizedFixture = PoolingLayerValidationQuantizedFixture<CLTensor, CLAccessor, CLPoolingLayer, T>;
182
183TEST_SUITE(QASYMM8)
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100184FIXTURE_DATA_TEST_CASE(RunSmall, CLPoolingLayerQuantizedFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallShapes(), combine(PoolingLayerDatasetQASYMM8Small,
Michalis Spyrou064add62018-11-01 18:14:27 +0000185 framework::dataset::make("DataType", DataType::QASYMM8))),
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100186 pool_data_layout_dataset))
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000187{
188 // Validate output
189 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
190}
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100191FIXTURE_DATA_TEST_CASE(RunLarge, CLPoolingLayerQuantizedFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeShapes(), combine(PoolingLayerDatasetQASYMM8,
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000192 framework::dataset::make("DataType", DataType::QASYMM8))),
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100193 pool_data_layout_dataset))
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000194{
195 // Validate output
196 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
197}
Michalis Spyrou57dac842018-03-01 16:03:50 +0000198TEST_SUITE_END() // QASYMM8
199TEST_SUITE_END() // Quantized
Michalis Spyrou57dac842018-03-01 16:03:50 +0000200TEST_SUITE_END() // PoolingLayer
201TEST_SUITE_END() // CL
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100202} // namespace validation
203} // namespace test
204} // namespace arm_compute