blob: 919b76ed8d2f6398e9382f591432088078fb6151 [file] [log] [blame]
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +00001/*
Pablo Telloa52e4cf2019-04-01 14:55:18 +01002 * Copyright (c) 2017-2019 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
Pablo Telloa52e4cf2019-04-01 14:55:18 +010026#if defined(OFFSET_IN1) && defined(OFFSET_OUT) && defined(SCALE_IN1) && defined(SCALE_OUT)
27#define VEC_FLOAT(VEC_SIZE) \
28 VEC_DATA_TYPE(float, VEC_SIZE) \
29#define VEC_INT(VEC_SIZE) VEC_DATA_TYPE(int, VEC_SIZE) #define VEC_UCHAR(VEC_SIZE) VEC_DATA_TYPE(uchar, VEC_SIZE) #define CONVERT_RTE(x, type)(convert_##type##_rte((x)))
30#define CONVERT_DOWN(x, type) CONVERT_RTE(x, type)
31#define REQUANTIZE(VEC_SIZE, input, in_offset, out_offset, in_scale, out_scale, res) \
32 { \
33 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); \
34 const VEC_FLOAT(VEC_SIZE) out_f32 = in_f32 / ((VEC_FLOAT(VEC_SIZE))(float)out_scale) + ((VEC_FLOAT(VEC_SIZE))((float)out_offset)); \
35 res = CONVERT_SAT(CONVERT_DOWN(out_f32, VEC_INT(VEC_SIZE)), VEC_UCHAR(VEC_SIZE)); \
36 }
37#endif /* defined(OFFSET_IN1) && defined(OFFSET_OUT) && defined(SCALE_IN1) && defined(SCALE_OUT) */
38
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000039#if defined(POOL_AVG)
40#define POOL_OP(x, y) ((x) + (y))
41#else /* defined(POOL_AVG) */
42#define POOL_OP(x, y) (max((x), (y)))
43#endif /* defined(POOL_AVG) */
44
45#define DIV_OP(x, y) (x * (1.f / y))
46
Michalis Spyroue74b2012018-04-18 09:49:16 +010047#define DIV_OP_NHWC(x, y) (convert_float8(x) * (float8)(1.f / y))
48
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000049#if defined(POOL_L2)
50#error "L2 pooling is not supported"
51#endif /* defined(POOL_L2) */
52
Isabella Gottardia527e8c2018-01-31 17:49:25 +000053int 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 +000054 const int pad_x, const int pad_y, const int stride_x, const int stride_y)
55{
56 int start_x = get_global_id(0) * stride_x - pad_x;
57 int start_y = get_global_id(1) * stride_y - pad_y;
Isabella Gottardia527e8c2018-01-31 17:49:25 +000058 const int end_x = min(start_x + pool_size_x, upper_bound_w);
59 const int end_y = min(start_y + pool_size_y, upper_bound_h);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000060#if defined(EXCLUDE_PADDING)
61 start_x = max(0, start_x);
62 start_y = max(0, start_y);
63#endif /* defined(EXCLUDE_PADDING) */
64 return ((end_y - start_y) * (end_x - start_x));
65}
66
Michalis Spyroue74b2012018-04-18 09:49:16 +010067/** Performs a pooling function of pool size equal to N (NCHW)
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000068 *
Isabella Gottardia527e8c2018-01-31 17:49:25 +000069 * @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 +000070 * @note In case of average pooling the following information must be passed at compile time:
71 * -DPOOL_AVG must be provided otherwise max pooling will be performed.
72 * -DMAX_WIDTH and -DMAX_HEIGHT which are the maximum accessible indeces in x and y dimensions (width + pad)
73 * -DSTRIDE_X and -DSTRIDE_Y which are the steps of the window along the x and y directions
74 * -DPAD_X and -DPAD_Y which are the pooling paddings in x and y dimension
75 *
76 * @param[in] input_ptr Pointer to the source image. Supported data types: QASYMM8
77 * @param[in] input_stride_x Stride of the source image in X dimension (in bytes)
78 * @param[in] input_step_x input_stride_x * number of elements along X processed per workitem(in bytes)
79 * @param[in] input_stride_y Stride of the source image in Y dimension (in bytes)
80 * @param[in] input_step_y input_stride_y * number of elements along Y processed per workitem(in bytes)
81 * @param[in] input_stride_z Stride of the source tensor in Z dimension (in bytes)
82 * @param[in] input_step_z input_stride_z * number of elements along Z processed per workitem(in bytes)
83 * @param[in] input_offset_first_element_in_bytes The offset of the first element in the source image
84 * @param[out] output_ptr Pointer to the destination image. Supported data types: same as @p input_ptr
85 * @param[in] output_stride_x Stride of the destination image in X dimension (in bytes)
86 * @param[in] output_step_x output_stride_x * number of elements along X processed per workitem(in bytes)
87 * @param[in] output_stride_y Stride of the destination image in Y dimension (in bytes)
88 * @param[in] output_step_y output_stride_y * number of elements along Y processed per workitem(in bytes)
89 * @param[in] output_stride_z Stride of the source tensor in Z dimension (in bytes)
90 * @param[in] output_step_z output_stride_z * number of elements along Z processed per workitem(in bytes)
91 * @param[in] output_offset_first_element_in_bytes The offset of the first element in the destination image
92 */
Michalis Spyroue74b2012018-04-18 09:49:16 +010093__kernel void pooling_layer_MxN_quantized_nchw(
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000094 TENSOR3D_DECLARATION(input),
95 TENSOR3D_DECLARATION(output))
96{
97 // Get pixels pointer
98 Tensor3D input = CONVERT_TO_TENSOR3D_STRUCT(input);
99 Tensor3D output = CONVERT_TO_TENSOR3D_STRUCT(output);
100
101 int8 vdata = 0;
102 int sdata = 0;
103
104 // Load data
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000105 for(int y = 0; y < POOL_SIZE_Y; y++)
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000106 {
107 int x = 0;
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000108 for(; x <= ((int)POOL_SIZE_X - 8); x += 8)
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000109 {
110 uchar8 data = vload8(0, (__global uchar *)tensor3D_offset(&input, x, y, 0));
111 int8 data0 = convert_int8(data);
112 vdata = POOL_OP(vdata, data0);
113 }
114
115 // Leftover
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000116 for(; x < (int)POOL_SIZE_X; ++x)
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000117 {
118 uchar data = *((__global uchar *)tensor3D_offset(&input, x, y, 0));
119 int data0 = convert_int(data);
120 sdata = POOL_OP(sdata, data0);
121 }
122 }
123
124 // Reduce result
125 int4 reduce4 = POOL_OP(vdata.s0123, vdata.s4567);
126 int2 reduce2 = POOL_OP(reduce4.s01, reduce4.s23);
127 int res = POOL_OP(reduce2.s0, reduce2.s1);
128 res = POOL_OP(res, sdata);
129
130#if defined(POOL_AVG)
Isabella Gottardia527e8c2018-01-31 17:49:25 +0000131 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 +0000132#endif /* defined(POOL_AVG) */
133
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100134 uchar result_u8 = convert_uchar(res);
135
136#if defined(OFFSET_IN1) && defined(OFFSET_OUT) && defined(SCALE_IN1) && defined(SCALE_OUT)
137
138 const float result_f32 = convert_float(result_u8);
139 const float input_offset = (float)OFFSET_IN1;
140 const float input_scale = (float)SCALE_IN1;
141 const float scale_out = (float)SCALE_OUT;
142 const float offset_out = (float)OFFSET_OUT;
143 const float in_f32 = (result_f32 - input_offset) * input_scale;
144 const float out_f32 = in_f32 / scale_out + offset_out;
145 result_u8 = convert_uchar_sat(convert_int_rte(out_f32));
146
147#endif /* defined(OFFSET_IN1) && defined(OFFSET_OUT) && defined(SCALE_IN1) && defined(SCALE_OUT) */
148
149 *(__global uchar *)output.ptr = result_u8;
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000150}
Michalis Spyroue74b2012018-04-18 09:49:16 +0100151
152int calculate_avg_scale_nhwc(const int pool_size_x, const int pool_size_y, int upper_bound_w, int upper_bound_h,
153 const int pad_x, const int pad_y, const int stride_x, const int stride_y)
154{
155 int start_x = get_global_id(1) * stride_x - pad_x;
Georgios Pinitas89d71732018-10-29 20:07:15 +0000156#if defined(DST_DEPTH)
157 int start_y = (get_global_id(2) % DST_DEPTH) * stride_y - pad_y;
158#else /* defined(DST_DEPTH) */
Michalis Spyrou645e8372018-10-30 16:41:21 +0000159 int start_y = get_global_id(2) * stride_y - pad_y;
Georgios Pinitas89d71732018-10-29 20:07:15 +0000160#endif /* defined(DST_DEPTH) */
Michalis Spyroue74b2012018-04-18 09:49:16 +0100161
162 const int end_x = min(start_x + pool_size_x, upper_bound_w);
163 const int end_y = min(start_y + pool_size_y, upper_bound_h);
164
165 start_x = max(0, start_x);
166 start_y = max(0, start_y);
167
168 return ((end_y - start_y) * (end_x - start_x));
169}
170
171/** Performs a pooling function of pool size equal to N (NHWC)
172 *
173 * @note Pool sizes must be passed using -DPOOL_SIZE_X and -DPOOL_SIZE_Y e.g. -DPOOL_SIZE_X=13;
174 * @note Tensors width and height must be passed at compile time using -DMAX_WIDTH and -DMAX_HEIGHT
175 * @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
176 * @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
177 * @note In case of average pooling the following information must be passed at compile time:
178 * -DPOOL_AVG must be provided otherwise max pooling will be performed.
179 *
180 * @param[in] input_ptr Pointer to the source image. Supported data types: QASYMM8
181 * @param[in] input_stride_x Stride of the source image in X dimension (in bytes)
182 * @param[in] input_step_x input_stride_x * number of elements along X processed per workitem(in bytes)
183 * @param[in] input_stride_y Stride of the source image in Y dimension (in bytes)
184 * @param[in] input_step_y input_stride_y * number of elements along Y processed per workitem(in bytes)
185 * @param[in] input_stride_z Stride of the source tensor in Z dimension (in bytes)
186 * @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 +0000187 * @param[in] input_stride_w Stride of the source tensor in W dimension (in bytes)
188 * @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 +0100189 * @param[in] input_offset_first_element_in_bytes The offset of the first element in the source image
190 * @param[out] output_ptr Pointer to the destination image. Supported data types: same as @p input_ptr
Georgios Pinitas89d71732018-10-29 20:07:15 +0000191 * @param[in] output_stride_x Stride of the destination tensor in X dimension (in bytes)
Michalis Spyroue74b2012018-04-18 09:49:16 +0100192 * @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 +0000193 * @param[in] output_stride_y Stride of the destination tensor in Y dimension (in bytes)
Michalis Spyroue74b2012018-04-18 09:49:16 +0100194 * @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 +0000195 * @param[in] output_stride_z Stride of the destination tensor in Z dimension (in bytes)
Michalis Spyroue74b2012018-04-18 09:49:16 +0100196 * @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 +0000197 * @param[in] output_stride_w Stride of the destination tensor in W dimension (in bytes)
198 * @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 +0100199 * @param[in] output_offset_first_element_in_bytes The offset of the first element in the destination image
200 */
201__kernel void pooling_layer_MxN_quantized_nhwc(
Georgios Pinitas89d71732018-10-29 20:07:15 +0000202 TENSOR4D_DECLARATION(input),
203 TENSOR4D_DECLARATION(output))
Michalis Spyroue74b2012018-04-18 09:49:16 +0100204{
205 // Get pixels pointer
Georgios Pinitas89d71732018-10-29 20:07:15 +0000206#if defined(DST_DEPTH)
207 Tensor4D input = CONVERT_TO_TENSOR4D_STRUCT(input, DST_DEPTH);
208 Tensor4D output = CONVERT_TO_TENSOR4D_STRUCT(output, DST_DEPTH);
209#else /* defined(DST_DEPTH) */
Michalis Spyrou645e8372018-10-30 16:41:21 +0000210 Tensor3D input = CONVERT_TO_TENSOR3D_STRUCT(input);
211 Tensor3D output = CONVERT_TO_TENSOR3D_STRUCT(output);
Georgios Pinitas89d71732018-10-29 20:07:15 +0000212#endif /* defined(DST_DEPTH) */
Michalis Spyroue74b2012018-04-18 09:49:16 +0100213
214 int8 vdata = 0;
215
Georgios Pinitas89d71732018-10-29 20:07:15 +0000216 const int idx_width = get_global_id(1) * STRIDE_X;
217#if defined(DST_DEPTH)
218 const int idx_height = (get_global_id(2) % DST_DEPTH) * STRIDE_Y;
219#else /* defined(DST_DEPTH) */
Michalis Spyrou645e8372018-10-30 16:41:21 +0000220 const int idx_height = get_global_id(2) * STRIDE_Y;
Georgios Pinitas89d71732018-10-29 20:07:15 +0000221#endif /* defined(DST_DEPTH) */
Michalis Spyroue74b2012018-04-18 09:49:16 +0100222
223 for(int y = 0; y < POOL_SIZE_Y; ++y)
224 {
Michalis Spyrou645e8372018-10-30 16:41:21 +0000225 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 +0100226 for(int x = 0; x < POOL_SIZE_X; ++x)
227 {
Michalis Spyrou645e8372018-10-30 16:41:21 +0000228 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 +0000229 x1 = select(x1, PAD_X - idx_width - 1, y != y1);
230
231#if defined(DST_DEPTH)
232 uchar8 data = vload8(0, (__global uchar *)tensor4D_offset(&input, 0, x1 - PAD_X, y1 - PAD_Y, 0));
233#else /* defined(DST_DEPTH) */
Michalis Spyrou645e8372018-10-30 16:41:21 +0000234 uchar8 data = vload8(0, (__global uchar *)tensor3D_offset(&input, 0, x1 - PAD_X, y1 - PAD_Y));
Georgios Pinitas89d71732018-10-29 20:07:15 +0000235#endif /* defined(DST_DEPTH) */
236
237 int8 data0 = convert_int8(data);
238 vdata = POOL_OP(vdata, data0);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100239 }
240 }
241
242#if defined(POOL_AVG)
243 // Divide by pool region in case of average pooling
244 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))));
245#endif /* defined(POOL_AVG) */
246
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100247 uchar8 out_u8 = convert_uchar8(vdata);
248#if defined(OFFSET_IN1) && defined(OFFSET_OUT) && defined(SCALE_IN1) && defined(SCALE_OUT)
249 REQUANTIZE(8, out_u8, OFFSET_IN1, OFFSET_OUT, SCALE_IN1, SCALE_OUT, out_u8);
250#endif /* defined(OFFSET_IN1) && defined(OFFSET_OUT) && defined(SCALE_IN1) && defined(SCALE_OUT) */
251
Michalis Spyroue74b2012018-04-18 09:49:16 +0100252 // Store result
Pablo Telloa52e4cf2019-04-01 14:55:18 +0100253 vstore8(out_u8, 0, (__global uchar *)output.ptr);
254}