blob: b636c485e7237a3570826159b8dfa1124d23b0fd [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2017-2021, 2023 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/CL/kernels/CLNormalizationLayerKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Utils.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000032#include "arm_compute/core/utils/helpers/AdjustVecSize.h"
33#include "arm_compute/core/utils/StringUtils.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034#include "arm_compute/core/Window.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010035
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010036#include "src/core/AccessWindowStatic.h"
37#include "src/core/CL/CLValidate.h"
38#include "src/core/helpers/AutoConfiguration.h"
39#include "src/core/helpers/NormalizationHelpers.h"
40#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000041#include "support/StringSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010042
Manuel Bottini21c28952021-04-08 12:50:12 +010043namespace arm_compute
44{
Giorgio Arenac23b6332017-11-28 15:23:51 +000045namespace
46{
Georgios Pinitas631c41a2017-12-06 11:53:03 +000047Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, NormalizationLayerInfo norm_info)
Giorgio Arenac23b6332017-11-28 15:23:51 +000048{
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010049 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010050 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +000051 ARM_COMPUTE_RETURN_ERROR_ON_DATA_LAYOUT_NOT_IN(input, DataLayout::NCHW, DataLayout::NHWC);
Giorgio Arenac23b6332017-11-28 15:23:51 +000052 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
53
54 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!(norm_info.norm_size() % 2), "Normalization size should be odd");
Giorgio Arenac23b6332017-11-28 15:23:51 +000055
Giorgio Arenac23b6332017-11-28 15:23:51 +000056 // Checks performed when output is configured
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010057 if (output->total_size() != 0)
Giorgio Arenac23b6332017-11-28 15:23:51 +000058 {
59 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +000060 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
Giorgio Arenac23b6332017-11-28 15:23:51 +000061 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
Giorgio Arenac23b6332017-11-28 15:23:51 +000062 }
63
Georgios Pinitas631c41a2017-12-06 11:53:03 +000064 return Status{};
Giorgio Arenac23b6332017-11-28 15:23:51 +000065}
66
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010067std::pair<Status, Window>
68validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, NormalizationLayerInfo norm_info)
Giorgio Arenac23b6332017-11-28 15:23:51 +000069{
Giorgio Arenaf6a43c52017-12-01 12:16:25 +000070 // Output tensor auto initialization if not yet initialized
71 auto_init_if_empty(*output, *input->clone());
72
Manuel Bottini21c28952021-04-08 12:50:12 +010073 bool window_changed = false;
74 Window win;
75 const DataLayout data_layout = input->data_layout();
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010076 if (data_layout == DataLayout::NCHW)
Georgios Pinitas7f32d012018-10-11 18:41:19 +010077 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010078 const unsigned int vec_size_x =
79 adjust_vec_size(max_cl_vector_width / input->element_size(), input->dimension(0));
SiCongLiaed61f22021-08-26 17:44:08 +010080 const unsigned int norm_idx = get_normalization_dimension_index(input->data_layout(), norm_info);
81 const bool is_norm_across_width = norm_idx == 0;
Manuel Bottini21c28952021-04-08 12:50:12 +010082
SiCongLiaed61f22021-08-26 17:44:08 +010083 const unsigned int norm_radius = norm_info.norm_size() / 2;
84 // Border / padding calculation:
85 // For NCHW no border handling is impelmeneted in the kernel in the x axis.
86 // This means the x axis is fully-padded depending on vec_size_x and norm_size
87 // E.G. for input x dimension = 3, norm_size = 3 (radius = 1), vec_size_x = 2 ('#' is element 'p' is padding):
88 // In : |p|#|#|#|p|p|
89 // Out: |#|#|#|p|
90 // The output has 1 right padding because of the vec_size_x.
91 // The input has 1 left padding because radius = 1.
92 // The input has 2 right padding because of radius = 1 AND because of the extra output padding
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010093 const unsigned int border_width_left = is_norm_across_width ? norm_radius : 0;
94 const unsigned int border_width_right =
95 is_norm_across_width ? norm_radius + (vec_size_x - input->dimension(0) % vec_size_x) : 0;
96 const BorderSize border_size = BorderSize(0, border_width_right, 0, border_width_left);
Manuel Bottini21c28952021-04-08 12:50:12 +010097
98 win = calculate_max_window(*input, Steps(vec_size_x));
99
100 // We do not use a Rectangle window for IN_MAP_2D as we clamp the top and bottom accesses inside the kernel, avoiding padding
101 // Reads can occur within the valid region of the input
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100102 if (is_norm_across_width)
Manuel Bottini21c28952021-04-08 12:50:12 +0100103 {
104 AccessWindowStatic input_access(input, -border_size.left, 0, input->dimension(0) + border_size.right, 0);
105 window_changed = window_changed || update_window_and_padding(win, input_access);
106 }
107 else
108 {
109 AccessWindowHorizontal input_access(input, -border_size.left, vec_size_x);
110 window_changed = window_changed || update_window_and_padding(win, input_access);
111 }
112
113 AccessWindowHorizontal output_access(output, 0, vec_size_x);
114 window_changed = window_changed || update_window_and_padding(win, output_access);
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100115 }
116 else
117 {
Manuel Bottini21c28952021-04-08 12:50:12 +0100118 unsigned int vec_size_x = adjust_vec_size(max_cl_vector_width / input->element_size(), input->dimension(0));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100119 if (norm_info.is_cross_map())
Manuel Bottini21c28952021-04-08 12:50:12 +0100120 {
121 vec_size_x = 1;
122 }
123 win = calculate_max_window(*input, Steps(vec_size_x));
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100124 }
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100125 Status err =
126 (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arenac23b6332017-11-28 15:23:51 +0000127 return std::make_pair(err, win);
128}
129} // namespace
130
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131CLNormalizationLayerKernel::CLNormalizationLayerKernel()
Georgios Pinitase2220552018-07-20 13:23:44 +0100132 : _input(nullptr), _output(nullptr), _border_size(0), _is_norm_across_width(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100133{
Giorgio Arena4a95bba2021-06-28 11:00:27 +0100134 _type = CLKernelType::ELEMENTWISE;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100135}
136
137BorderSize CLNormalizationLayerKernel::border_size() const
138{
139 return _border_size;
140}
141
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100142void CLNormalizationLayerKernel::configure(const ICLTensor *input, ICLTensor *output, NormalizationLayerInfo norm_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100143{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100144 configure(CLKernelLibrary::get().get_compile_context(), input, output, norm_info);
145}
146
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100147void CLNormalizationLayerKernel::configure(const CLCompileContext &compile_context,
148 const ICLTensor *input,
149 ICLTensor *output,
150 NormalizationLayerInfo norm_info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100151{
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000152 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100153 auto padding_info = get_padding_info({input, output});
Georgios Pinitas09004ca2017-07-03 17:30:14 +0100154
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000155 // Perform validation step
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000156 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), norm_info));
Manuel Bottini21c28952021-04-08 12:50:12 +0100157 auto win_config = validate_and_configure_window(input->info(), output->info(), norm_info);
158 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100159
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100160 _input = input;
161 _output = output;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100162
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100163 const DataLayout data_layout = input->info()->data_layout();
164 unsigned int vec_size_x =
165 adjust_vec_size(max_cl_vector_width / input->info()->element_size(), input->info()->dimension(0));
166 int vec_size_x_leftovers = input->info()->dimension(0) % vec_size_x;
167 if (norm_info.is_cross_map() && data_layout == DataLayout::NHWC)
Manuel Bottini21c28952021-04-08 12:50:12 +0100168 {
169 vec_size_x = 1;
170 vec_size_x_leftovers = 0;
171 }
172
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100173 if (data_layout == DataLayout::NCHW)
Manuel Bottini21c28952021-04-08 12:50:12 +0100174 {
SiCongLiaed61f22021-08-26 17:44:08 +0100175 const unsigned int norm_idx = get_normalization_dimension_index(data_layout, norm_info);
176 _is_norm_across_width = norm_idx == 0;
177 const unsigned int norm_radius = norm_info.norm_size() / 2;
178 // Border / padding calculation:
179 // For NCHW no border handling is impelmeneted in the kernel in the x axis.
180 // This means the x axis is fully-padded depending on vec_size_x and norm_size
181 // E.G. for input x dimension = 3, norm_size = 3 (radius = 1), vec_size_x = 2 ('#' is element 'p' is padding):
182 // In : |p|#|#|#|p|p|
183 // Out: |#|#|#|p|
184 // The output has 1 right padding because of the vec_size_x.
185 // The input has 1 left padding because radius = 1.
186 // The input has 2 right padding because of radius = 1 AND the extra output padding
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100187 const unsigned int border_width_left = _is_norm_across_width ? norm_radius : 0;
188 const unsigned int border_width_right =
189 _is_norm_across_width ? norm_radius + (vec_size_x - input->info()->dimension(0) % vec_size_x) : 0;
190 _border_size = BorderSize(0, border_width_right, 0, border_width_left);
Manuel Bottini21c28952021-04-08 12:50:12 +0100191 }
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100192
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000193 const bool is_in_map_2D = (norm_info.type() == NormType::IN_MAP_2D);
194
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100195 // Set build options
Georgios Pinitas01624362017-11-30 10:53:31 +0000196 CLBuildOptions build_opts;
197 build_opts.add_option(("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())));
Georgios Pinitas01624362017-11-30 10:53:31 +0000198 build_opts.add_option(("-DCOEFF=" + float_to_string_with_full_precision(norm_info.scale_coeff())));
199 build_opts.add_option(("-DBETA=" + float_to_string_with_full_precision(norm_info.beta())));
200 build_opts.add_option(("-DKAPPA=" + float_to_string_with_full_precision(norm_info.kappa())));
Manuel Bottini21c28952021-04-08 12:50:12 +0100201 build_opts.add_option(("-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x)));
202 build_opts.add_option(("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(vec_size_x_leftovers)));
Georgios Pinitas01624362017-11-30 10:53:31 +0000203 build_opts.add_option(("-DRADIUS=" + support::cpp11::to_string(norm_info.norm_size() / 2)));
204 build_opts.add_option(("-DNUM_SLICES=" + support::cpp11::to_string(input->info()->dimension(2))));
205 build_opts.add_option_if(is_in_map_2D, "-DIN_MAP_2D");
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100206 build_opts.add_option_if(norm_info.is_in_map() || (data_layout == DataLayout::NHWC && norm_info.is_cross_map()),
207 "-DWIDTH_SIZE=" + support::cpp11::to_string(input->info()->dimension(0)));
208 build_opts.add_option_if(norm_info.is_in_map() && data_layout == DataLayout::NHWC,
209 "-DDIM1_SIZE=" + support::cpp11::to_string(input->info()->dimension(1)));
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100210
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100211 // Create kernel
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000212 std::string kernel_name;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100213 if (norm_info.is_in_map())
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000214 {
215 kernel_name = "normalization_layer_in_map_" + lower_string(string_from_data_layout(data_layout));
216 }
217 else
218 {
Manuel Bottini21c28952021-04-08 12:50:12 +0100219 kernel_name = "normalization_layer_cross_map_" + lower_string(string_from_data_layout(data_layout));
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000220 }
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100221 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100222
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100223 // Configure kernel window
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100224 ICLKernel::configure_internal(win_config.second);
Giorgio Arena63485ce2017-11-15 16:04:20 +0000225
226 // Set config_id for enabling LWS tuning
227 _config_id = "normalization_layer_";
228 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
229 _config_id += "_";
230 _config_id += support::cpp11::to_string(static_cast<std::underlying_type<NormType>::type>(norm_info.type()));
231 _config_id += "_";
232 _config_id += support::cpp11::to_string(norm_info.norm_size());
233 _config_id += "_";
234 _config_id += support::cpp11::to_string(input->info()->dimension(0));
235 _config_id += "_";
236 _config_id += support::cpp11::to_string(input->info()->dimension(1));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100237 if (data_layout == DataLayout::NHWC)
Manuel Bottini21c28952021-04-08 12:50:12 +0100238 {
239 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
240 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100241}
242
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100243Status CLNormalizationLayerKernel::validate(const ITensorInfo *input,
244 const ITensorInfo *output,
245 NormalizationLayerInfo norm_info)
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000246{
Giorgio Arenac23b6332017-11-28 15:23:51 +0000247 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, norm_info));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100248 ARM_COMPUTE_RETURN_ON_ERROR(
249 validate_and_configure_window(input->clone().get(), output->clone().get(), norm_info).first);
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000250
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000251 return Status{};
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000252}
253
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100254void CLNormalizationLayerKernel::run(const Window &window, cl::CommandQueue &queue)
255{
256 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
257 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
258
Georgios Pinitase2220552018-07-20 13:23:44 +0100259 const int collapsed_dimension = _is_norm_across_width ? Window::DimZ : 4;
steniu01f70256b2017-07-13 14:03:35 +0100260 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), collapsed_dimension);
261 Window slice = window_collapsed.first_slice_window_3D();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100262
263 do
264 {
265 unsigned int idx = 0;
266 add_3D_tensor_argument(idx, _input, slice);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100267 add_3D_tensor_argument(idx, _output, slice);
Anthony Barbier5a65cfd2018-08-10 14:10:08 +0100268 enqueue(queue, *this, slice, lws_hint());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100269 } while (window_collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100270}
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100271} // namespace arm_compute