blob: fe13464b1e6eba6a92f4919f8cb2dad081be8a4d [file] [log] [blame]
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +00003 *
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 "helpers.h"
25
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000026#if defined(DATA_TYPE) && defined(INITIAL_VALUE)
27#define VEC_TYPE(VEC_SIZE) VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
28
Pablo Telloa52e4cf2019-04-01 14:55:18 +010029#if defined(OFFSET_IN1) && defined(OFFSET_OUT) && defined(SCALE_IN1) && defined(SCALE_OUT)
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000030#define VEC_FLOAT(VEC_SIZE) VEC_DATA_TYPE(float, VEC_SIZE)
Michalis Spyrou4335a8c2019-04-05 16:41:30 +010031#define VEC_INT(VEC_SIZE) VEC_DATA_TYPE(int, VEC_SIZE)
Michalis Spyrou4335a8c2019-04-05 16:41:30 +010032#define CONVERT_RTE(x, type) (convert_##type##_rte((x)))
Pablo Telloa52e4cf2019-04-01 14:55:18 +010033#define CONVERT_DOWN(x, type) CONVERT_RTE(x, type)
34#define REQUANTIZE(VEC_SIZE, input, in_offset, out_offset, in_scale, out_scale, res) \
35 { \
36 const VEC_FLOAT(VEC_SIZE) in_f32 = (CONVERT(input, VEC_FLOAT(VEC_SIZE)) - (VEC_FLOAT(VEC_SIZE))((float)in_offset)) * (VEC_FLOAT(VEC_SIZE))((float)in_scale); \
37 const VEC_FLOAT(VEC_SIZE) out_f32 = in_f32 / ((VEC_FLOAT(VEC_SIZE))(float)out_scale) + ((VEC_FLOAT(VEC_SIZE))((float)out_offset)); \
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000038 res = CONVERT_SAT(CONVERT_DOWN(out_f32, VEC_INT(VEC_SIZE)), VEC_TYPE(VEC_SIZE)); \
Pablo Telloa52e4cf2019-04-01 14:55:18 +010039 }
40#endif /* defined(OFFSET_IN1) && defined(OFFSET_OUT) && defined(SCALE_IN1) && defined(SCALE_OUT) */
41
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000042#if defined(POOL_AVG)
43#define POOL_OP(x, y) ((x) + (y))
44#else /* defined(POOL_AVG) */
45#define POOL_OP(x, y) (max((x), (y)))
46#endif /* defined(POOL_AVG) */
47
48#define DIV_OP(x, y) (x * (1.f / y))
49
Michalis Spyroue74b2012018-04-18 09:49:16 +010050#define DIV_OP_NHWC(x, y) (convert_float8(x) * (float8)(1.f / y))
51
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000052#if defined(POOL_L2)
53#error "L2 pooling is not supported"
54#endif /* defined(POOL_L2) */
55
Isabella Gottardia527e8c2018-01-31 17:49:25 +000056int calculate_avg_scale(const int pool_size_x, const int pool_size_y, const int upper_bound_w, const int upper_bound_h,
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000057 const int pad_x, const int pad_y, const int stride_x, const int stride_y)
58{
59 int start_x = get_global_id(0) * stride_x - pad_x;
60 int start_y = get_global_id(1) * stride_y - pad_y;
Isabella Gottardia527e8c2018-01-31 17:49:25 +000061 const int end_x = min(start_x + pool_size_x, upper_bound_w);
62 const int end_y = min(start_y + pool_size_y, upper_bound_h);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000063#if defined(EXCLUDE_PADDING)
64 start_x = max(0, start_x);
65 start_y = max(0, start_y);
66#endif /* defined(EXCLUDE_PADDING) */
67 return ((end_y - start_y) * (end_x - start_x));
68}
69
Michalis Spyroue74b2012018-04-18 09:49:16 +010070/** Performs a pooling function of pool size equal to N (NCHW)
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000071 *
Isabella Gottardia527e8c2018-01-31 17:49:25 +000072 * @note Pool sizes must be passed using -DPOOL_SIZE_X and -DPOOL_SIZE_Y e.g. -DPOOL_SIZE_X=13;
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000073 * @note In case of average pooling the following information must be passed at compile time:
74 * -DPOOL_AVG must be provided otherwise max pooling will be performed.
75 * -DMAX_WIDTH and -DMAX_HEIGHT which are the maximum accessible indeces in x and y dimensions (width + pad)
76 * -DSTRIDE_X and -DSTRIDE_Y which are the steps of the window along the x and y directions
77 * -DPAD_X and -DPAD_Y which are the pooling paddings in x and y dimension
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000078 * @note Input data type must be passed at compile time using -DDAT_TYPE=type, e.g. -DDATA_TYPE=uchar
79 * @note The initial value for the pooling operation must be passed at compile time using -DINITIAL_VALUE e.g. -DINITIAL_VALUE=0
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000080 *
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000081 * @param[in] input_ptr Pointer to the source image. Supported data types: QASYMM8/QASYMM8_SIGNED
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000082 * @param[in] input_stride_x Stride of the source image in X dimension (in bytes)
83 * @param[in] input_step_x input_stride_x * number of elements along X processed per workitem(in bytes)
84 * @param[in] input_stride_y Stride of the source image in Y dimension (in bytes)
85 * @param[in] input_step_y input_stride_y * number of elements along Y processed per workitem(in bytes)
86 * @param[in] input_stride_z Stride of the source tensor in Z dimension (in bytes)
87 * @param[in] input_step_z input_stride_z * number of elements along Z processed per workitem(in bytes)
88 * @param[in] input_offset_first_element_in_bytes The offset of the first element in the source image
89 * @param[out] output_ptr Pointer to the destination image. Supported data types: same as @p input_ptr
90 * @param[in] output_stride_x Stride of the destination image in X dimension (in bytes)
91 * @param[in] output_step_x output_stride_x * number of elements along X processed per workitem(in bytes)
92 * @param[in] output_stride_y Stride of the destination image in Y dimension (in bytes)
93 * @param[in] output_step_y output_stride_y * number of elements along Y processed per workitem(in bytes)
94 * @param[in] output_stride_z Stride of the source tensor in Z dimension (in bytes)
95 * @param[in] output_step_z output_stride_z * number of elements along Z processed per workitem(in bytes)
96 * @param[in] output_offset_first_element_in_bytes The offset of the first element in the destination image
97 */
Michalis Spyroue74b2012018-04-18 09:49:16 +010098__kernel void pooling_layer_MxN_quantized_nchw(
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000099 TENSOR3D_DECLARATION(input),
100 TENSOR3D_DECLARATION(output))
101{
102 // Get pixels pointer
103 Tensor3D input = CONVERT_TO_TENSOR3D_STRUCT(input);
104 Tensor3D output = CONVERT_TO_TENSOR3D_STRUCT(output);
105
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000106 int8 vdata = INITIAL_VALUE;
107 int sdata = INITIAL_VALUE;
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000108
109 // Load data
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000110 for(int y = 0; y < POOL_SIZE_Y; y++)
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000111 {
112 int x = 0;
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000113 for(; x <= ((int)POOL_SIZE_X - 8); x += 8)
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000114 {
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000115 VEC_TYPE(8)
116 data = vload8(0, (__global DATA_TYPE *)tensor3D_offset(&input, x, y, 0));
117 int8 data0 = convert_int8(data);
118 vdata = POOL_OP(vdata, data0);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000119 }
120
121 // Leftover
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000122 for(; x < (int)POOL_SIZE_X; ++x)
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000123 {
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000124 DATA_TYPE data = *((__global DATA_TYPE *)tensor3D_offset(&input, x, y, 0));
125 int data0 = convert_int(data);
126 sdata = POOL_OP(sdata, data0);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000127 }
128 }
129
130 // Reduce result
131 int4 reduce4 = POOL_OP(vdata.s0123, vdata.s4567);
132 int2 reduce2 = POOL_OP(reduce4.s01, reduce4.s23);
133 int res = POOL_OP(reduce2.s0, reduce2.s1);
134 res = POOL_OP(res, sdata);
135
136#if defined(POOL_AVG)
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000137 res = round(DIV_OP(res, calculate_avg_scale(POOL_SIZE_X, POOL_SIZE_Y, MAX_WIDTH, MAX_HEIGHT, PAD_X, PAD_Y, STRIDE_X, STRIDE_Y)));
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000138#endif /* defined(POOL_AVG) */
139
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000140 DATA_TYPE result_q8 = CONVERT(res, DATA_TYPE);
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100141
142#if defined(OFFSET_IN1) && defined(OFFSET_OUT) && defined(SCALE_IN1) && defined(SCALE_OUT)
143
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000144 const float result_f32 = convert_float(result_q8);
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100145 const float input_offset = (float)OFFSET_IN1;
146 const float input_scale = (float)SCALE_IN1;
147 const float scale_out = (float)SCALE_OUT;
148 const float offset_out = (float)OFFSET_OUT;
149 const float in_f32 = (result_f32 - input_offset) * input_scale;
150 const float out_f32 = in_f32 / scale_out + offset_out;
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000151 result_q8 = CONVERT_SAT(convert_int_rte(out_f32), DATA_TYPE);
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100152
153#endif /* defined(OFFSET_IN1) && defined(OFFSET_OUT) && defined(SCALE_IN1) && defined(SCALE_OUT) */
154
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000155 *(__global DATA_TYPE *)output.ptr = result_q8;
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000156}
Michalis Spyroue74b2012018-04-18 09:49:16 +0100157
158int calculate_avg_scale_nhwc(const int pool_size_x, const int pool_size_y, int upper_bound_w, int upper_bound_h,
159 const int pad_x, const int pad_y, const int stride_x, const int stride_y)
160{
161 int start_x = get_global_id(1) * stride_x - pad_x;
Georgios Pinitas89d71732018-10-29 20:07:15 +0000162#if defined(DST_DEPTH)
163 int start_y = (get_global_id(2) % DST_DEPTH) * stride_y - pad_y;
164#else /* defined(DST_DEPTH) */
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000165 int start_y = get_global_id(2) * stride_y - pad_y;
Georgios Pinitas89d71732018-10-29 20:07:15 +0000166#endif /* defined(DST_DEPTH) */
Michalis Spyroue74b2012018-04-18 09:49:16 +0100167
168 const int end_x = min(start_x + pool_size_x, upper_bound_w);
169 const int end_y = min(start_y + pool_size_y, upper_bound_h);
170
171 start_x = max(0, start_x);
172 start_y = max(0, start_y);
173
174 return ((end_y - start_y) * (end_x - start_x));
175}
176
177/** Performs a pooling function of pool size equal to N (NHWC)
178 *
179 * @note Pool sizes must be passed using -DPOOL_SIZE_X and -DPOOL_SIZE_Y e.g. -DPOOL_SIZE_X=13;
180 * @note Tensors width and height must be passed at compile time using -DMAX_WIDTH and -DMAX_HEIGHT
181 * @note Strides must be passed at compile time using -DSTRIDE_X and -DSTRIDE_Y which are the steps of the window along the x and y directions
182 * @note Pad values must be passed at compile time using -DPAD_X and -DPAD_Y which are the pooling paddings in x and y dimension
183 * @note In case of average pooling the following information must be passed at compile time:
184 * -DPOOL_AVG must be provided otherwise max pooling will be performed.
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000185 * @note The initial value for the pooling operation must be passed at compile time using -DINITIAL_VALUE e.g. -DINITIAL_VALUE=0
Michalis Spyroue74b2012018-04-18 09:49:16 +0100186 *
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000187 * @param[in] input_ptr Pointer to the source image. Supported data types: QASYMM8/QASYMM8_SIGNED
Michalis Spyroue74b2012018-04-18 09:49:16 +0100188 * @param[in] input_stride_x Stride of the source image in X dimension (in bytes)
189 * @param[in] input_step_x input_stride_x * number of elements along X processed per workitem(in bytes)
190 * @param[in] input_stride_y Stride of the source image in Y dimension (in bytes)
191 * @param[in] input_step_y input_stride_y * number of elements along Y processed per workitem(in bytes)
192 * @param[in] input_stride_z Stride of the source tensor in Z dimension (in bytes)
193 * @param[in] input_step_z input_stride_z * number of elements along Z processed per workitem(in bytes)
Georgios Pinitas89d71732018-10-29 20:07:15 +0000194 * @param[in] input_stride_w Stride of the source tensor in W dimension (in bytes)
195 * @param[in] input_step_w input_stride_w * number of elements along W processed per workitem(in bytes)
Michalis Spyroue74b2012018-04-18 09:49:16 +0100196 * @param[in] input_offset_first_element_in_bytes The offset of the first element in the source image
197 * @param[out] output_ptr Pointer to the destination image. Supported data types: same as @p input_ptr
Georgios Pinitas89d71732018-10-29 20:07:15 +0000198 * @param[in] output_stride_x Stride of the destination tensor in X dimension (in bytes)
Michalis Spyroue74b2012018-04-18 09:49:16 +0100199 * @param[in] output_step_x output_stride_x * number of elements along X processed per workitem(in bytes)
Georgios Pinitas89d71732018-10-29 20:07:15 +0000200 * @param[in] output_stride_y Stride of the destination tensor in Y dimension (in bytes)
Michalis Spyroue74b2012018-04-18 09:49:16 +0100201 * @param[in] output_step_y output_stride_y * number of elements along Y processed per workitem(in bytes)
Georgios Pinitas89d71732018-10-29 20:07:15 +0000202 * @param[in] output_stride_z Stride of the destination tensor in Z dimension (in bytes)
Michalis Spyroue74b2012018-04-18 09:49:16 +0100203 * @param[in] output_step_z output_stride_z * number of elements along Z processed per workitem(in bytes)
Georgios Pinitas89d71732018-10-29 20:07:15 +0000204 * @param[in] output_stride_w Stride of the destination tensor in W dimension (in bytes)
205 * @param[in] output_step_w output_stride_w * number of elements along W processed per workitem(in bytes)
Michalis Spyroue74b2012018-04-18 09:49:16 +0100206 * @param[in] output_offset_first_element_in_bytes The offset of the first element in the destination image
207 */
208__kernel void pooling_layer_MxN_quantized_nhwc(
Georgios Pinitas89d71732018-10-29 20:07:15 +0000209 TENSOR4D_DECLARATION(input),
210 TENSOR4D_DECLARATION(output))
Michalis Spyroue74b2012018-04-18 09:49:16 +0100211{
212 // Get pixels pointer
Georgios Pinitas89d71732018-10-29 20:07:15 +0000213#if defined(DST_DEPTH)
214 Tensor4D input = CONVERT_TO_TENSOR4D_STRUCT(input, DST_DEPTH);
215 Tensor4D output = CONVERT_TO_TENSOR4D_STRUCT(output, DST_DEPTH);
216#else /* defined(DST_DEPTH) */
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000217 Tensor3D input = CONVERT_TO_TENSOR3D_STRUCT(input);
218 Tensor3D output = CONVERT_TO_TENSOR3D_STRUCT(output);
Georgios Pinitas89d71732018-10-29 20:07:15 +0000219#endif /* defined(DST_DEPTH) */
Michalis Spyroue74b2012018-04-18 09:49:16 +0100220
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000221 int8 vdata = INITIAL_VALUE;
Michalis Spyroue74b2012018-04-18 09:49:16 +0100222
Georgios Pinitas89d71732018-10-29 20:07:15 +0000223 const int idx_width = get_global_id(1) * STRIDE_X;
224#if defined(DST_DEPTH)
225 const int idx_height = (get_global_id(2) % DST_DEPTH) * STRIDE_Y;
226#else /* defined(DST_DEPTH) */
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000227 const int idx_height = get_global_id(2) * STRIDE_Y;
Georgios Pinitas89d71732018-10-29 20:07:15 +0000228#endif /* defined(DST_DEPTH) */
Michalis Spyroue74b2012018-04-18 09:49:16 +0100229
230 for(int y = 0; y < POOL_SIZE_Y; ++y)
231 {
Michalis Spyrou645e8372018-10-30 16:41:21 +0000232 int y1 = select(y, PAD_Y - idx_height, y + idx_height - PAD_Y < 0 || y + idx_height - PAD_Y >= MAX_HEIGHT);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100233 for(int x = 0; x < POOL_SIZE_X; ++x)
234 {
Michalis Spyrou645e8372018-10-30 16:41:21 +0000235 int x1 = select(x, PAD_X - idx_width - 1, x + idx_width - PAD_X < 0 || x + idx_width - PAD_X >= MAX_WIDTH);
Georgios Pinitas89d71732018-10-29 20:07:15 +0000236 x1 = select(x1, PAD_X - idx_width - 1, y != y1);
237
238#if defined(DST_DEPTH)
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000239 VEC_TYPE(8)
240 data = vload8(0, (__global DATA_TYPE *)tensor4D_offset(&input, 0, x1 - PAD_X, y1 - PAD_Y, 0));
Georgios Pinitas89d71732018-10-29 20:07:15 +0000241#else /* defined(DST_DEPTH) */
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000242 VEC_TYPE(8)
243 data = vload8(0, (__global DATA_TYPE *)tensor3D_offset(&input, 0, x1 - PAD_X, y1 - PAD_Y));
Georgios Pinitas89d71732018-10-29 20:07:15 +0000244#endif /* defined(DST_DEPTH) */
245
246 int8 data0 = convert_int8(data);
247 vdata = POOL_OP(vdata, data0);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100248 }
249 }
250
251#if defined(POOL_AVG)
252 // Divide by pool region in case of average pooling
253 vdata = convert_int8(round(DIV_OP_NHWC(vdata, calculate_avg_scale_nhwc(POOL_SIZE_X, POOL_SIZE_Y, MAX_WIDTH, MAX_HEIGHT, PAD_X, PAD_Y, STRIDE_X, STRIDE_Y))));
254#endif /* defined(POOL_AVG) */
255
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000256 VEC_TYPE(8)
257 out_q8 = CONVERT(vdata, VEC_TYPE(8));
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100258#if defined(OFFSET_IN1) && defined(OFFSET_OUT) && defined(SCALE_IN1) && defined(SCALE_OUT)
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000259 REQUANTIZE(8, out_q8, OFFSET_IN1, OFFSET_OUT, SCALE_IN1, SCALE_OUT, out_q8);
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100260#endif /* defined(OFFSET_IN1) && defined(OFFSET_OUT) && defined(SCALE_IN1) && defined(SCALE_OUT) */
261
Michalis Spyroue74b2012018-04-18 09:49:16 +0100262 // Store result
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000263 vstore8(out_q8, 0, (__global DATA_TYPE *)output.ptr);
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100264}
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000265#endif /* defined(DATA_TYPE) && defined(INITIAL_VALUE) */