blob: 9cd1c4670b5dbc2d7b580d0393eab644ab0d6924 [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 {
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000068 if(!is_data_type_quantized(tensor.data_type()))
Georgios Pinitasdc460f12017-08-24 19:02:44 +010069 {
70 std::uniform_real_distribution<> distribution(-1.f, 1.f);
71 library->fill(tensor, distribution, 0);
72 }
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010073 else // data type is quantized_asymmetric
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000074 {
75 library->fill_tensor_uniform(tensor, 0);
76 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +010077 }
78
Giorgio Arena563494c2018-04-30 17:29:41 +010079 TensorType compute_target(TensorShape shape, PoolingLayerInfo info,
morgolockcc1f6c92020-03-24 09:26:48 +000080 DataType data_type, DataLayout data_layout,
81 QuantizationInfo input_qinfo, QuantizationInfo output_qinfo,
82 bool indices)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010083 {
Giorgio Arena563494c2018-04-30 17:29:41 +010084 // Change shape in case of NHWC.
85 if(data_layout == DataLayout::NHWC)
86 {
87 permute(shape, PermutationVector(2U, 0U, 1U));
88 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +010089 // Create tensors
Pablo Telloa52e4cf2019-04-01 14:55:18 +010090 TensorType src = create_tensor<TensorType>(shape, data_type, 1, input_qinfo, data_layout);
91 const TensorShape dst_shape = misc::shape_calculator::compute_pool_shape(*(src.info()), info);
92 TensorType dst = create_tensor<TensorType>(dst_shape, data_type, 1, output_qinfo, data_layout);
morgolocke383c352020-04-03 16:57:46 +010093 _target_indices = create_tensor<TensorType>(dst_shape, DataType::U32, 1, output_qinfo, data_layout);
Georgios Pinitasdc460f12017-08-24 19:02:44 +010094
95 // Create and configure function
96 FunctionType pool_layer;
morgolockcc1f6c92020-03-24 09:26:48 +000097 pool_layer.configure(&src, &dst, info, (indices) ? &_target_indices : nullptr);
Georgios Pinitasdc460f12017-08-24 19:02:44 +010098
99 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
100 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
morgolockcc1f6c92020-03-24 09:26:48 +0000101 ARM_COMPUTE_EXPECT(_target_indices.info()->is_resizable(), framework::LogLevel::ERRORS);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100102
103 // Allocate tensors
104 src.allocator()->allocate();
105 dst.allocator()->allocate();
morgolockcc1f6c92020-03-24 09:26:48 +0000106 _target_indices.allocator()->allocate();
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100107
108 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
109 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
morgolockcc1f6c92020-03-24 09:26:48 +0000110 ARM_COMPUTE_EXPECT(!_target_indices.info()->is_resizable(), framework::LogLevel::ERRORS);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100111
112 // Fill tensors
113 fill(AccessorType(src));
114
115 // Compute function
116 pool_layer.run();
117
118 return dst;
119 }
120
morgolocke383c352020-04-03 16:57:46 +0100121 SimpleTensor<T> compute_reference(TensorShape shape, PoolingLayerInfo info, DataType data_type, DataLayout data_layout,
morgolockcc1f6c92020-03-24 09:26:48 +0000122 QuantizationInfo input_qinfo, QuantizationInfo output_qinfo, bool indices)
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100123 {
124 // Create reference
morgolocke383c352020-04-03 16:57:46 +0100125 SimpleTensor<T> src(shape, data_type, 1, input_qinfo);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100126 // Fill reference
127 fill(src);
morgolocke383c352020-04-03 16:57:46 +0100128 return reference::pooling_layer<T>(src, info, output_qinfo, indices ? &_ref_indices : nullptr, data_layout);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100129 }
130
morgolockcc1f6c92020-03-24 09:26:48 +0000131 TensorType _target{};
132 SimpleTensor<T> _reference{};
133 PoolingLayerInfo _pool_info{};
134 TensorType _target_indices{};
135 SimpleTensor<uint32_t> _ref_indices{};
136};
137template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
138class PoolingLayerIndicesValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
139{
140public:
141 template <typename...>
142 void setup(TensorShape shape, PoolingType pool_type, Size2D pool_size, PadStrideInfo pad_stride_info, bool exclude_padding, DataType data_type, DataLayout data_layout)
143 {
144 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, pool_size, data_layout, pad_stride_info, exclude_padding),
145 data_type, data_layout, true);
146 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100147};
148
149template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000150class PoolingLayerValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100151{
152public:
153 template <typename...>
Michalis Spyrou57dac842018-03-01 16:03:50 +0000154 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 +0100155 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000156 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 +0100157 data_type, data_layout);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100158 }
159};
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100160
161template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100162class PoolingLayerValidationMixedPrecisionFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
163{
164public:
165 template <typename...>
166 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)
167 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000168 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 +0100169 data_type, data_layout);
170 }
171};
172
173template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000174class PoolingLayerValidationQuantizedFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
175{
176public:
177 template <typename...>
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100178 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 +0000179 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000180 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 +0100181 data_type, data_layout);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000182 }
183};
184
185template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Georgios Pinitas15997872018-02-19 13:58:22 +0000186class SpecialPoolingLayerValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
187{
188public:
189 template <typename...>
Giorgio Arena3c520c52018-05-01 11:47:24 +0100190 void setup(TensorShape src_shape, PoolingLayerInfo pool_info, DataType data_type)
Georgios Pinitas15997872018-02-19 13:58:22 +0000191 {
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100192 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(src_shape, pool_info, data_type, DataLayout::NCHW);
Georgios Pinitas15997872018-02-19 13:58:22 +0000193 }
194};
195
196template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Georgios Pinitas4c2dd542017-11-13 12:58:41 +0000197class GlobalPoolingLayerValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100198{
199public:
200 template <typename...>
Michalis Spyrou57dac842018-03-01 16:03:50 +0000201 void setup(TensorShape shape, PoolingType pool_type, DataType data_type, DataLayout data_layout = DataLayout::NCHW)
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100202 {
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000203 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, data_layout), data_type, data_layout);
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100204 }
205};
Georgios Pinitas15997872018-02-19 13:58:22 +0000206
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100207} // namespace validation
208} // namespace test
209} // namespace arm_compute
210#endif /* ARM_COMPUTE_TEST_POOLING_LAYER_FIXTURE */