blob: 7f2d7ac2258c59688d0ca861cae7e44ff36cd206 [file] [log] [blame]
Georgios Pinitasdc460f12017-08-24 19:02:44 +01001/*
Manuel Bottinib4bb8272019-12-18 18:01:27 +00002 * Copyright (c) 2017-2020 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>
38
39namespace arm_compute
40{
41namespace test
42{
43namespace validation
44{
45template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000046class PoolingLayerValidationGenericFixture : public framework::Fixture
Georgios Pinitasdc460f12017-08-24 19:02:44 +010047{
48public:
49 template <typename...>
morgolockcc1f6c92020-03-24 09:26:48 +000050 void setup(TensorShape shape, PoolingLayerInfo pool_info, DataType data_type, DataLayout data_layout, bool indices = false)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010051 {
Pablo Telloa52e4cf2019-04-01 14:55:18 +010052 std::mt19937 gen(library->seed());
53 std::uniform_int_distribution<> offset_dis(0, 20);
Manuel Bottinib4bb8272019-12-18 18:01:27 +000054 const float scale = data_type == DataType::QASYMM8_SIGNED ? 1.f / 127.f : 1.f / 255.f;
55 const int scale_in = data_type == DataType::QASYMM8_SIGNED ? -offset_dis(gen) : offset_dis(gen);
56 const int scale_out = data_type == DataType::QASYMM8_SIGNED ? -offset_dis(gen) : offset_dis(gen);
57 const QuantizationInfo input_qinfo(scale, scale_in);
58 const QuantizationInfo output_qinfo(scale, scale_out);
Georgios Pinitasdc460f12017-08-24 19:02:44 +010059
Pablo Telloa52e4cf2019-04-01 14:55:18 +010060 _pool_info = pool_info;
morgolockcc1f6c92020-03-24 09:26:48 +000061 _target = compute_target(shape, pool_info, data_type, data_layout, input_qinfo, output_qinfo, indices);
62 _reference = compute_reference(shape, pool_info, data_type, input_qinfo, output_qinfo, indices);
Georgios Pinitasdc460f12017-08-24 19:02:44 +010063 }
64
65protected:
66 template <typename U>
67 void fill(U &&tensor)
68 {
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000069 if(!is_data_type_quantized(tensor.data_type()))
Georgios Pinitasdc460f12017-08-24 19:02:44 +010070 {
71 std::uniform_real_distribution<> distribution(-1.f, 1.f);
72 library->fill(tensor, distribution, 0);
73 }
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010074 else // data type is quantized_asymmetric
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000075 {
76 library->fill_tensor_uniform(tensor, 0);
77 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +010078 }
79
Giorgio Arena563494c2018-04-30 17:29:41 +010080 TensorType compute_target(TensorShape shape, PoolingLayerInfo info,
morgolockcc1f6c92020-03-24 09:26:48 +000081 DataType data_type, DataLayout data_layout,
82 QuantizationInfo input_qinfo, QuantizationInfo output_qinfo,
83 bool indices)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010084 {
Giorgio Arena563494c2018-04-30 17:29:41 +010085 // Change shape in case of NHWC.
86 if(data_layout == DataLayout::NHWC)
87 {
88 permute(shape, PermutationVector(2U, 0U, 1U));
89 }
90
Georgios Pinitasdc460f12017-08-24 19:02:44 +010091 // Create tensors
Pablo Telloa52e4cf2019-04-01 14:55:18 +010092 TensorType src = create_tensor<TensorType>(shape, data_type, 1, input_qinfo, data_layout);
93 const TensorShape dst_shape = misc::shape_calculator::compute_pool_shape(*(src.info()), info);
94 TensorType dst = create_tensor<TensorType>(dst_shape, data_type, 1, output_qinfo, data_layout);
morgolockcc1f6c92020-03-24 09:26:48 +000095 _target_indices = create_tensor<TensorType>(dst_shape, DataType::U32, 1);
Georgios Pinitasdc460f12017-08-24 19:02:44 +010096
97 // Create and configure function
98 FunctionType pool_layer;
morgolockcc1f6c92020-03-24 09:26:48 +000099 pool_layer.configure(&src, &dst, info, (indices) ? &_target_indices : nullptr);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100100
101 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
102 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
morgolockcc1f6c92020-03-24 09:26:48 +0000103 ARM_COMPUTE_EXPECT(_target_indices.info()->is_resizable(), framework::LogLevel::ERRORS);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100104
105 // Allocate tensors
106 src.allocator()->allocate();
107 dst.allocator()->allocate();
morgolockcc1f6c92020-03-24 09:26:48 +0000108 _target_indices.allocator()->allocate();
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100109
110 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
111 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
morgolockcc1f6c92020-03-24 09:26:48 +0000112 ARM_COMPUTE_EXPECT(!_target_indices.info()->is_resizable(), framework::LogLevel::ERRORS);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100113
114 // Fill tensors
115 fill(AccessorType(src));
116
117 // Compute function
118 pool_layer.run();
119
120 return dst;
121 }
122
morgolockcc1f6c92020-03-24 09:26:48 +0000123 SimpleTensor<T> compute_reference(const TensorShape &shape, PoolingLayerInfo info, DataType data_type,
124 QuantizationInfo input_qinfo, QuantizationInfo output_qinfo, bool indices)
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100125 {
126 // Create reference
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100127 SimpleTensor<T> src{ shape, data_type, 1, input_qinfo };
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100128 // Fill reference
129 fill(src);
130
morgolockcc1f6c92020-03-24 09:26:48 +0000131 return reference::pooling_layer<T>(src, info, output_qinfo, indices ? &_ref_indices : nullptr);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100132 }
133
morgolockcc1f6c92020-03-24 09:26:48 +0000134 TensorType _target{};
135 SimpleTensor<T> _reference{};
136 PoolingLayerInfo _pool_info{};
137 TensorType _target_indices{};
138 SimpleTensor<uint32_t> _ref_indices{};
139};
140template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
141class PoolingLayerIndicesValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
142{
143public:
144 template <typename...>
145 void setup(TensorShape shape, PoolingType pool_type, Size2D pool_size, PadStrideInfo pad_stride_info, bool exclude_padding, DataType data_type, DataLayout data_layout)
146 {
147 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, pool_size, data_layout, pad_stride_info, exclude_padding),
148 data_type, data_layout, true);
149 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100150};
151
152template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000153class PoolingLayerValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100154{
155public:
156 template <typename...>
Michalis Spyrou57dac842018-03-01 16:03:50 +0000157 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 +0100158 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000159 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, pool_size, data_layout, pad_stride_info, exclude_padding),
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100160 data_type, data_layout);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100161 }
162};
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100163
164template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100165class PoolingLayerValidationMixedPrecisionFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
166{
167public:
168 template <typename...>
169 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)
170 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000171 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 +0100172 data_type, data_layout);
173 }
174};
175
176template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000177class PoolingLayerValidationQuantizedFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
178{
179public:
180 template <typename...>
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100181 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)
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000182 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000183 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, pool_size, data_layout, pad_stride_info, exclude_padding),
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100184 data_type, data_layout);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000185 }
186};
187
188template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Georgios Pinitas15997872018-02-19 13:58:22 +0000189class SpecialPoolingLayerValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
190{
191public:
192 template <typename...>
Giorgio Arena3c520c52018-05-01 11:47:24 +0100193 void setup(TensorShape src_shape, PoolingLayerInfo pool_info, DataType data_type)
Georgios Pinitas15997872018-02-19 13:58:22 +0000194 {
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100195 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(src_shape, pool_info, data_type, DataLayout::NCHW);
Georgios Pinitas15997872018-02-19 13:58:22 +0000196 }
197};
198
199template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Georgios Pinitas4c2dd542017-11-13 12:58:41 +0000200class GlobalPoolingLayerValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100201{
202public:
203 template <typename...>
Michalis Spyrou57dac842018-03-01 16:03:50 +0000204 void setup(TensorShape shape, PoolingType pool_type, DataType data_type, DataLayout data_layout = DataLayout::NCHW)
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100205 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000206 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, data_layout), data_type, data_layout);
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100207 }
208};
Georgios Pinitas15997872018-02-19 13:58:22 +0000209
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100210} // namespace validation
211} // namespace test
212} // namespace arm_compute
213#endif /* ARM_COMPUTE_TEST_POOLING_LAYER_FIXTURE */