blob: 6e9edfbb5de1cf735d33da61c44261623307b611 [file] [log] [blame]
Georgios Pinitasdc460f12017-08-24 19:02:44 +01001/*
Giorgio Arena33b103b2021-01-08 10:37:15 +00002 * Copyright (c) 2017-2021 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#ifndef ARM_COMPUTE_TEST_POOLING_LAYER_FIXTURE
25#define ARM_COMPUTE_TEST_POOLING_LAYER_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
Pablo Telloa52e4cf2019-04-01 14:55:18 +010029#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Georgios Pinitasdc460f12017-08-24 19:02:44 +010030#include "arm_compute/runtime/Tensor.h"
Georgios Pinitasdc460f12017-08-24 19:02:44 +010031#include "tests/AssetsLibrary.h"
32#include "tests/Globals.h"
33#include "tests/IAccessor.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010034#include "tests/framework/Asserts.h"
35#include "tests/framework/Fixture.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000036#include "tests/validation/reference/PoolingLayer.h"
Georgios Pinitasdc460f12017-08-24 19:02:44 +010037#include <random>
Georgios Pinitasdc460f12017-08-24 19:02:44 +010038namespace arm_compute
39{
40namespace test
41{
42namespace validation
43{
44template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000045class PoolingLayerValidationGenericFixture : public framework::Fixture
Georgios Pinitasdc460f12017-08-24 19:02:44 +010046{
47public:
48 template <typename...>
Michele Di Giorgiod556d7b2020-10-27 10:56:31 +000049 void setup(TensorShape shape, PoolingLayerInfo pool_info, DataType data_type, DataLayout data_layout, bool indices = false,
Manuel Bottinica62c6f2021-03-23 11:50:34 +000050 QuantizationInfo input_qinfo = QuantizationInfo(), QuantizationInfo output_qinfo = QuantizationInfo(), bool mixed_layout = false)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010051 {
Manuel Bottinica62c6f2021-03-23 11:50:34 +000052 _mixed_layout = mixed_layout;
Giorgio Arena63825e82021-03-25 14:54:50 +000053 _pool_info = pool_info;
54 _target = compute_target(shape, pool_info, data_type, data_layout, input_qinfo, output_qinfo, indices);
55 _reference = compute_reference(shape, pool_info, data_type, data_layout, input_qinfo, output_qinfo, indices);
Georgios Pinitasdc460f12017-08-24 19:02:44 +010056 }
57
58protected:
Manuel Bottinica62c6f2021-03-23 11:50:34 +000059 void mix_layout(FunctionType &layer, TensorType &src, TensorType &dst)
60 {
61 const DataLayout data_layout = src.info()->data_layout();
62 // Test Multi DataLayout graph cases, when the data layout changes after configure
63 src.info()->set_data_layout(data_layout == DataLayout::NCHW ? DataLayout::NHWC : DataLayout::NCHW);
64 dst.info()->set_data_layout(data_layout == DataLayout::NCHW ? DataLayout::NHWC : DataLayout::NCHW);
65
66 // Compute Convolution function
67 layer.run();
68
69 // Reinstating original data layout for the test suite to properly check the values
70 src.info()->set_data_layout(data_layout);
71 dst.info()->set_data_layout(data_layout);
72 }
73
Georgios Pinitasdc460f12017-08-24 19:02:44 +010074 template <typename U>
75 void fill(U &&tensor)
76 {
Giorgio Arena4bdd1772020-12-17 16:47:07 +000077 if(tensor.data_type() == DataType::F32)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010078 {
Giorgio Arena4bdd1772020-12-17 16:47:07 +000079 std::uniform_real_distribution<float> distribution(-1.0f, 1.0f);
80 library->fill(tensor, distribution, 0);
81 }
82 else if(tensor.data_type() == DataType::F16)
83 {
Giorgio Arena33b103b2021-01-08 10:37:15 +000084 arm_compute::utils::uniform_real_distribution_16bit<half> distribution{ -1.0f, 1.0f };
Georgios Pinitasdc460f12017-08-24 19:02:44 +010085 library->fill(tensor, distribution, 0);
86 }
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010087 else // data type is quantized_asymmetric
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000088 {
89 library->fill_tensor_uniform(tensor, 0);
90 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +010091 }
92
Giorgio Arena563494c2018-04-30 17:29:41 +010093 TensorType compute_target(TensorShape shape, PoolingLayerInfo info,
morgolockcc1f6c92020-03-24 09:26:48 +000094 DataType data_type, DataLayout data_layout,
95 QuantizationInfo input_qinfo, QuantizationInfo output_qinfo,
96 bool indices)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010097 {
Giorgio Arena563494c2018-04-30 17:29:41 +010098 // Change shape in case of NHWC.
99 if(data_layout == DataLayout::NHWC)
100 {
101 permute(shape, PermutationVector(2U, 0U, 1U));
102 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100103 // Create tensors
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100104 TensorType src = create_tensor<TensorType>(shape, data_type, 1, input_qinfo, data_layout);
105 const TensorShape dst_shape = misc::shape_calculator::compute_pool_shape(*(src.info()), info);
106 TensorType dst = create_tensor<TensorType>(dst_shape, data_type, 1, output_qinfo, data_layout);
morgolocke383c352020-04-03 16:57:46 +0100107 _target_indices = create_tensor<TensorType>(dst_shape, DataType::U32, 1, output_qinfo, data_layout);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100108
109 // Create and configure function
110 FunctionType pool_layer;
morgolockcc1f6c92020-03-24 09:26:48 +0000111 pool_layer.configure(&src, &dst, info, (indices) ? &_target_indices : nullptr);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100112
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100113 ARM_COMPUTE_ASSERT(src.info()->is_resizable());
114 ARM_COMPUTE_ASSERT(dst.info()->is_resizable());
115 ARM_COMPUTE_ASSERT(_target_indices.info()->is_resizable());
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100116
Sang-Hoon Parkfe56edb2021-04-13 20:21:11 +0100117 add_padding_x({ &src, &dst, &_target_indices }, data_layout);
Giorgio Arena63825e82021-03-25 14:54:50 +0000118
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100119 // Allocate tensors
120 src.allocator()->allocate();
121 dst.allocator()->allocate();
morgolockcc1f6c92020-03-24 09:26:48 +0000122 _target_indices.allocator()->allocate();
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100123
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100124 ARM_COMPUTE_ASSERT(!src.info()->is_resizable());
125 ARM_COMPUTE_ASSERT(!dst.info()->is_resizable());
126 ARM_COMPUTE_ASSERT(!_target_indices.info()->is_resizable());
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100127
128 // Fill tensors
129 fill(AccessorType(src));
130
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000131 if(_mixed_layout)
132 {
133 mix_layout(pool_layer, src, dst);
134 }
135 else
136 {
137 // Compute function
138 pool_layer.run();
139 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100140 return dst;
141 }
142
morgolocke383c352020-04-03 16:57:46 +0100143 SimpleTensor<T> compute_reference(TensorShape shape, PoolingLayerInfo info, DataType data_type, DataLayout data_layout,
morgolockcc1f6c92020-03-24 09:26:48 +0000144 QuantizationInfo input_qinfo, QuantizationInfo output_qinfo, bool indices)
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100145 {
146 // Create reference
morgolocke383c352020-04-03 16:57:46 +0100147 SimpleTensor<T> src(shape, data_type, 1, input_qinfo);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100148 // Fill reference
149 fill(src);
morgolocke383c352020-04-03 16:57:46 +0100150 return reference::pooling_layer<T>(src, info, output_qinfo, indices ? &_ref_indices : nullptr, data_layout);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100151 }
152
morgolockcc1f6c92020-03-24 09:26:48 +0000153 TensorType _target{};
154 SimpleTensor<T> _reference{};
155 PoolingLayerInfo _pool_info{};
Giorgio Arena63825e82021-03-25 14:54:50 +0000156 bool _mixed_layout{ false };
morgolockcc1f6c92020-03-24 09:26:48 +0000157 TensorType _target_indices{};
158 SimpleTensor<uint32_t> _ref_indices{};
159};
160template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
161class PoolingLayerIndicesValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
162{
163public:
164 template <typename...>
165 void setup(TensorShape shape, PoolingType pool_type, Size2D pool_size, PadStrideInfo pad_stride_info, bool exclude_padding, DataType data_type, DataLayout data_layout)
166 {
167 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, pool_size, data_layout, pad_stride_info, exclude_padding),
168 data_type, data_layout, true);
169 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100170};
171
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000172template <typename TensorType, typename AccessorType, typename FunctionType, typename T, bool mixed_layout = false>
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000173class PoolingLayerValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100174{
175public:
176 template <typename...>
Michalis Spyrou57dac842018-03-01 16:03:50 +0000177 void setup(TensorShape shape, PoolingType pool_type, Size2D pool_size, PadStrideInfo pad_stride_info, bool exclude_padding, DataType data_type, DataLayout data_layout)
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100178 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000179 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, pool_size, data_layout, pad_stride_info, exclude_padding),
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000180 data_type, data_layout, false, mixed_layout);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100181 }
182};
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100183
184template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100185class PoolingLayerValidationMixedPrecisionFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
186{
187public:
188 template <typename...>
189 void setup(TensorShape shape, PoolingType pool_type, Size2D pool_size, PadStrideInfo pad_stride_info, bool exclude_padding, DataType data_type, DataLayout data_layout, bool fp_mixed_precision = false)
190 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000191 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, pool_size, data_layout, pad_stride_info, exclude_padding, fp_mixed_precision),
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100192 data_type, data_layout);
193 }
194};
195
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000196template <typename TensorType, typename AccessorType, typename FunctionType, typename T, bool mixed_layout = false>
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000197class PoolingLayerValidationQuantizedFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
198{
199public:
200 template <typename...>
Michele Di Giorgiod556d7b2020-10-27 10:56:31 +0000201 void setup(TensorShape shape, PoolingType pool_type, Size2D pool_size, PadStrideInfo pad_stride_info, bool exclude_padding, DataType data_type, DataLayout data_layout = DataLayout::NCHW,
202 QuantizationInfo input_qinfo = QuantizationInfo(), QuantizationInfo output_qinfo = QuantizationInfo())
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000203 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000204 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, pool_size, data_layout, pad_stride_info, exclude_padding),
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000205 data_type, data_layout, false, input_qinfo, output_qinfo, mixed_layout);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000206 }
207};
208
209template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Georgios Pinitas15997872018-02-19 13:58:22 +0000210class SpecialPoolingLayerValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
211{
212public:
213 template <typename...>
Giorgio Arena3c520c52018-05-01 11:47:24 +0100214 void setup(TensorShape src_shape, PoolingLayerInfo pool_info, DataType data_type)
Georgios Pinitas15997872018-02-19 13:58:22 +0000215 {
SiCongLicb869562021-12-22 15:37:20 +0000216 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(src_shape, pool_info, data_type, pool_info.data_layout);
Georgios Pinitas15997872018-02-19 13:58:22 +0000217 }
218};
219
220template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Georgios Pinitas4c2dd542017-11-13 12:58:41 +0000221class GlobalPoolingLayerValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100222{
223public:
224 template <typename...>
Michalis Spyrou57dac842018-03-01 16:03:50 +0000225 void setup(TensorShape shape, PoolingType pool_type, DataType data_type, DataLayout data_layout = DataLayout::NCHW)
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100226 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000227 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, data_layout), data_type, data_layout);
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100228 }
229};
Georgios Pinitas15997872018-02-19 13:58:22 +0000230
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100231} // namespace validation
232} // namespace test
233} // namespace arm_compute
234#endif /* ARM_COMPUTE_TEST_POOLING_LAYER_FIXTURE */