blob: ec2593af7133579d7ca3b2c4d319542c1284c0fa [file] [log] [blame]
Gian Marco Iodice8155c022021-04-16 15:08:59 +01001/*
2 * Copyright (c) 2021 Arm Limited.
3 *
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
25#include "helpers.h"
26#include "tile_helpers.h"
27
28#define CALCULATE_WEIGHTS_OFFSET_CORRECTION(A_DATA_TYPE, B_DATA_TYPE) CALCULATE_WEIGHTS_OFFSET_CORRECTION_STR(A_DATA_TYPE, B_DATA_TYPE)
29#define CALCULATE_WEIGHTS_OFFSET_CORRECTION_STR(A_DATA_TYPE, B_DATA_TYPE) CALCULATE_WEIGHTS_OFFSET_CORRECTION_##A_DATA_TYPE##_##B_DATA_TYPE
30#define CALCULATE_WEIGHTS_OFFSET_CORRECTION_char_char (0)
31#define CALCULATE_WEIGHTS_OFFSET_CORRECTION_uchar_uchar (0)
32#define CALCULATE_WEIGHTS_OFFSET_CORRECTION_uchar_char (128)
33#define CALCULATE_WEIGHTS_OFFSET_CORRECTION_char_uchar (-128)
34
35#define T_LOAD_MULTIPLIERS_SHIFT_PER_TENSOR() \
36 ({})
37
38#define T_LOAD_MULTIPLIERS_SHIFT_PER_CHANNEL() \
39 TILE(DST_MULTIPLIERS_DATA_TYPE, 1, N0, multipliers); \
40 TILE(DST_SHIFTS_DATA_TYPE, 1, N0, shifts); \
41 T_LOAD(DST_MULTIPLIERS_DATA_TYPE, 1, N0, BUFFER, dst_multipliers, cout *DEPTH_MULTIPLIER + d, 0, 0, 0, multipliers); \
42 T_LOAD(DST_SHIFTS_DATA_TYPE, 1, N0, BUFFER, dst_shifts, cout *DEPTH_MULTIPLIER + d, 0, 0, 0, shifts);
43
44#define T_LOAD_MULTIPLIERS_SHIFT(QUANTIZATION_TYPE) T_LOAD_MULTIPLIERS_SHIFT_STR(QUANTIZATION_TYPE)
45#define T_LOAD_MULTIPLIERS_SHIFT_STR(QUANTIZATION_TYPE) T_LOAD_MULTIPLIERS_SHIFT_##QUANTIZATION_TYPE()
46
Sheri Zhange3b19742021-11-10 13:08:40 +000047#if defined(WEI_WIDTH) && defined(WEI_HEIGHT) && defined(N0) && defined(M0) && defined(DILATION_X) && defined(DILATION_Y) && defined(STRIDE_X) && defined(STRIDE_Y) && defined(PAD_LEFT) && defined(PAD_TOP)
Gian Marco Iodice8155c022021-04-16 15:08:59 +010048//! @cond Doxygen_Suppress
49/** OpenCL kernel to compute the depthwise convolution for quantized data types
50 *
51 * @note Data layout supported: NHWC
52 * @note Data type supported: QSYMM8/QASYMM8/QASYMM8_SIGNED/QSYMM8_PER_CHANNEL
53 * @note The convolution padding (left and top) must be passed at compile time using -DPAD_LEFT and -DPAD_TOP (e.g. -DPAD_LEFT=2, -DPAD_TOP=2)
54 * @note The convolution strides must be passed at compile time using -DSTRIDE_X and -DSTRIDE_Y (e.g. -DSTRIDE_X=2, -DSTRIDE_Y=2)
55 * @note The convolution dilations must be passed at compile time using -DDILATION_X and -DDILATION_Y (e.g. -DDILATION_X=2, -DDILATION_Y=2)
56 * @note The spatial dimensions of the weights must be passed at compile time using -DWEI_WIDTH and -DWEI_HEIGHT (e.g. -DWEI_WIDTH=9, -DWEI_HEIGHT=9)
Gian Marco Iodice8155c022021-04-16 15:08:59 +010057 * @note The tensor type ("BUFFER" or "IMAGE") of the source tensor must be passed at compile time using -DSRC_TENSOR_TYPE (e.g. -DSRC_TENSOR_TYPE=BUFFER)
58 * @note The tensor type ("BUFFER" or "IMAGE") of the weights tensor must be passed at compile time using -DWEI_TENSOR_TYPE (e.g. -DWEI_TENSOR_TYPE=BUFFER)
59 * @note The tensor type ("BUFFER" or "IMAGE") of the destination tensor must be passed at compile time using -DDST_TENSOR_TYPE (e.g. -DDST_TENSOR_TYPE=BUFFER)
60 * @note The data type of the source tensor must be passed at compile time using -DSRC_DATA_TYPE (e.g. -DSRC_DATA_TYPE=int8)
61 * @note The data type of the weights tensor must be passed at compile time using -DWEI_DATA_TYPE (e.g. -DWEI_DATA_TYPE=int8)
62 * @note The data type of the destination tensor must be passed at compile time using -DDST_DATA_TYPE (e.g. -DDST_DATA_TYPE=int8)
63 * @note The data type of the accumulators must be passed at compile time using -DACC_DATA_TYPE (e.g. -DACC_DATA_TYPE=int)
64 * @note The number of M0 rows (width) to process must be passed at compile time using -DM0 (e.g. -DM0=2)
65 * @note The number of N0 output channels to process must be passed at compile time using -DN0 (e.g. -DN0=2)
66 * @note The size of the partial store block in the first dimension must be passed at compile time using -DPARTIAL_N0 (e.g. -DPARTIAL_N0=1)
67 * @note The activation type must be passed at compile using -DACTIVATION_TYPE e.g. -DACTIVATION_TYPE=relu
68 * @note The A and B variables required by some activation functions must be passed at compile time using -DA_VAL= and -DB_VAL= respectively
69 * @note The quantization offset used for both the per-tensor and per-channel quantization must be passed at compile using -DDST_OFFSET (e.g., -DDST_OFFSET=3)
70 * @note The quantization shift for the per-tensor quantization must be passed at compile time using -DDST_SHIFT (e.g., -DDST_SHIFT=1)
71 * @note The quantization multiplier for the per-tensor quantization must be passed at compile using -DDST_MULTIPLIER (e.g., -DDST_MULTIPLER=121432)
72 * @note Only the following configurations of M0 and N0 are currently supported:
73 * - M0 = 1, 2, 3, 4, 5, .... n (M0 != 1 with STRIDE_X == 1 && DILATION_X == 1 only)
74 * - N0 = 2, 3, 4, 8, 16
75 * @note The number of rows to read from the src tensor must be passed at compile time using -DM0_A (e.g., -DM0_A=3). M0_A must be equal to WEI_WIDTH + (M0 - 1)
76 *
77 * @param[in] src_ptr Pointer to the source tensor. Supported data type: QSYMM8/QASYMM8/QASYMM8_SIGNED/QSYMM8_PER_CHANNEL
Gian Marco Iodice8155c022021-04-16 15:08:59 +010078 * @param[in] src_stride_y Stride of the source tensor in Y dimension (in bytes)
Gian Marco Iodice8155c022021-04-16 15:08:59 +010079 * @param[in] src_stride_z Stride of the source tensor in Z dimension (in bytes)
Gian Marco Iodice8155c022021-04-16 15:08:59 +010080 * @param[in] src_stride_w Stride of the source tensor in W dimension (in bytes)
Sheri Zhange3b19742021-11-10 13:08:40 +000081 * @param[in] src_c The size of the channels dimension of the source tensor
82 * @param[in] src_w The size of the width dimension of the source tensor
83 * @param[in] src_h The size of the height dimension of the source tensor
84 * @param[in] src_n The size of the batches dimension of the source tensor
Gian Marco Iodice8155c022021-04-16 15:08:59 +010085 * @param[in] src_offset_first_element_in_bytes The offset of the first element in the source tensor
86 * @param[out] dst_ptr Pointer to the destination tensor. Supported data type: same as @p src_ptr
Gian Marco Iodice8155c022021-04-16 15:08:59 +010087 * @param[in] dst_stride_y Stride of the destination tensor in Y dimension (in bytes)
Gian Marco Iodice8155c022021-04-16 15:08:59 +010088 * @param[in] dst_stride_z Stride of the destination tensor in Z dimension (in bytes)
Gian Marco Iodice8155c022021-04-16 15:08:59 +010089 * @param[in] dst_stride_w Stride of the destination tensor in W dimension (in bytes)
Sheri Zhange3b19742021-11-10 13:08:40 +000090 * @param[in] dst_c The size of the channels dimension of the destination tensor
91 * @param[in] dst_w The size of the width dimension of the destination tensor
92 * @param[in] dst_h The size of the height dimension of the destination tensor
93 * @param[in] dst_n The size of the batches dimension of the destination tensor
Gian Marco Iodice8155c022021-04-16 15:08:59 +010094 * @param[in] dst_offset_first_element_in_bytes The offset of the first element in the destination tensor
95 * @param[in] wei_ptr Pointer to the weights tensor. Supported data type: same as @p src_ptr
96 * @param[in] wei_stride_x Stride of the weights tensor in X dimension (in bytes)
97 * @param[in] wei_step_x wei_stride_x * number of elements along X processed per workitem(in bytes)
98 * @param[in] wei_stride_y Stride of the weights tensor in Y dimension (in bytes)
99 * @param[in] wei_step_y wei_stride_y * number of elements along Y processed per workitem(in bytes)
100 * @param[in] wei_stride_z Stride of the weights tensor in Z dimension (in bytes)
101 * @param[in] wei_step_z wei_stride_z * number of elements along Z processed per workitem(in bytes)
102 * @param[in] wei_stride_w Stride of the weights tensor in W dimension (in bytes)
103 * @param[in] wei_step_w wei_stride_w * number of elements along W processed per workitem(in bytes)
104 * @param[in] wei_offset_first_element_in_bytes The offset of the first element in the weights tensor
105 * @param[in] dst_multipliers_ptr Pointer to the destination multipliers tensor for the per-channel quantization. Supported data type: S32
106 * @param[in] dst_multipliers_stride_x Stride of the destination multipliers tensor in X dimension (in bytes)
107 * @param[in] dst_multipliers_step_x dst_multipliers_stride_x * number of elements along X processed per workitem(in bytes)
108 * @param[in] dst_multipliers_offset_first_element_in_bytes The offset of the first element in the destination multipliers tensor
109 * @param[in] dst_shifts_ptr Pointer to the destination shifts tensor for the per-channel quantization. Supported data type: S32
110 * @param[in] dst_shifts_stride_x Stride of the destination shifts tensor in X dimension (in bytes)
111 * @param[in] dst_shifts_step_x dst_shifts_stride_x * number of elements along X processed per workitem(in bytes)
112 * @param[in] dst_shifts_offset_first_element_in_bytes The offset of the first element in the destination shifts tensor
113 * @param[in] bia_ptr (Optional) Pointer to the bias tensor Supported data type: S32
114 * @param[in] bia_stride_x (Optional) Stride of the bias tensor in X dimension (in bytes)
115 * @param[in] bia_step_x (Optional) bia_stride_x * number of elements along X processed per workitem(in bytes)
116 * @param[in] bia_offset_first_element_in_bytes (Optional) The offset of the first element in the bias tensor
117 */
118//! @endcond
119__kernel void dwc_native_quantized_nhwc(
Sheri Zhange3b19742021-11-10 13:08:40 +0000120 TENSOR4D_T(src, SRC_TENSOR_TYPE),
121 TENSOR4D_T(dst, DST_TENSOR_TYPE),
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100122 TENSOR4D(wei, WEI_TENSOR_TYPE),
123 VECTOR_DECLARATION(dst_multipliers),
124 VECTOR_DECLARATION(dst_shifts)
125#if defined(HAS_BIAS)
126 ,
127 VECTOR_DECLARATION(bia)
128#endif // defined(HAS_BIAS)
129)
130{
Sheri Zhange3b19742021-11-10 13:08:40 +0000131 // Only the weight tensor dimensions are passed at compile time.
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100132 // In case of dynamic tensor support, the following dimensions should be passed as function argument.
133#define _IWEI_WIDTH WEI_WIDTH
134#define _IWEI_HEIGHT WEI_HEIGHT
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100135#define _IM0_A M0_A // _IWEI_WIDTH + (M0 - 1) Rows tile A (If M0 != 1, the tiles overlap of 1 element on the X dimension)
136#define _IN0_A N0 // Cols tile A
137#define _IM0_B _IWEI_WIDTH // Rows tile B
138#define _IN0_B N0 // Cols tile B
139#define _IBOUNDARY_CHECK (!((WEI_WIDTH == 1 && WEI_HEIGHT == 1 && PAD_LEFT == 0 && PAD_TOP == 0 && M0 == 1)))
140
141 const int cout = GET_SPATIAL_IDX(0, N0, PARTIAL_N0); // OFM
142 const int xo = GET_SPATIAL_IDX(1, M0, 0); // WIDTH
143#if defined(BATCHED_EXECUTION)
Sheri Zhange3b19742021-11-10 13:08:40 +0000144 const int yo = GET_SPATIAL_IDX(2, 1, 0) % dst_h; // HEIGHT
145 const int bout = GET_SPATIAL_IDX(2, 1, 0) / dst_h; // BATCH SIZE IDX
146#else // defined(BATCHED_EXECUTION)
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100147 const int yo = GET_SPATIAL_IDX(2, 1, 0); // HEIGHT
148 const int bout = 0; // BATCH SIZE IDX
Sheri Zhange3b19742021-11-10 13:08:40 +0000149#endif // defined(BATCHED_EXECUTION)
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100150
151 int xi = xo * STRIDE_X;
152 int yi = yo * STRIDE_Y;
153 xi -= PAD_LEFT;
154 yi -= PAD_TOP;
155
156 int d = 0;
157#if DEPTH_MULTIPLIER != 1
158 for(; d < DEPTH_MULTIPLIER; d++)
159#endif // DEPTH_MULTIPLIER != 1
160 {
161 TILE(ACC_DATA_TYPE, M0, N0, c);
162
163 // Reset accumulators
164 LOOP_UNROLLING(int, i, 0, 1, M0,
165 {
166 c[i].v = 0;
167 })
168
Gian Marco Iodice04b39e82021-07-07 10:25:41 +0100169#if _IWEI_HEIGHT <= 5
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100170 LOOP_UNROLLING(int, yk, 0, 1, _IWEI_HEIGHT,
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100171#else // _IWEI_HEIGHT <= 5
Gian Marco Iodice04b39e82021-07-07 10:25:41 +0100172 for(int yk = 0; yk < _IWEI_HEIGHT; yk++)
173#endif // _IWEI_HEIGHT <= 5
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100174 {
175 TILE(SRC_DATA_TYPE, _IM0_A, _IN0_A, a);
176
177 LOOP_UNROLLING(int, i, 0, 1, _IM0_A,
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100178 {
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100179 a[i].v = ZERO_VALUE;
180 })
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100181
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100182 // Load tile from the src tensor (TILE A)
Sheri Zhange3b19742021-11-10 13:08:40 +0000183 T_LOAD_NHWC_WITH_DILATION(SRC_DATA_TYPE, 1, _IM0_A, _IN0_A, SRC_TENSOR_TYPE, src, bout, yi + yk * DILATION_Y, xi, cout, src_w, src_h, DILATION_X, 1, _IBOUNDARY_CHECK, a);
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100184
185 TILE(WEI_DATA_TYPE, _IM0_B, _IN0_B, b);
186
187 // Load tile from the weights tensor (TILE B)
188 T_LOAD(WEI_DATA_TYPE, _IM0_B, _IN0_B, WEI_TENSOR_TYPE, wei, cout * DEPTH_MULTIPLIER + d, yk * _IM0_B, 1, wei_stride_y, b);
189
190 // Optimized path for STRIDE_X == 1
191 // If M0 != 1, we can skip the common loads between the two applied kernels on the X (WIDTH) dimension
192 LOOP_UNROLLING(int, m0, 0, 1, M0,
193 {
194 LOOP_UNROLLING(int, n0, 0, 1, N0,
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100195 {
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100196#if _IWEI_WIDTH <= 16
197#define DOT_DATA_TYPE SRC_DATA_TYPE
198#define WEI_OFFSET_CORRECTION (CALCULATE_WEIGHTS_OFFSET_CORRECTION(SRC_DATA_TYPE, WEI_DATA_TYPE))
199
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100200 // Optimized path for the dot instruction
201 TILE(DOT_DATA_TYPE, 1, _IWEI_WIDTH, x0);
202 TILE(DOT_DATA_TYPE, 1, _IWEI_WIDTH, y0);
203 ACC_DATA_TYPE offset_a = 0;
204 ACC_DATA_TYPE offset_b = 0;
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100205
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100206 LOOP_UNROLLING(int, xk, 0, 1, _IWEI_WIDTH,
207 {
208 x0[0].s[xk] = a[xk + m0].s[n0];
209 y0[0].s[xk] = b[xk].s[n0] + (int)WEI_OFFSET_CORRECTION;
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100210 })
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100211 DOT_PRODUCT_INTEGER8(DOT_DATA_TYPE, DOT_DATA_TYPE, ACC_DATA_TYPE, _IWEI_WIDTH, x0[0].v, y0[0].v, c[m0].s[n0]);
212 REDUCE_INTEGER8(DOT_DATA_TYPE, DOT_DATA_TYPE, ACC_DATA_TYPE, _IWEI_WIDTH, x0[0].v, offset_a);
213 REDUCE_INTEGER8(DOT_DATA_TYPE, DOT_DATA_TYPE, ACC_DATA_TYPE, _IWEI_WIDTH, y0[0].v, offset_b);
214 c[m0].s[n0] += offset_a * (ACC_DATA_TYPE)(WEI_OFFSET - (ACC_DATA_TYPE)WEI_OFFSET_CORRECTION) + offset_b * (ACC_DATA_TYPE)SRC_OFFSET;
215#else // _IWEI_WIDTH <= 16
216 LOOP_UNROLLING(int, xk, 0, 1, _IWEI_WIDTH,
217 {
218 c[m0].s[n0] += ((ACC_DATA_TYPE)a[xk + m0].s[n0] + (ACC_DATA_TYPE)(SRC_OFFSET)) * ((ACC_DATA_TYPE)b[xk].s[n0] + (ACC_DATA_TYPE)(WEI_OFFSET));
219 })
220#endif // _IWEI_WIDTH <= 16
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100221 })
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100222 })
223 }
Gian Marco Iodice04b39e82021-07-07 10:25:41 +0100224#if _IWEI_HEIGHT <= 5
Adnan AlSinan7075fe22021-07-05 13:12:52 +0100225 )
Gian Marco Iodice04b39e82021-07-07 10:25:41 +0100226#endif // _IWEI_HEIGHT <= 5
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100227
228#if _IWEI_WIDTH <= 16
229 T_ADD_CONSTANT(ACC_DATA_TYPE, M0, N0, c, (_IWEI_WIDTH * _IWEI_HEIGHT * SRC_OFFSET * (ACC_DATA_TYPE)(WEI_OFFSET - (ACC_DATA_TYPE)WEI_OFFSET_CORRECTION)), c);
230#endif // _IWEI_WIDTH <= 16
231
232#if defined(HAS_BIAS)
233 TILE(BIA_DATA_TYPE, 1, N0, bias0);
234
235 // Load bias
236 T_LOAD(BIA_DATA_TYPE, 1, N0, BUFFER, bia, cout * DEPTH_MULTIPLIER + d, 0, 0, 0, bias0);
237
238 // c = c + bias[broadcasted]
239 T_ADD_BROADCAST_X(ACC_DATA_TYPE, M0, N0, c, bias0, c);
240#endif // HAS_BIAS
241
242 T_LOAD_MULTIPLIERS_SHIFT(QUANTIZATION_TYPE);
243
244 // Quantize the tile
245 TILE(DST_DATA_TYPE, M0, N0, cq);
246 T_QUANTIZE8(ACC_DATA_TYPE, DST_DATA_TYPE, QUANTIZATION_TYPE, M0, N0, DST_OFFSET, DST_SHIFT, DST_MULTIPLIER, c, multipliers, shifts, cq);
247
248 // Perform activation
249 T_ACTIVATION_QUANTIZED(DST_DATA_TYPE, M0, N0, ACTIVATION_TYPE, DST_OFFSET, A_VAL, B_VAL, cq, cq);
250
251 bool x_cond = PARTIAL_N0 != 0 && get_global_id(0) == 0;
252
253 if(x_cond)
254 {
255 LOOP_UNROLLING(int, m0, 0, 1, M0,
256 {
Sheri Zhange3b19742021-11-10 13:08:40 +0000257 int xi_out = min(xo + M0 - 1 - m0, (int)(dst_w) - 1);
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100258 VSTORE_PARTIAL(N0, PARTIAL_N0)
Gian Marco Iodice04b39e82021-07-07 10:25:41 +0100259 (cq[M0 - 1 - m0].v, 0, (__global DST_DATA_TYPE *)(dst_ptr + dst_offset_first_element_in_bytes + (uint)((cout * DEPTH_MULTIPLIER) + d) * sizeof(DST_DATA_TYPE) + (uint)xi_out * dst_stride_y + (uint)yo * dst_stride_z + (uint)bout * dst_stride_w));
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100260 })
261 }
262 else
263 {
264 LOOP_UNROLLING(int, m0, 0, 1, M0,
265 {
Sheri Zhange3b19742021-11-10 13:08:40 +0000266 int xi_out = min(xo + M0 - 1 - m0, (int)(dst_w) - 1);
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100267 VSTORE(N0)
Gian Marco Iodice04b39e82021-07-07 10:25:41 +0100268 (cq[M0 - 1 - m0].v, 0, (__global DST_DATA_TYPE *)(dst_ptr + dst_offset_first_element_in_bytes + (uint)((cout * DEPTH_MULTIPLIER) + d) * sizeof(DST_DATA_TYPE) + (uint)xi_out * dst_stride_y + (uint)yo * dst_stride_z + (uint)bout * dst_stride_w));
Gian Marco Iodice8155c022021-04-16 15:08:59 +0100269 })
270 }
271 }
272}
Sheri Zhange3b19742021-11-10 13:08:40 +0000273#endif // defined(WEI_WIDTH) && defined(WEI_HEIGHT) && defined(N0) && defined(M0) && defined(DILATION_X) && defined(DILATION_Y) && defined(STRIDE_X) && defined(STRIDE_Y) && defined(PAD_LEFT) && defined(PAD_TOP)