blob: bf7bd0c1dfc77e9b8671e789bbe8ecc91a2cfbd8 [file] [log] [blame]
Georgios Pinitasdc460f12017-08-24 19:02:44 +01001/*
Mohammed Suhail Munshia18d85c2023-01-03 10:16:16 +00002 * Copyright (c) 2017-2021, 2023 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#include "PoolingLayer.h"
25
Georgios Pinitas583137c2017-08-31 18:12:42 +010026#include "arm_compute/core/Types.h"
Giorgio Arena3c520c52018-05-01 11:47:24 +010027#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000028#include "tests/validation/Helpers.h"
Georgios Pinitasdc460f12017-08-24 19:02:44 +010029
30namespace arm_compute
31{
32namespace test
33{
34namespace validation
35{
36namespace reference
37{
Giorgio Arena3c520c52018-05-01 11:47:24 +010038using namespace arm_compute::misc::shape_calculator;
Georgios Pinitasdc460f12017-08-24 19:02:44 +010039
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +010040template <typename T, typename ACC_T, typename std::enable_if<is_floating_point<T>::value, int>::type>
morgolocke383c352020-04-03 16:57:46 +010041SimpleTensor<T> pooling_layer_internal(const SimpleTensor<T> &src, const PoolingLayerInfo &info, SimpleTensor<uint32_t> *indices, DataLayout data_layout)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010042{
Giorgio Arena563494c2018-04-30 17:29:41 +010043 // Create reference
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010044 SimpleTensor<T> dst{ compute_pool_shape(TensorInfo(src.shape(), 1, src.data_type()), info), src.data_type(), 1 };
morgolock37722d92020-04-09 14:17:48 +010045 auto pooled_shape = compute_pool_shape(TensorInfo(src.shape(), 1, src.data_type()), info);
morgolockcc1f6c92020-03-24 09:26:48 +000046 if(indices)
47 {
morgolock37722d92020-04-09 14:17:48 +010048 *indices = SimpleTensor<uint32_t> { pooled_shape, DataType::U32, 1 };
morgolockcc1f6c92020-03-24 09:26:48 +000049 }
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +000050 const int pool_size_x = info.is_global_pooling ? src.shape().x() : info.pool_size.width;
51 const int pool_size_y = info.is_global_pooling ? src.shape().y() : info.pool_size.height;
52 PoolingType type = info.pool_type;
53 int pool_stride_x = info.pad_stride_info.stride().first;
54 int pool_stride_y = info.pad_stride_info.stride().second;
55 int pad_left = info.pad_stride_info.pad_left();
56 int pad_top = info.pad_stride_info.pad_top();
57 int pad_right = info.pad_stride_info.pad_right();
58 int pad_bottom = info.pad_stride_info.pad_bottom();
59 bool exclude_padding = info.exclude_padding;
Georgios Pinitasdc460f12017-08-24 19:02:44 +010060
morgolock37722d92020-04-09 14:17:48 +010061 const auto w_src = static_cast<int>(src.shape()[0]);
62 const auto h_src = static_cast<int>(src.shape()[1]);
63 const auto z_src = static_cast<int>(src.shape()[2]);
64 const auto b_src = static_cast<int>(src.shape()[3]);
Georgios Pinitasdc460f12017-08-24 19:02:44 +010065
morgolock37722d92020-04-09 14:17:48 +010066 const int upper_dims = src.shape().total_size() / (w_src * h_src);
67
68 const auto w_dst = static_cast<int>(dst.shape()[0]);
69 const auto h_dst = static_cast<int>(dst.shape()[1]);
70 const auto z_dst = static_cast<int>(dst.shape()[2]);
71
morgolocke383c352020-04-03 16:57:46 +010072 TensorShape shape_nhwc(src.shape());
73 permute(shape_nhwc, PermutationVector(2U, 0U, 1U));
Georgios Pinitasdc460f12017-08-24 19:02:44 +010074 if(type == PoolingType::MAX)
75 {
morgolock37722d92020-04-09 14:17:48 +010076 for(int b = 0; b < b_src; ++b)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010077 {
morgolock37722d92020-04-09 14:17:48 +010078 for(int r = 0; r < z_src; ++r)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010079 {
morgolock37722d92020-04-09 14:17:48 +010080 for(int h = 0; h < h_dst; ++h)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010081 {
morgolock37722d92020-04-09 14:17:48 +010082 for(int w = 0; w < w_dst; ++w)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010083 {
morgolock37722d92020-04-09 14:17:48 +010084 int wstart = w * pool_stride_x - pad_left;
85 int hstart = h * pool_stride_y - pad_top;
Adnan AlSinanbbf2e742023-02-22 12:15:14 +000086
87 // Used to calculate kernel indices
88 int kh_start = std::max(0, -hstart);
89 int kw_start = std::max(0, -wstart);
90 int max_ker_index{ 0 };
91
morgolock37722d92020-04-09 14:17:48 +010092 int wend = std::min(wstart + pool_size_x, w_src);
93 int hend = std::min(hstart + pool_size_y, h_src);
94 wstart = std::max(wstart, 0);
95 hstart = std::max(hstart, 0);
Adnan AlSinan227db8d2023-02-14 14:24:09 +000096 auto max_val = info.use_inf_as_limit ? -std::numeric_limits<ACC_T>::infinity() : std::numeric_limits<ACC_T>::lowest();
morgolock37722d92020-04-09 14:17:48 +010097 int max_index{ 0 };
Adnan AlSinanbbf2e742023-02-22 12:15:14 +000098
99 for(int y = hstart, kh = kh_start; y < hend; ++y, ++kh)
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100100 {
Adnan AlSinanbbf2e742023-02-22 12:15:14 +0000101 for(int x = wstart, kw = kw_start; x < wend; ++x, ++kw)
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100102 {
morgolock37722d92020-04-09 14:17:48 +0100103 const auto val = static_cast<ACC_T>(src[b * z_src * h_src * w_src + r * h_src * w_src + y * w_src + x]);
104 if(val > max_val)
morgolocke383c352020-04-03 16:57:46 +0100105 {
Adnan AlSinanbbf2e742023-02-22 12:15:14 +0000106 max_val = val;
107 max_ker_index = pool_size_x * (kh) + (kw);
morgolock37722d92020-04-09 14:17:48 +0100108 if(data_layout == DataLayout::NCHW)
109 {
110 max_index = coord2index(src.shape(), Coordinates(x, y, r, 0));
111 }
112 else
113 {
114 max_index = coord2index(shape_nhwc, Coordinates(r, x, y, 0));
115 }
morgolocke383c352020-04-03 16:57:46 +0100116 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100117 }
118 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100119
morgolock37722d92020-04-09 14:17:48 +0100120 dst[b * z_dst * h_dst * w_dst + r * h_dst * w_dst + h * w_dst + w] = static_cast<T>(max_val);
121 if(indices)
122 {
Adnan AlSinanbbf2e742023-02-22 12:15:14 +0000123 (*indices)[b * z_dst * h_dst * w_dst + r * h_dst * w_dst + h * w_dst + w] = (info.use_kernel_indices) ? max_ker_index : max_index;
morgolock37722d92020-04-09 14:17:48 +0100124 }
morgolockcc1f6c92020-03-24 09:26:48 +0000125 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100126 }
127 }
128 }
129 }
Georgios Pinitascdf51452017-08-31 14:21:36 +0100130 else // Average or l2 pooling
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100131 {
132 for(int r = 0; r < upper_dims; ++r)
133 {
134 for(int h = 0; h < h_dst; ++h)
135 {
136 for(int w = 0; w < w_dst; ++w)
137 {
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100138 ACC_T avg_val(0);
139 int wstart = w * pool_stride_x - pad_left;
140 int hstart = h * pool_stride_y - pad_top;
141 int wend = std::min(wstart + pool_size_x, w_src + pad_right);
142 int hend = std::min(hstart + pool_size_y, h_src + pad_bottom);
143 int pool = (hend - hstart) * (wend - wstart);
144 wstart = std::max(wstart, 0);
145 hstart = std::max(hstart, 0);
146 wend = std::min(wend, w_src);
147 hend = std::min(hend, h_src);
Georgios Pinitasadaae7e2017-10-30 15:56:32 +0000148 // Exclude padding pixels from the average
149 if(exclude_padding)
150 {
151 pool = (hend - hstart) * (wend - wstart);
152 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100153
Georgios Pinitascdf51452017-08-31 14:21:36 +0100154 if(type == PoolingType::AVG)
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100155 {
Georgios Pinitascdf51452017-08-31 14:21:36 +0100156 for(int y = hstart; y < hend; ++y)
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100157 {
Georgios Pinitascdf51452017-08-31 14:21:36 +0100158 for(int x = wstart; x < wend; ++x)
159 {
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100160 avg_val += static_cast<ACC_T>(src[r * h_src * w_src + y * w_src + x]);
Georgios Pinitascdf51452017-08-31 14:21:36 +0100161 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100162 }
Georgios Pinitascdf51452017-08-31 14:21:36 +0100163 dst[r * h_dst * w_dst + h * w_dst + w] = avg_val / pool;
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100164 }
Georgios Pinitascdf51452017-08-31 14:21:36 +0100165 else
166 {
167 for(int y = hstart; y < hend; ++y)
168 {
169 for(int x = wstart; x < wend; ++x)
170 {
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100171 const auto val = static_cast<ACC_T>(src[r * h_src * w_src + y * w_src + x]);
Georgios Pinitascdf51452017-08-31 14:21:36 +0100172 avg_val += val * val;
173 }
174 }
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100175 dst[r * h_dst * w_dst + h * w_dst + w] = static_cast<T>(std::sqrt(avg_val / pool));
Georgios Pinitascdf51452017-08-31 14:21:36 +0100176 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100177 }
178 }
179 }
180 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100181 return dst;
182}
183
morgolocke383c352020-04-03 16:57:46 +0100184template SimpleTensor<float> pooling_layer_internal<float>(const SimpleTensor<float> &src, const PoolingLayerInfo &info, SimpleTensor<uint32_t> *indices, DataLayout data_layout);
185
186template SimpleTensor<half> pooling_layer_internal<half>(const SimpleTensor<half> &src, const PoolingLayerInfo &info, SimpleTensor<uint32_t> *indices, DataLayout data_layout);
187
188template SimpleTensor<half> pooling_layer_internal<half, float>(const SimpleTensor<half> &src, const PoolingLayerInfo &info, SimpleTensor<uint32_t> *indices, DataLayout data_layout);
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100189
190template <typename T>
morgolocke383c352020-04-03 16:57:46 +0100191SimpleTensor<T> pooling_layer(const SimpleTensor<T> &src, const PoolingLayerInfo &info, const QuantizationInfo &output_qinfo, SimpleTensor<uint32_t> *indices, DataLayout data_layout)
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100192{
Manuel Bottinib4bb8272019-12-18 18:01:27 +0000193 ARM_COMPUTE_UNUSED(output_qinfo);
morgolocke383c352020-04-03 16:57:46 +0100194 return pooling_layer_internal<T, T>(src, info, indices, data_layout);
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100195}
196
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000197template <>
morgolocke383c352020-04-03 16:57:46 +0100198SimpleTensor<uint8_t> pooling_layer<uint8_t>(const SimpleTensor<uint8_t> &src, const PoolingLayerInfo &info, const QuantizationInfo &output_qinfo, SimpleTensor<uint32_t> *indices,
199 DataLayout data_layout)
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000200{
201 SimpleTensor<float> src_tmp = convert_from_asymmetric(src);
morgolocke383c352020-04-03 16:57:46 +0100202 SimpleTensor<float> dst_tmp = pooling_layer_internal<float>(src_tmp, info, indices, data_layout);
Michele Di Giorgio4aff98f2019-08-28 16:27:26 +0100203 SimpleTensor<uint8_t> dst = convert_to_asymmetric<uint8_t>(dst_tmp, output_qinfo);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000204 return dst;
205}
206
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100207template <>
morgolocke383c352020-04-03 16:57:46 +0100208SimpleTensor<int8_t> pooling_layer<int8_t>(const SimpleTensor<int8_t> &src, const PoolingLayerInfo &info, const QuantizationInfo &output_qinfo, SimpleTensor<uint32_t> *indices, DataLayout data_layout)
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000209{
210 SimpleTensor<float> src_tmp = convert_from_asymmetric(src);
morgolocke383c352020-04-03 16:57:46 +0100211 SimpleTensor<float> dst_tmp = pooling_layer_internal<float>(src_tmp, info, indices, data_layout);
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000212 SimpleTensor<int8_t> dst = convert_to_asymmetric<int8_t>(dst_tmp, output_qinfo);
213 return dst;
214}
215
216template <>
morgolocke383c352020-04-03 16:57:46 +0100217SimpleTensor<half> pooling_layer(const SimpleTensor<half> &src, const PoolingLayerInfo &info, const QuantizationInfo &output_qinfo, SimpleTensor<uint32_t> *indices, DataLayout data_layout)
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100218{
Manuel Bottinib4bb8272019-12-18 18:01:27 +0000219 ARM_COMPUTE_UNUSED(output_qinfo);
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000220 if(src.data_type() == DataType::F16 && info.fp_mixed_precision)
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100221 {
morgolocke383c352020-04-03 16:57:46 +0100222 return pooling_layer_internal<half, float>(src, info, indices, data_layout);
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100223 }
224
Sheri Zhang801bbcb2020-08-03 20:11:56 +0100225 return pooling_layer_internal<half>(src, info, indices, data_layout);
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100226}
227
morgolocke383c352020-04-03 16:57:46 +0100228template SimpleTensor<float> pooling_layer(const SimpleTensor<float> &src, const PoolingLayerInfo &info, const QuantizationInfo &output_qinfo, SimpleTensor<uint32_t> *indices, DataLayout data_layout);
229
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100230} // namespace reference
231} // namespace validation
232} // namespace test
233} // namespace arm_compute