blob: ed2eb2c7ec2c752cd3cafa419e6e3665d63f6e74 [file] [log] [blame]
Georgios Pinitasdc460f12017-08-24 19:02:44 +01001/*
Michele Di Giorgiocbbed282019-12-20 13:26:08 +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#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>
Manuel Bottinib4bb8272019-12-18 18:01:27 +000041SimpleTensor<T> pooling_layer_internal(const SimpleTensor<T> &src, const PoolingLayerInfo &info)
Georgios Pinitasdc460f12017-08-24 19:02:44 +010042{
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +000043 ARM_COMPUTE_ERROR_ON(info.is_global_pooling && (src.shape().x() != src.shape().y()));
Georgios Pinitas4c2dd542017-11-13 12:58:41 +000044
Giorgio Arena563494c2018-04-30 17:29:41 +010045 // Create reference
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010046 SimpleTensor<T> dst{ compute_pool_shape(TensorInfo(src.shape(), 1, src.data_type()), info), src.data_type(), 1 };
Giorgio Arena563494c2018-04-30 17:29:41 +010047
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +000048 const int pool_size_x = info.is_global_pooling ? src.shape().x() : info.pool_size.width;
49 const int pool_size_y = info.is_global_pooling ? src.shape().y() : info.pool_size.height;
50 PoolingType type = info.pool_type;
51 int pool_stride_x = info.pad_stride_info.stride().first;
52 int pool_stride_y = info.pad_stride_info.stride().second;
53 int pad_left = info.pad_stride_info.pad_left();
54 int pad_top = info.pad_stride_info.pad_top();
55 int pad_right = info.pad_stride_info.pad_right();
56 int pad_bottom = info.pad_stride_info.pad_bottom();
57 bool exclude_padding = info.exclude_padding;
Georgios Pinitasdc460f12017-08-24 19:02:44 +010058
59 const auto w_src = static_cast<int>(src.shape()[0]);
60 const auto h_src = static_cast<int>(src.shape()[1]);
61 const int upper_dims = src.shape().total_size() / (w_src * h_src);
62
Georgios Pinitasdc460f12017-08-24 19:02:44 +010063 const auto w_dst = static_cast<int>(dst.shape()[0]);
64 const auto h_dst = static_cast<int>(dst.shape()[1]);
65
66 if(type == PoolingType::MAX)
67 {
68 for(int r = 0; r < upper_dims; ++r)
69 {
70 for(int h = 0; h < h_dst; ++h)
71 {
72 for(int w = 0; w < w_dst; ++w)
73 {
Michalis Spyroubd0e6122018-01-23 09:52:16 +000074 int wstart = w * pool_stride_x - pad_left;
75 int hstart = h * pool_stride_y - pad_top;
Isabella Gottardi6e464c32018-01-26 12:32:45 +000076 int wend = std::min(wstart + pool_size_x, w_src);
77 int hend = std::min(hstart + pool_size_y, h_src);
Georgios Pinitasdc460f12017-08-24 19:02:44 +010078 wstart = std::max(wstart, 0);
79 hstart = std::max(hstart, 0);
80
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +010081 auto max_val = std::numeric_limits<ACC_T>::lowest();
Georgios Pinitasdc460f12017-08-24 19:02:44 +010082 for(int y = hstart; y < hend; ++y)
83 {
84 for(int x = wstart; x < wend; ++x)
85 {
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +010086 const auto val = static_cast<ACC_T>(src[r * h_src * w_src + y * w_src + x]);
Georgios Pinitasdc460f12017-08-24 19:02:44 +010087 if(val > max_val)
88 {
89 max_val = val;
90 }
91 }
92 }
93
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +010094 dst[r * h_dst * w_dst + h * w_dst + w] = static_cast<T>(max_val);
Georgios Pinitasdc460f12017-08-24 19:02:44 +010095 }
96 }
97 }
98 }
Georgios Pinitascdf51452017-08-31 14:21:36 +010099 else // Average or l2 pooling
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100100 {
101 for(int r = 0; r < upper_dims; ++r)
102 {
103 for(int h = 0; h < h_dst; ++h)
104 {
105 for(int w = 0; w < w_dst; ++w)
106 {
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100107 ACC_T avg_val(0);
108 int wstart = w * pool_stride_x - pad_left;
109 int hstart = h * pool_stride_y - pad_top;
110 int wend = std::min(wstart + pool_size_x, w_src + pad_right);
111 int hend = std::min(hstart + pool_size_y, h_src + pad_bottom);
112 int pool = (hend - hstart) * (wend - wstart);
113 wstart = std::max(wstart, 0);
114 hstart = std::max(hstart, 0);
115 wend = std::min(wend, w_src);
116 hend = std::min(hend, h_src);
Georgios Pinitasadaae7e2017-10-30 15:56:32 +0000117 // Exclude padding pixels from the average
118 if(exclude_padding)
119 {
120 pool = (hend - hstart) * (wend - wstart);
121 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100122
Georgios Pinitascdf51452017-08-31 14:21:36 +0100123 if(type == PoolingType::AVG)
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100124 {
Georgios Pinitascdf51452017-08-31 14:21:36 +0100125 for(int y = hstart; y < hend; ++y)
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100126 {
Georgios Pinitascdf51452017-08-31 14:21:36 +0100127 for(int x = wstart; x < wend; ++x)
128 {
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100129 avg_val += static_cast<ACC_T>(src[r * h_src * w_src + y * w_src + x]);
Georgios Pinitascdf51452017-08-31 14:21:36 +0100130 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100131 }
Georgios Pinitascdf51452017-08-31 14:21:36 +0100132 dst[r * h_dst * w_dst + h * w_dst + w] = avg_val / pool;
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100133 }
Georgios Pinitascdf51452017-08-31 14:21:36 +0100134 else
135 {
136 for(int y = hstart; y < hend; ++y)
137 {
138 for(int x = wstart; x < wend; ++x)
139 {
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100140 const auto val = static_cast<ACC_T>(src[r * h_src * w_src + y * w_src + x]);
Georgios Pinitascdf51452017-08-31 14:21:36 +0100141 avg_val += val * val;
142 }
143 }
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100144 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 +0100145 }
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100146 }
147 }
148 }
149 }
150
151 return dst;
152}
153
Manuel Bottinib4bb8272019-12-18 18:01:27 +0000154template SimpleTensor<float> pooling_layer_internal<float>(const SimpleTensor<float> &src, const PoolingLayerInfo &info);
155template SimpleTensor<half> pooling_layer_internal<half>(const SimpleTensor<half> &src, const PoolingLayerInfo &info);
156template SimpleTensor<half> pooling_layer_internal<half, float>(const SimpleTensor<half> &src, const PoolingLayerInfo &info);
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100157
158template <typename T>
159SimpleTensor<T> pooling_layer(const SimpleTensor<T> &src, const PoolingLayerInfo &info, const QuantizationInfo &output_qinfo)
160{
Manuel Bottinib4bb8272019-12-18 18:01:27 +0000161 ARM_COMPUTE_UNUSED(output_qinfo);
162 return pooling_layer_internal<T, T>(src, info);
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100163}
164
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000165template <>
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100166SimpleTensor<uint8_t> pooling_layer<uint8_t>(const SimpleTensor<uint8_t> &src, const PoolingLayerInfo &info, const QuantizationInfo &output_qinfo)
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000167{
168 SimpleTensor<float> src_tmp = convert_from_asymmetric(src);
Manuel Bottinib4bb8272019-12-18 18:01:27 +0000169 SimpleTensor<float> dst_tmp = pooling_layer_internal<float>(src_tmp, info);
Michele Di Giorgio4aff98f2019-08-28 16:27:26 +0100170 SimpleTensor<uint8_t> dst = convert_to_asymmetric<uint8_t>(dst_tmp, output_qinfo);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000171 return dst;
172}
173
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100174template <>
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000175SimpleTensor<int8_t> pooling_layer<int8_t>(const SimpleTensor<int8_t> &src, const PoolingLayerInfo &info, const QuantizationInfo &output_qinfo)
176{
177 SimpleTensor<float> src_tmp = convert_from_asymmetric(src);
Manuel Bottinib4bb8272019-12-18 18:01:27 +0000178 SimpleTensor<float> dst_tmp = pooling_layer_internal<float>(src_tmp, info);
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000179 SimpleTensor<int8_t> dst = convert_to_asymmetric<int8_t>(dst_tmp, output_qinfo);
180 return dst;
181}
182
183template <>
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100184SimpleTensor<half> pooling_layer(const SimpleTensor<half> &src, const PoolingLayerInfo &info, const QuantizationInfo &output_qinfo)
185{
Manuel Bottinib4bb8272019-12-18 18:01:27 +0000186 ARM_COMPUTE_UNUSED(output_qinfo);
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000187 if(src.data_type() == DataType::F16 && info.fp_mixed_precision)
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100188 {
Manuel Bottinib4bb8272019-12-18 18:01:27 +0000189 return pooling_layer_internal<half, float>(src, info);
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100190 }
191
Manuel Bottinib4bb8272019-12-18 18:01:27 +0000192 return pooling_layer_internal<half>(src, info);
Sang-Hoon Park2aa7fd02019-09-18 13:39:00 +0100193}
194
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100195template SimpleTensor<float> pooling_layer(const SimpleTensor<float> &src, const PoolingLayerInfo &info, const QuantizationInfo &output_qinfo);
Georgios Pinitasdc460f12017-08-24 19:02:44 +0100196} // namespace reference
197} // namespace validation
198} // namespace test
199} // namespace arm_compute