blob: 7eb04c76ca651abd3c452c85270b27253ed2efdb [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2017 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#include "helpers.h"
25
Gian Marco Iodice3a623242017-07-25 10:25:53 +010026#if defined(FIXED_POINT_POSITION)
27#include "fixed_point.h"
28#endif // FIXED_POINT_POSITION
29
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030/** This kernel reshapes the tensor's low three dimensions to single column
31 *
32 * @note Datatype should be given as a preprocessor argument using -DDATA_TYPE=type. e.g. -DDATA_TYPE=short
33 *
Gian Marco Iodice13edbff2017-06-26 17:20:16 +010034 * @param[in] src_ptr Pointer to the source tensor. Supported data types: F16/F32
Anthony Barbier6ff3b192017-09-04 18:44:23 +010035 * @param[in] src_stride_x Stride of the source tensor in X dimension (in bytes)
36 * @param[in] src_step_x src_stride_x * number of elements along X processed per workitem(in bytes)
37 * @param[in] src_stride_y Stride of the source tensor in Y dimension (in bytes)
38 * @param[in] src_step_y src_stride_y * number of elements along Y processed per workitem(in bytes)
39 * @param[in] src_stride_z Stride of the source tensor in Z dimension (in bytes)
40 * @param[in] src_step_z src_stride_z * number of elements along Y processed per workitem(in bytes)
41 * @param[in] src_offset_first_element_in_bytes The offset of the first element in the source tensor
Gian Marco Iodice13edbff2017-06-26 17:20:16 +010042 * @param[out] dst_ptr Pointer to the destination tensor. Same as @p src_ptr
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043 * @param[in] dst_stride_x Stride of the destination tensor in X dimension (in bytes)
44 * @param[in] dst_step_x dst_stride_x * number of elements along X processed per workitem(in bytes)
45 * @param[in] dst_stride_y Stride of the destination tensor in Y dimension (in bytes)
46 * @param[in] dst_step_y dst_stride_y * number of elements along Y processed per workitem(in bytes)
47 * @param[in] dst_offset_first_element_in_bytes The offset of the first element in the destination tensor
Gian Marco Iodice13edbff2017-06-26 17:20:16 +010048 * @param[in] bias_ptr Pointer to the bias tensor. Same as @p src_ptr
Anthony Barbier6ff3b192017-09-04 18:44:23 +010049 * @param[in] bias_stride_x Stride of the bias tensor in X dimension (in bytes)
50 * @param[in] bias_step_x bias_stride_x * number of elements along X processed per workitem(in bytes)
51 * @param[in] bias_offset_first_element_in_bytes The offset of the first element in the source tensor
52 * @param[in] width The width of the input tensor
53 * @param[in] height The height of the input tensor
54 * @param[in] depth The depth of the input tensor
55 * @param[in] total_filters Total number of filters. 4th dimension of the weights matrix
56 */
57__kernel void reshape_to_columns(
58 TENSOR3D_DECLARATION(src),
59 IMAGE_DECLARATION(dst),
Anthony Barbierac69aa12017-07-03 17:39:37 +010060#ifdef HAS_BIAS
Anthony Barbier6ff3b192017-09-04 18:44:23 +010061 VECTOR_DECLARATION(bias),
Anthony Barbierac69aa12017-07-03 17:39:37 +010062#endif /* HAS_BIAS */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010063 uint width, uint height, uint depth, uint total_filters)
64{
65 Tensor3D src = CONVERT_TO_TENSOR3D_STRUCT(src);
66 bool is_last_thread = (get_global_id(0) == (get_global_size(0) - 1) && get_global_id(1) == (get_global_size(1) - 1) && get_global_id(2) == (get_global_size(2) - 1));
67
68 __global uchar *tmp_src_ptr = src.ptr;
69 __global uchar *tmp_dst_ptr = dst_ptr + dst_offset_first_element_in_bytes + get_global_id(0) * dst_stride_y + get_global_id(1) * width * dst_stride_y + get_global_id(
70 2) * width * height * dst_stride_y;
Anthony Barbierac69aa12017-07-03 17:39:37 +010071#ifdef HAS_BIAS
Anthony Barbier6ff3b192017-09-04 18:44:23 +010072 __global uchar *tmp_bias_ptr = bias_ptr + bias_offset_first_element_in_bytes;
Anthony Barbierac69aa12017-07-03 17:39:37 +010073#endif /* HAS_BIAS */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010074
75 if(is_last_thread)
76 {
77 for(uint i = 0; i < total_filters; ++i)
78 {
79 *((__global DATA_TYPE *)tmp_dst_ptr) = *((__global DATA_TYPE *)tmp_src_ptr);
80
Anthony Barbierac69aa12017-07-03 17:39:37 +010081#ifdef HAS_BIAS
Anthony Barbier6ff3b192017-09-04 18:44:23 +010082 *((__global DATA_TYPE *)(tmp_dst_ptr + dst_stride_y)) = *((__global DATA_TYPE *)(tmp_bias_ptr));
83 tmp_bias_ptr += bias_stride_x;
Anthony Barbierac69aa12017-07-03 17:39:37 +010084#endif /* HAS_BIAS */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010085 tmp_src_ptr += depth * src_stride_z;
86 tmp_dst_ptr += dst_stride_x;
87 }
88 }
89 else
90 {
91 for(uint i = 0; i < total_filters; ++i)
92 {
93 *((__global DATA_TYPE *)tmp_dst_ptr) = *((__global DATA_TYPE *)tmp_src_ptr);
94 tmp_src_ptr += depth * src_stride_z;
95 tmp_dst_ptr += dst_stride_x;
96 }
97 }
98}
99
Anthony Barbierac69aa12017-07-03 17:39:37 +0100100#if defined(CONVOLVED_WIDTH) && defined(STRIDE_X) && defined(STRIDE_Y) && defined(PAD_X) && defined(PAD_Y) && defined(KERNEL_WIDTH) && defined(KERNEL_HEIGHT) && defined(KERNEL_DEPTH) && defined(SRC_WIDTH) && defined(SRC_HEIGHT)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101/** This kernel performs a reshaping of the input tensor to a tensor used to perform convolution using GEMM.
102 *
103 * @note The data type must be passed at compile time using -DDATA_TYPE: e.g. -DDATA_TYPE=float
104 * @note In case biases will be added to the convolution -DHAS_BIAS has to be passed to append the final matrix with 1 in each row.
105 *
Gian Marco Iodice3a623242017-07-25 10:25:53 +0100106 * @param[in] src_ptr Pointer to the source tensor. Supported data types: QS8/QS16/F16/F32
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100107 * @param[in] src_stride_x Stride of the source tensor in X dimension (in bytes)
108 * @param[in] src_step_x src_stride_x * number of elements along X processed per workitem(in bytes)
109 * @param[in] src_stride_y Stride of the source tensor in Y dimension (in bytes)
110 * @param[in] src_step_y src_stride_y * number of elements along Y processed per workitem(in bytes)
111 * @param[in] src_stride_z Stride of the source tensor in Z dimension (in bytes)
112 * @param[in] src_step_z src_stride_z * number of elements along Z processed per workitem(in bytes)
113 * @param[in] src_offset_first_element_in_bytes The offset of the first element in the source tensor
Gian Marco Iodice13edbff2017-06-26 17:20:16 +0100114 * @param[out] dst_ptr Pointer to the destination tensor. Supported data types: same as @p src_ptr
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115 * @param[in] dst_stride_x Stride of the destination tensor in X dimension (in bytes)
116 * @param[in] dst_step_x dst_stride_x * number of elements along X processed per workitem(in bytes)
117 * @param[in] dst_stride_y Stride of the destination tensor in Y dimension (in bytes)
118 * @param[in] dst_step_y dst_stride_y * number of elements along Y processed per workitem(in bytes)
119 * @param[in] dst_offset_first_element_in_bytes The offset of the first element in the destination tensor
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100120 */
121__kernel void im2col_generic(
122 TENSOR3D_DECLARATION(src),
Gian Marco Iodice13edbff2017-06-26 17:20:16 +0100123 IMAGE_DECLARATION(dst))
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100124{
Gian Marco Iodice3a623242017-07-25 10:25:53 +0100125 const int xc = get_global_id(0); // x coordinate in the convolved tensor
126 const int yc = get_global_id(1); // y coordinate in the convolved tensor
127 const int ch = get_global_id(2); // input feature map
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100128
Gian Marco Iodice3a623242017-07-25 10:25:53 +0100129 // Calculate input indeces
130 const int xi = xc * STRIDE_X - PAD_X;
131 const int yi = yc * STRIDE_Y - PAD_Y;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100132
Gian Marco Iodice3a623242017-07-25 10:25:53 +0100133 // Calculate output indeces
134 const int xo = ch * KERNEL_WIDTH * KERNEL_HEIGHT;
135 const int yo = xc + yc * CONVOLVED_WIDTH; // Index of the convolution
136
137 __global uchar *input_ptr = src_ptr + src_offset_first_element_in_bytes + ch * src_stride_z;
138 __global DATA_TYPE *output_ptr = ((__global DATA_TYPE *)(dst_ptr + dst_offset_first_element_in_bytes + yo * dst_stride_y)) + xo;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100139
140 // Linearize convolution elements
Gian Marco Iodice3a623242017-07-25 10:25:53 +0100141 for(int y = yi, y_e = yi + KERNEL_HEIGHT; y < y_e; ++y)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100142 {
Gian Marco Iodice3a623242017-07-25 10:25:53 +0100143 for(int x = xi, x_e = xi + KERNEL_WIDTH; x < x_e; ++x, ++output_ptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100144 {
Gian Marco Iodice3a623242017-07-25 10:25:53 +0100145#if PAD_X == 0 && PAD_Y == 0
146 *output_ptr = *((__global DATA_TYPE *)(input_ptr + x * src_stride_x + y * src_stride_y));
147#else // PAD_X == 0 && PAD_Y == 0
148 if(x < 0 || x >= SRC_WIDTH || y < 0 || y >= SRC_HEIGHT)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100149 {
Gian Marco Iodice3a623242017-07-25 10:25:53 +0100150 *output_ptr = 0;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100151 }
Gian Marco Iodice3a623242017-07-25 10:25:53 +0100152 else
153 {
154 *output_ptr = *((__global DATA_TYPE *)(input_ptr + x * src_stride_x + y * src_stride_y));
155 }
156#endif // PAD_X == 0 && PAD_Y == 0
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100157 }
158 }
159
Gian Marco Iodice368da832017-07-03 12:33:49 +0100160#ifdef HAS_BIAS
Gian Marco Iodice3a623242017-07-25 10:25:53 +0100161 if(get_global_id(2) == (KERNEL_DEPTH - 1))
162 {
Gian Marco Iodice368da832017-07-03 12:33:49 +0100163#ifdef FIXED_POINT_POSITION
Gian Marco Iodice3a623242017-07-25 10:25:53 +0100164 *output_ptr = (DATA_TYPE)(1 << FIXED_POINT_POSITION);
Gian Marco Iodice368da832017-07-03 12:33:49 +0100165#else // FIXED_POINT_POSITION
Gian Marco Iodice3a623242017-07-25 10:25:53 +0100166 *output_ptr = 1.0f;
Gian Marco Iodice368da832017-07-03 12:33:49 +0100167#endif // FIXED_POINT_POSITION
Gian Marco Iodice3a623242017-07-25 10:25:53 +0100168 }
169#endif // HAS_BIAS
170}
171
172/** This kernel performs a reshaping of the input tensor to a tensor used to perform convolution using GEMM when the kernel size is 3x3 and pad_x = pad_y = 0
173 *
174 * @note The data type must be passed at compile time using -DDATA_TYPE: e.g. -DDATA_TYPE=float
175 * @note In case biases will be added to the convolution -DHAS_BIAS has to be passed to append the final matrix with 1 in each row.
176 *
177 * @param[in] src_ptr Pointer to the source tensor. Supported data types: QS8/QS16/F16/F32
178 * @param[in] src_stride_x Stride of the source tensor in X dimension (in bytes)
179 * @param[in] src_step_x src_stride_x * number of elements along X processed per workitem(in bytes)
180 * @param[in] src_stride_y Stride of the source tensor in Y dimension (in bytes)
181 * @param[in] src_step_y src_stride_y * number of elements along Y processed per workitem(in bytes)
182 * @param[in] src_stride_z Stride of the source tensor in Z dimension (in bytes)
183 * @param[in] src_step_z src_stride_z * number of elements along Z processed per workitem(in bytes)
184 * @param[in] src_offset_first_element_in_bytes The offset of the first element in the source tensor
185 * @param[out] dst_ptr Pointer to the destination tensor. Supported data types: same as @p src_ptr
186 * @param[in] dst_stride_x Stride of the destination tensor in X dimension (in bytes)
187 * @param[in] dst_step_x dst_stride_x * number of elements along X processed per workitem(in bytes)
188 * @param[in] dst_stride_y Stride of the destination tensor in Y dimension (in bytes)
189 * @param[in] dst_step_y dst_stride_y * number of elements along Y processed per workitem(in bytes)
190 * @param[in] dst_offset_first_element_in_bytes The offset of the first element in the destination tensor
191 */
192__kernel void im2col_kernel3x3_padx0_pady0(
193 TENSOR3D_DECLARATION(src),
194 IMAGE_DECLARATION(dst))
195{
196 const int xc = get_global_id(0); // x coordinate in the convolved tensor
197 const int yc = get_global_id(1); // y coordinate in the convolved tensor
198 const int ch = get_global_id(2); // input feature map
199
200 // Calculate input indeces
201 const int xi = xc * STRIDE_X;
202 const int yi = yc * STRIDE_Y;
203
204 // Calculate output indeces
205 const int xo = ch * KERNEL_WIDTH * KERNEL_HEIGHT;
206 const int yo = xc + yc * CONVOLVED_WIDTH; // Index of the convolution
207
208 // Get input and output address
209 __global uchar *input_ptr = src_ptr + src_offset_first_element_in_bytes + xi * src_stride_x + yi * src_stride_y + ch * src_stride_z;
210 __global DATA_TYPE *output_ptr = ((__global DATA_TYPE *)(dst_ptr + dst_offset_first_element_in_bytes + yo * dst_stride_y)) + xo;
211
212 VEC_DATA_TYPE(DATA_TYPE, 3)
213 row0 = vload3(0, (__global DATA_TYPE *)(input_ptr + 0 * src_stride_y));
214 VEC_DATA_TYPE(DATA_TYPE, 3)
215 row1 = vload3(0, (__global DATA_TYPE *)(input_ptr + 1 * src_stride_y));
216 VEC_DATA_TYPE(DATA_TYPE, 3)
217 row2 = vload3(0, (__global DATA_TYPE *)(input_ptr + 2 * src_stride_y));
218
219 vstore8((VEC_DATA_TYPE(DATA_TYPE, 8))(row0.s012, row1.s012, row2.s01), 0, output_ptr);
220 *(output_ptr + 8) = row2.s2;
221
222#ifdef HAS_BIAS
223 if(get_global_id(2) == (KERNEL_DEPTH - 1))
224 {
225#ifdef FIXED_POINT_POSITION
226 *(output_ptr + 9) = (DATA_TYPE)(1 << FIXED_POINT_POSITION);
227#else // FIXED_POINT_POSITION
228 *(output_ptr + 9) = 1.0f;
229#endif // FIXED_POINT_POSITION
230 }
Gian Marco Iodice368da832017-07-03 12:33:49 +0100231#endif // HAS_BIAS
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100232}
Gian Marco Iodice368da832017-07-03 12:33:49 +0100233#endif //defined(CONVOLVED_WIDTH) && defined(STRIDE_X) && defined(STRIDE_Y) && defined(PAD_X) && defined(PAD_Y) && defined(KERNEL_WIDTH) && defined(KERNEL_HEIGHT) && defined(KERNEL_DEPTH) && defined(SRC_WIDTH) && defined(SRC_HEIGHT)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100234
235/** This kernel performs a reshaping of the output of the convolution layer.
236 *
237 * @note The data type must be passed at compile time using -DDATA_TYPE: e.g. -DDATA_TYPE=float
238 *
Gian Marco Iodice3a623242017-07-25 10:25:53 +0100239 * @param[in] src_ptr Pointer to the source tensor. Supported data types: QS8/QS16/F16/F32
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100240 * @param[in] src_stride_x Stride of the source tensor in X dimension (in bytes)
241 * @param[in] src_step_x src_stride_x * number of elements along X processed per workitem(in bytes)
242 * @param[in] src_stride_y Stride of the source tensor in Y dimension (in bytes)
243 * @param[in] src_step_y src_stride_y * number of elements along Y processed per workitem(in bytes)
244 * @param[in] src_offset_first_element_in_bytes The offset of the first element in the source tensor
Gian Marco Iodice13edbff2017-06-26 17:20:16 +0100245 * @param[out] dst_ptr Pointer to the destination tensor. Supported data types: same as @p src_ptr
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100246 * @param[in] dst_stride_x Stride of the destination tensor in X dimension (in bytes)
247 * @param[in] dst_step_x dst_stride_x * number of elements along X processed per workitem(in bytes)
248 * @param[in] dst_stride_y Stride of the destination tensor in Y dimension (in bytes)
249 * @param[in] dst_step_y dst_stride_y * number of elements along Y processed per workitem(in bytes)
250 * @param[in] dst_stride_z Stride of the destination tensor in Z dimension (in bytes)
251 * @param[in] dst_step_z dst_stride_z * number of elements along Z processed per workitem(in bytes)
252 * @param[in] dst_offset_first_element_in_bytes The offset of the first element in the destination tensor
253 * @param[in] width The output tensor width
254 */
255__kernel void col2im(
256 IMAGE_DECLARATION(src),
257 TENSOR3D_DECLARATION(dst),
258 uint width)
259{
260 Image src = CONVERT_TO_IMAGE_STRUCT(src);
261 Tensor3D dst = CONVERT_TO_TENSOR3D_STRUCT_NO_STEP(dst);
262
263 int idx = get_global_id(0) * dst.stride_z + (get_global_id(1) / width) * dst.stride_y + (get_global_id(1) % width) * dst.stride_x;
264 __global uchar *tmp_out_ptr = dst.ptr + idx;
265 *((__global DATA_TYPE *)tmp_out_ptr) = *((__global DATA_TYPE *)(src.ptr));
266}
267
268/** This kernel reshapes the tensor's low three dimensions to single row for GEMM operation
269 *
270 * @note Datatype should be given as a preprocessor argument using -DDATA_TYPE=type. e.g. -DDATA_TYPE=float
271 * @note In case biases will be added in late stage, -DHAS_BIAS has to be passed to append the final matrix with 1 in each row.
272 *
Gian Marco Iodice368da832017-07-03 12:33:49 +0100273 * @param[in] src_ptr Pointer to the source tensor. Supported data types: QS8/F16/F32
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100274 * @param[in] src_stride_x Stride of the source tensor in X dimension (in bytes)
275 * @param[in] src_step_x src_stride_x * number of elements along X processed per workitem(in bytes)
276 * @param[in] src_stride_y Stride of the source tensor in Y dimension (in bytes)
277 * @param[in] src_step_y src_stride_y * number of elements along Y processed per workitem(in bytes)
278 * @param[in] src_stride_z Stride of the source tensor in Z dimension (in bytes)
279 * @param[in] src_step_z src_stride_z * number of elements along Y processed per workitem(in bytes)
280 * @param[in] src_offset_first_element_in_bytes The offset of the first element in the source tensor
Gian Marco Iodice13edbff2017-06-26 17:20:16 +0100281 * @param[out] dst_ptr Pointer to the destination tensor. Same as @p src_ptr
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100282 * @param[in] dst_stride_x Stride of the destination tensor in X dimension (in bytes)
283 * @param[in] dst_step_x dst_stride_x * number of elements along X processed per workitem(in bytes)
284 * @param[in] dst_offset_first_element_in_bytes The offset of the first element in the destination tensor
285 * @param[in] width The width of the input tensor
286 * @param[in] height The height of the input tensor
287 */
288__kernel void im2col_reduced(
289 TENSOR3D_DECLARATION(src),
290 VECTOR_DECLARATION(dst),
291 uint width, uint height)
292{
293 Tensor3D src = CONVERT_TO_TENSOR3D_STRUCT(src);
294
295 const uint image_size = width * height;
296
297 __global uchar *tmp_out_ptr = dst_ptr + dst_offset_first_element_in_bytes + (get_global_id(0) + get_global_id(1) * width + get_global_id(2) * image_size) * dst_stride_x;
298
299 *((__global DATA_TYPE *)tmp_out_ptr) = *((__global DATA_TYPE *)src.ptr);
300
Anthony Barbierac69aa12017-07-03 17:39:37 +0100301#ifdef HAS_BIAS
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100302 // If it is the last thread in the 3 dimensional workgroup
303 if(get_global_id(0) == (get_global_size(0) - 1) && get_global_id(1) == (get_global_size(1) - 1) && get_global_id(2) == (get_global_size(2) - 1))
304 {
305 tmp_out_ptr += dst_stride_x;
Gian Marco Iodice368da832017-07-03 12:33:49 +0100306#ifdef FIXED_POINT_POSITION
307 *((__global DATA_TYPE *)tmp_out_ptr) = (DATA_TYPE)(1 << FIXED_POINT_POSITION);
308#else // FIXED_POINT_POSITION
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100309 *((__global DATA_TYPE *)tmp_out_ptr) = (DATA_TYPE)1;
Gian Marco Iodice368da832017-07-03 12:33:49 +0100310#endif // FIXED_POINT_POSITION
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100311 }
Gian Marco Iodice368da832017-07-03 12:33:49 +0100312#endif // HAS_BIAS
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100313}