blob: 4e65560b959da8a638b2b080411562b60719c16c [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
Michele Di Giorgio6c928342017-06-22 16:55:57 +010026#if defined(FIXED_POINT_POSITION)
27
28#include "fixed_point.h"
29#define MUL_OP(x, y) MUL_SAT_OP_EXPAND((x), (y), DATA_TYPE, VEC_SIZE, FIXED_POINT_POSITION)
30#define ADD_OP(x, y) ADD_SAT_OP_EXPAND((x), (y), DATA_TYPE, VEC_SIZE)
steniu010c7614f2017-06-23 17:00:26 +010031#define DIV_OP(x, y) DIV_SAT_OP_VEC_EXPAND((x), (y), DATA_TYPE, VEC_SIZE, FIXED_POINT_POSITION)
Michele Di Giorgio6c928342017-06-22 16:55:57 +010032#define EXP_OP(x) EXP_OP_EXPAND((x), DATA_TYPE, VEC_SIZE, FIXED_POINT_POSITION)
33#define LOG_OP(x) LOG_OP_EXPAND((x), DATA_TYPE, VEC_SIZE, FIXED_POINT_POSITION)
34#define POW_OP(x, y) EXP_OP(MUL_OP(LOG_OP((x)), (y)))
35#define SQCVT_SAT(a) SQCVT_SAT_OP_EXPAND((a), DATA_TYPE, FIXED_POINT_POSITION)
36
37#define LOAD_OP(offset, ptr) vload16(offset, ptr)
38#define STORE_OP(data, offset, ptr) vstore16(data, offset, ptr)
39
40#else // FIXED_POINT_POSITION
41
42#define MUL_OP(x, y) ((x) * (y))
43#define ADD_OP(x, y) ((x) + (y))
44#define DIV_OP(x, y) ((x) / (y))
45#define POW_OP(x, y) pow((x), (y))
46#define SQCVT_SAT(a) (a)
47
48#define LOAD_OP(offset, ptr) vload4(offset, ptr)
49#define STORE_OP(data, offset, ptr) vstore4(data, offset, ptr)
50
51#endif // FIXED_POINT_POSITION
52
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053/** Apply cross map normalization.
54 *
55 * @note Datatype should be given as a preprocessor argument using -DDATA_TYPE=type. e.g. -DDATA_TYPE=short
Michele Di Giorgio6c928342017-06-22 16:55:57 +010056 * @note Vector size should be given as a preprocessor argument using -DVEC_SIZE=size, e.g. -DVEC_SIZE=16
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +010057 * @note The radius should be given as a preprocessor argument using -DRADIUS=size. e.g. -DRADIUS=5
58 * @note The number of slices should be given as a preprocessor argument using -DNUM_SLICES=size. e.g. -DNUM_SLICES=192
Michele Di Giorgio6c928342017-06-22 16:55:57 +010059 * @note In case of fixed-point operation -DFIXED_POINT_POSITION=fixed_point_position must be provided: e.g. -DFIXED_POINT_POSITION=3
60 * @note Scaling coefficient (= alpha/norm_size), beta and kappa need to be passed at compile time using -DCOEFF, -DALPHA and -DKAPPA
Anthony Barbier6ff3b192017-09-04 18:44:23 +010061 *
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +010062 * @param[in] input_ptr Pointer to the first source tensor. Supported data types: QS8/QS16/F16/F32
63 * @param[in] input_stride_x Stride of the first source tensor in X dimension (in bytes)
64 * @param[in] input_step_x input_stride_x * number of elements along X processed per workitem(in bytes)
65 * @param[in] input_stride_y Stride of the first source tensor in Y dimension (in bytes)
66 * @param[in] input_step_y input_stride_y * number of elements along Y processed per workitem(in bytes)
67 * @param[in] input_stride_z Stride of the first source tensor in Z dimension (in bytes)
68 * @param[in] input_step_z input_stride_z * number of elements along Z processed per workitem(in bytes)
69 * @param[in] input_offset_first_element_in_bytes The offset of the first element in the first source tensor
70 * @param[out] output_ptr Pointer to the destination tensor. Supported data types: same as @p input_ptr
71 * @param[in] output_stride_x Stride of the destination tensor in X dimension (in bytes)
72 * @param[in] output_step_x output_stride_x * number of elements along X processed per workitem(in bytes)
73 * @param[in] output_stride_y Stride of the destination tensor in Y dimension (in bytes)
74 * @param[in] output_step_y output_stride_y * number of elements along Y processed per workitem(in bytes)
75 * @param[in] output_stride_z Stride of the destination tensor in Z dimension (in bytes)
76 * @param[in] output_step_z output_stride_z * number of elements along Z processed per workitem(in bytes)
77 * @param[in] output_offset_first_element_in_bytes The offset of the first element in the destination tensor
Anthony Barbier6ff3b192017-09-04 18:44:23 +010078 */
79__kernel void normalization_layer_cross_map(TENSOR3D_DECLARATION(input),
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +010080 TENSOR3D_DECLARATION(output))
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081{
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +010082 Tensor3D in = CONVERT_TO_TENSOR3D_STRUCT(input);
83 Tensor3D out = CONVERT_TO_TENSOR3D_STRUCT(output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010084
Michele Di Giorgio6c928342017-06-22 16:55:57 +010085 VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
86 acc = (VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE))0;
87 const VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
88 coeff_v = (VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE))SQCVT_SAT(COEFF);
89 const VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
90 beta_v = (VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE))SQCVT_SAT(BETA);
91 const VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
92 kappa_v = (VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE))SQCVT_SAT(KAPPA);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010093
Anthony Barbier6ff3b192017-09-04 18:44:23 +010094 const int current_slice = get_global_id(2);
95
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +010096 const int left_slice = max(current_slice - (int)RADIUS, (int)0);
97 const int right_slice = min(current_slice + (int)RADIUS, (int)(NUM_SLICES - 1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010098
99 for(int i = left_slice; i <= right_slice; i++)
100 {
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100101 VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
102 values = LOAD_OP(0, (__global DATA_TYPE *)tensor3D_offset(&in, 0, 0, i - current_slice));
103 acc = ADD_OP(acc, MUL_OP(values, values));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104 }
105
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100106 acc = ADD_OP(MUL_OP(acc, coeff_v), kappa_v);
107 const VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
108 normalized = POW_OP(acc, beta_v);
109 const VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
110 normalized_pixel = DIV_OP(LOAD_OP(0, (__global DATA_TYPE *)in.ptr), normalized);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100112 STORE_OP(normalized_pixel, 0, (__global DATA_TYPE *)out.ptr);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113}
114
115/** Apply in map normalization.
116 *
117 * @note Datatype should be given as a preprocessor argument using -DDATA_TYPE=type. e.g. -DDATA_TYPE=short
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100118 * @note Vector size should be given as a preprocessor argument using -DVEC_SIZE=size, e.g. -DVEC_SIZE=16
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100119 * @note The radius should be given as a preprocessor argument using -DRADIUS=size. e.g. -DRADIUS=5
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100120 * @note In case of fixed-point operation -DFIXED_POINT_POSITION=fixed_point_position must be provided: e.g. -DFIXED_POINT_POSITION=3
121 * @note Scaling coefficient (= alpha/norm_size), beta and kappa need to be passed at compile time using -DCOEFF, -DALPHA and -DKAPPA
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100122 *
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100123 * @param[in] input_ptr Pointer to the first source tensor. Supported data types: QS8/F16/F32
124 * @param[in] input_stride_x Stride of the first source tensor in X dimension (in bytes)
125 * @param[in] input_step_x input_stride_x * number of elements along X processed per workitem(in bytes)
126 * @param[in] input_stride_y Stride of the first source tensor in Y dimension (in bytes)
127 * @param[in] input_step_y input_stride_y * number of elements along Y processed per workitem(in bytes)
128 * @param[in] input_stride_z Stride of the first source tensor in Z dimension (in bytes)
129 * @param[in] input_step_z input_stride_z * number of elements along Z processed per workitem(in bytes)
130 * @param[in] input_offset_first_element_in_bytes The offset of the first element in the first source tensor
131 * @param[out] output_ptr Pointer to the destination tensor. Supported data types: same as @p input_ptr
132 * @param[in] output_stride_x Stride of the destination tensor in X dimension (in bytes)
133 * @param[in] output_step_x output_stride_x * number of elements along X processed per workitem(in bytes)
134 * @param[in] output_stride_y Stride of the first destination tensor in Y dimension (in bytes)
135 * @param[in] output_step_y output_stride_y * number of elements along Y processed per workitem(in bytes)
136 * @param[in] output_stride_z Stride of the first source tensor in Z dimension (in bytes)
137 * @param[in] output_step_z output_stride_z * number of elements along Z processed per workitem(in bytes)
138 * @param[in] output_offset_first_element_in_bytes The offset of the first element in the destination tensor
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100139 */
140__kernel void normalization_layer_in_map_1D(TENSOR3D_DECLARATION(input),
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100141 TENSOR3D_DECLARATION(output))
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100142{
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100143 Tensor3D in = CONVERT_TO_TENSOR3D_STRUCT(input);
144 Tensor3D out = CONVERT_TO_TENSOR3D_STRUCT(output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100145
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100146 VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
147 acc = (VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE))0;
148 const VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
149 coeff_v = (VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE))SQCVT_SAT(COEFF);
150 const VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
151 beta_v = (VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE))SQCVT_SAT(BETA);
152 const VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
153 kappa_v = (VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE))SQCVT_SAT(KAPPA);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100154
155 const int current_pos = get_global_id(0) << 2;
156
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100157 const int left_pos = max(current_pos - (int)RADIUS, -3);
158 const int right_pos = min(current_pos + (int)RADIUS, (int)((get_global_size(0) << 2) + 3 - 1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100159
160 for(int i = left_pos; i <= right_pos; i += 1)
161 {
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100162 VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
163 values = LOAD_OP(0, (__global DATA_TYPE *)tensor3D_offset(&in, i - current_pos, 0, 0));
164 acc = ADD_OP(acc, MUL_OP(values, values));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100165 }
166
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100167 acc = ADD_OP(MUL_OP(acc, coeff_v), kappa_v);
168 const VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
169 normalized = POW_OP(acc, beta_v);
170 const VEC_DATA_TYPE(DATA_TYPE, VEC_SIZE)
171 normalized_pixel = DIV_OP(LOAD_OP(0, (__global DATA_TYPE *)in.ptr), normalized);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100172
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100173 STORE_OP(normalized_pixel, 0, (__global DATA_TYPE *)out.ptr);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100174}