blob: 27b033a06ce9f76a0d22f85069c0f09022325bbd [file] [log] [blame]
Georgios Pinitasdc460f12017-08-24 19:02:44 +01001/*
Isabella Gottardi6e464c32018-01-26 12:32:45 +00002 * Copyright (c) 2017-2018 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"
29#include "arm_compute/runtime/Tensor.h"
Georgios Pinitasdc460f12017-08-24 19:02:44 +010030#include "tests/AssetsLibrary.h"
31#include "tests/Globals.h"
32#include "tests/IAccessor.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010033#include "tests/framework/Asserts.h"
34#include "tests/framework/Fixture.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000035#include "tests/validation/reference/PoolingLayer.h"
Georgios Pinitasdc460f12017-08-24 19:02:44 +010036
37#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...>
Michalis Spyrou57dac842018-03-01 16:03:50 +000050 void setup(TensorShape shape, PoolingLayerInfo pool_info, DataType data_type, DataLayout data_layout, int fractional_bits, QuantizationInfo quantization_info)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010051 {
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000052 _fractional_bits = fractional_bits;
53 _quantization_info = quantization_info;
Georgios Pinitas4c2dd542017-11-13 12:58:41 +000054 _pool_info = pool_info;
Georgios Pinitasdc460f12017-08-24 19:02:44 +010055
Michalis Spyrou57dac842018-03-01 16:03:50 +000056 _target = compute_target(shape, pool_info, data_type, data_layout, fractional_bits, quantization_info);
Giorgio Arena563494c2018-04-30 17:29:41 +010057 _reference = compute_reference(shape, pool_info, data_type, fractional_bits, quantization_info);
Georgios Pinitasdc460f12017-08-24 19:02:44 +010058 }
59
60protected:
61 template <typename U>
62 void fill(U &&tensor)
63 {
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000064 if(!is_data_type_quantized(tensor.data_type()))
Georgios Pinitasdc460f12017-08-24 19:02:44 +010065 {
66 std::uniform_real_distribution<> distribution(-1.f, 1.f);
67 library->fill(tensor, distribution, 0);
68 }
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000069 else if(is_data_type_quantized_asymmetric(tensor.data_type()))
70 {
71 library->fill_tensor_uniform(tensor, 0);
72 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +010073 else
74 {
75 const int one_fixed = 1 << _fractional_bits;
76 std::uniform_int_distribution<> distribution(-one_fixed, one_fixed);
77 library->fill(tensor, distribution, 0);
78 }
79 }
80
Giorgio Arena563494c2018-04-30 17:29:41 +010081 TensorType compute_target(TensorShape shape, PoolingLayerInfo info,
Michalis Spyrou57dac842018-03-01 16:03:50 +000082 DataType data_type, DataLayout data_layout, int fixed_point_position, QuantizationInfo quantization_info)
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 }
89
Georgios Pinitasdc460f12017-08-24 19:02:44 +010090 // Create tensors
Michalis Spyrou57dac842018-03-01 16:03:50 +000091 TensorType src = create_tensor<TensorType>(shape, data_type, 1, fixed_point_position, quantization_info, data_layout);
Georgios Pinitasdc460f12017-08-24 19:02:44 +010092 TensorType dst;
93
94 // Create and configure function
95 FunctionType pool_layer;
96 pool_layer.configure(&src, &dst, info);
97
98 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
99 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
100
101 // Allocate tensors
102 src.allocator()->allocate();
103 dst.allocator()->allocate();
104
105 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
106 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
107
108 // Fill tensors
109 fill(AccessorType(src));
110
111 // Compute function
112 pool_layer.run();
113
114 return dst;
115 }
116
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000117 SimpleTensor<T> compute_reference(const TensorShape &shape, PoolingLayerInfo info,
Giorgio Arena563494c2018-04-30 17:29:41 +0100118 DataType data_type, int fixed_point_position, QuantizationInfo quantization_info)
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100119 {
120 // Create reference
Giorgio Arena563494c2018-04-30 17:29:41 +0100121 SimpleTensor<T> src{ shape, data_type, 1, fixed_point_position, quantization_info };
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100122
123 // Fill reference
124 fill(src);
125
126 return reference::pooling_layer<T>(src, info);
127 }
128
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000129 TensorType _target{};
130 SimpleTensor<T> _reference{};
131 int _fractional_bits{};
132 QuantizationInfo _quantization_info{};
Georgios Pinitas4c2dd542017-11-13 12:58:41 +0000133 PoolingLayerInfo _pool_info{};
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100134};
135
136template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000137class PoolingLayerValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100138{
139public:
140 template <typename...>
Michalis Spyrou57dac842018-03-01 16:03:50 +0000141 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 +0100142 {
Georgios Pinitas4c2dd542017-11-13 12:58:41 +0000143 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, pool_size, pad_stride_info, exclude_padding),
Michalis Spyrou57dac842018-03-01 16:03:50 +0000144 data_type, data_layout, 0, QuantizationInfo());
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100145 }
146};
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100147
148template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000149class PoolingLayerValidationFixedPointFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
150{
151public:
152 template <typename...>
Isabella Gottardi6e464c32018-01-26 12:32:45 +0000153 void setup(TensorShape shape, PoolingType pool_type, Size2D pool_size, PadStrideInfo pad_stride_info, bool exclude_padding, DataType data_type, int fractional_bits)
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000154 {
Georgios Pinitas4c2dd542017-11-13 12:58:41 +0000155 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, pool_size, pad_stride_info, exclude_padding),
Michalis Spyrou57dac842018-03-01 16:03:50 +0000156 data_type, DataLayout::NCHW, fractional_bits, QuantizationInfo());
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000157 }
158};
159
160template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
161class PoolingLayerValidationQuantizedFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
162{
163public:
164 template <typename...>
Michalis Spyrou57dac842018-03-01 16:03:50 +0000165 void setup(TensorShape shape, PoolingType pool_type, Size2D pool_size, PadStrideInfo pad_stride_info, bool exclude_padding, DataType data_type,
166 QuantizationInfo quantization_info, DataLayout data_layout = DataLayout::NCHW)
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000167 {
Georgios Pinitas4c2dd542017-11-13 12:58:41 +0000168 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type, pool_size, pad_stride_info, exclude_padding),
Michalis Spyrou57dac842018-03-01 16:03:50 +0000169 data_type, data_layout, 0, quantization_info);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000170 }
171};
172
173template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Georgios Pinitas15997872018-02-19 13:58:22 +0000174class SpecialPoolingLayerValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
175{
176public:
177 template <typename...>
Giorgio Arena3c520c52018-05-01 11:47:24 +0100178 void setup(TensorShape src_shape, PoolingLayerInfo pool_info, DataType data_type)
Georgios Pinitas15997872018-02-19 13:58:22 +0000179 {
Michalis Spyrou57dac842018-03-01 16:03:50 +0000180 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(src_shape, pool_info, data_type, DataLayout::NCHW, 0, QuantizationInfo());
Georgios Pinitas15997872018-02-19 13:58:22 +0000181 }
182};
183
184template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Georgios Pinitas4c2dd542017-11-13 12:58:41 +0000185class GlobalPoolingLayerValidationFixture : public PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100186{
187public:
188 template <typename...>
Michalis Spyrou57dac842018-03-01 16:03:50 +0000189 void setup(TensorShape shape, PoolingType pool_type, DataType data_type, DataLayout data_layout = DataLayout::NCHW)
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100190 {
Michalis Spyrou57dac842018-03-01 16:03:50 +0000191 PoolingLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, PoolingLayerInfo(pool_type), data_type, DataLayout::NCHW, 0, QuantizationInfo());
Gian Marco Iodicebf179552017-09-05 13:51:21 +0100192 }
193};
Georgios Pinitas15997872018-02-19 13:58:22 +0000194
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100195} // namespace validation
196} // namespace test
197} // namespace arm_compute
198#endif /* ARM_COMPUTE_TEST_POOLING_LAYER_FIXTURE */