blob: 3653de789ac27052b84c38f24809e839196ff3ce [file] [log] [blame]
Georgios Pinitasdc460f12017-08-24 19:02:44 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * 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>
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...>
morgolockcc1f6c92020-03-24 09:26:48 +000049 void setup(TensorShape shape, PoolingLayerInfo pool_info, DataType data_type, DataLayout data_layout, bool indices = false)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010050 {
Pablo Telloa52e4cf2019-04-01 14:55:18 +010051 std::mt19937 gen(library->seed());
52 std::uniform_int_distribution<> offset_dis(0, 20);
Manuel Bottinib4bb8272019-12-18 18:01:27 +000053 const float scale = data_type == DataType::QASYMM8_SIGNED ? 1.f / 127.f : 1.f / 255.f;
54 const int scale_in = data_type == DataType::QASYMM8_SIGNED ? -offset_dis(gen) : offset_dis(gen);
55 const int scale_out = data_type == DataType::QASYMM8_SIGNED ? -offset_dis(gen) : offset_dis(gen);
56 const QuantizationInfo input_qinfo(scale, scale_in);
57 const QuantizationInfo output_qinfo(scale, scale_out);
Georgios Pinitasdc460f12017-08-24 19:02:44 +010058
Pablo Telloa52e4cf2019-04-01 14:55:18 +010059 _pool_info = pool_info;
morgolockcc1f6c92020-03-24 09:26:48 +000060 _target = compute_target(shape, pool_info, data_type, data_layout, input_qinfo, output_qinfo, indices);
morgolocke383c352020-04-03 16:57:46 +010061 _reference = compute_reference(shape, pool_info, data_type, data_layout, input_qinfo, output_qinfo, indices);
Georgios Pinitasdc460f12017-08-24 19:02:44 +010062 }
63
64protected:
65 template <typename U>
66 void fill(U &&tensor)
67 {
Giorgio Arena4bdd1772020-12-17 16:47:07 +000068 if(tensor.data_type() == DataType::F32)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010069 {
Giorgio Arena4bdd1772020-12-17 16:47:07 +000070 std::uniform_real_distribution<float> distribution(-1.0f, 1.0f);
71 library->fill(tensor, distribution, 0);
72 }
73 else if(tensor.data_type() == DataType::F16)
74 {
75 arm_compute::utils::uniform_real_distribution_fp16 distribution{ half(-1.0f), half(1.0f) };
Georgios Pinitasdc460f12017-08-24 19:02:44 +010076 library->fill(tensor, distribution, 0);
77 }
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010078 else // data type is quantized_asymmetric
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000079 {
80 library->fill_tensor_uniform(tensor, 0);
81 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +010082 }
83
Giorgio Arena563494c2018-04-30 17:29:41 +010084 TensorType compute_target(TensorShape shape, PoolingLayerInfo info,
morgolockcc1f6c92020-03-24 09:26:48 +000085 DataType data_type, DataLayout data_layout,
86 QuantizationInfo input_qinfo, QuantizationInfo output_qinfo,
87 bool indices)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010088 {
Giorgio Arena563494c2018-04-30 17:29:41 +010089 // Change shape in case of NHWC.
90 if(data_layout == DataLayout::NHWC)
91 {
92 permute(shape, PermutationVector(2U, 0U, 1U));
93 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +010094 // Create tensors
Pablo Telloa52e4cf2019-04-01 14:55:18 +010095 TensorType src = create_tensor<TensorType>(shape, data_type, 1, input_qinfo, data_layout);
96 const TensorShape dst_shape = misc::shape_calculator::compute_pool_shape(*(src.info()), info);
97 TensorType dst = create_tensor<TensorType>(dst_shape, data_type, 1, output_qinfo, data_layout);
morgolocke383c352020-04-03 16:57:46 +010098 _target_indices = create_tensor<TensorType>(dst_shape, DataType::U32, 1, output_qinfo, data_layout);
Georgios Pinitasdc460f12017-08-24 19:02:44 +010099
100 // Create and configure function
101 FunctionType pool_layer;
morgolockcc1f6c92020-03-24 09:26:48 +0000102 pool_layer.configure(&src, &dst, info, (indices) ? &_target_indices : nullptr);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100103
104 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
105 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
morgolockcc1f6c92020-03-24 09:26:48 +0000106 ARM_COMPUTE_EXPECT(_target_indices.info()->is_resizable(), framework::LogLevel::ERRORS);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100107
108 // Allocate tensors
109 src.allocator()->allocate();
110 dst.allocator()->allocate();
morgolockcc1f6c92020-03-24 09:26:48 +0000111 _target_indices.allocator()->allocate();
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100112
113 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
114 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
morgolockcc1f6c92020-03-24 09:26:48 +0000115 ARM_COMPUTE_EXPECT(!_target_indices.info()->is_resizable(), framework::LogLevel::ERRORS);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100116
117 // Fill tensors
118 fill(AccessorType(src));
119
120 // Compute function
121 pool_layer.run();
122
123 return dst;
124 }
125
morgolocke383c352020-04-03 16:57:46 +0100126 SimpleTensor<T> compute_reference(TensorShape shape, PoolingLayerInfo info, DataType data_type, DataLayout data_layout,
morgolockcc1f6c92020-03-24 09:26:48 +0000127 QuantizationInfo input_qinfo, QuantizationInfo output_qinfo, bool indices)
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100128 {
129 // Create reference
morgolocke383c352020-04-03 16:57:46 +0100130 SimpleTensor<T> src(shape, data_type, 1, input_qinfo);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100131 // Fill reference
132 fill(src);
morgolocke383c352020-04-03 16:57:46 +0100133 return reference::pooling_layer<T>(src, info, output_qinfo, indices ? &_ref_indices : nullptr, data_layout);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100134 }
135
morgolockcc1f6c92020-03-24 09:26:48 +0000136 TensorType _target{};
137 SimpleTensor<T> _reference{};
138 PoolingLayerInfo _pool_info{};
139 TensorType _target_indices{};
140 SimpleTensor<uint32_t> _ref_indices{};
141};
142template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
143class PoolingLayerIndicesValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
144{
145public:
146 template <typename...>
147 void setup(TensorShape shape, PoolingType pool_type, Size2D pool_size, PadStrideInfo pad_stride_info, bool exclude_padding, DataType data_type, DataLayout data_layout)
148 {
149 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, pool_size, data_layout, pad_stride_info, exclude_padding),
150 data_type, data_layout, true);
151 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100152};
153
154template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000155class PoolingLayerValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100156{
157public:
158 template <typename...>
Michalis Spyrou57dac842018-03-01 16:03:50 +0000159 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 +0100160 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000161 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 +0100162 data_type, data_layout);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100163 }
164};
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100165
166template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100167class PoolingLayerValidationMixedPrecisionFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
168{
169public:
170 template <typename...>
171 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)
172 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000173 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 +0100174 data_type, data_layout);
175 }
176};
177
178template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000179class PoolingLayerValidationQuantizedFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
180{
181public:
182 template <typename...>
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100183 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 +0000184 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000185 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 +0100186 data_type, data_layout);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000187 }
188};
189
190template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Georgios Pinitas15997872018-02-19 13:58:22 +0000191class SpecialPoolingLayerValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
192{
193public:
194 template <typename...>
Giorgio Arena3c520c52018-05-01 11:47:24 +0100195 void setup(TensorShape src_shape, PoolingLayerInfo pool_info, DataType data_type)
Georgios Pinitas15997872018-02-19 13:58:22 +0000196 {
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100197 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(src_shape, pool_info, data_type, DataLayout::NCHW);
Georgios Pinitas15997872018-02-19 13:58:22 +0000198 }
199};
200
201template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Georgios Pinitas4c2dd542017-11-13 12:58:41 +0000202class GlobalPoolingLayerValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100203{
204public:
205 template <typename...>
Michalis Spyrou57dac842018-03-01 16:03:50 +0000206 void setup(TensorShape shape, PoolingType pool_type, DataType data_type, DataLayout data_layout = DataLayout::NCHW)
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100207 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000208 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, data_layout), data_type, data_layout);
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100209 }
210};
Georgios Pinitas15997872018-02-19 13:58:22 +0000211
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100212} // namespace validation
213} // namespace test
214} // namespace arm_compute
215#endif /* ARM_COMPUTE_TEST_POOLING_LAYER_FIXTURE */