blob: 2765300925f36dce39af98690758e8c27ddf9bc1 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michalis Spyrou702dc0c2021-03-19 15:06:07 +00002 * Copyright (c) 2017-2021 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"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032#include "arm_compute/core/Window.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010033#include "src/core/AccessWindowStatic.h"
34#include "src/core/CL/CLValidate.h"
35#include "src/core/helpers/AutoConfiguration.h"
36#include "src/core/helpers/NormalizationHelpers.h"
37#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000038#include "support/StringSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039
Manuel Bottini21c28952021-04-08 12:50:12 +010040namespace arm_compute
41{
Giorgio Arenac23b6332017-11-28 15:23:51 +000042namespace
43{
Georgios Pinitas631c41a2017-12-06 11:53:03 +000044Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, NormalizationLayerInfo norm_info)
Giorgio Arenac23b6332017-11-28 15:23:51 +000045{
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010046 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010047 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +000048 ARM_COMPUTE_RETURN_ERROR_ON_DATA_LAYOUT_NOT_IN(input, DataLayout::NCHW, DataLayout::NHWC);
Giorgio Arenac23b6332017-11-28 15:23:51 +000049 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
50
51 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!(norm_info.norm_size() % 2), "Normalization size should be odd");
Giorgio Arenac23b6332017-11-28 15:23:51 +000052
Giorgio Arenac23b6332017-11-28 15:23:51 +000053 // Checks performed when output is configured
54 if(output->total_size() != 0)
55 {
56 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +000057 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
Giorgio Arenac23b6332017-11-28 15:23:51 +000058 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
Giorgio Arenac23b6332017-11-28 15:23:51 +000059 }
60
Georgios Pinitas631c41a2017-12-06 11:53:03 +000061 return Status{};
Giorgio Arenac23b6332017-11-28 15:23:51 +000062}
63
Georgios Pinitas631c41a2017-12-06 11:53:03 +000064std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, NormalizationLayerInfo norm_info)
Giorgio Arenac23b6332017-11-28 15:23:51 +000065{
Giorgio Arenaf6a43c52017-12-01 12:16:25 +000066 // Output tensor auto initialization if not yet initialized
67 auto_init_if_empty(*output, *input->clone());
68
Manuel Bottini21c28952021-04-08 12:50:12 +010069 bool window_changed = false;
70 Window win;
71 const DataLayout data_layout = input->data_layout();
72 if(data_layout == DataLayout::NCHW)
Georgios Pinitas7f32d012018-10-11 18:41:19 +010073 {
SiCongLiaed61f22021-08-26 17:44:08 +010074 const unsigned int vec_size_x = adjust_vec_size(max_cl_vector_width / input->element_size(), input->dimension(0));
75 const unsigned int norm_idx = get_normalization_dimension_index(input->data_layout(), norm_info);
76 const bool is_norm_across_width = norm_idx == 0;
Manuel Bottini21c28952021-04-08 12:50:12 +010077
SiCongLiaed61f22021-08-26 17:44:08 +010078 const unsigned int norm_radius = norm_info.norm_size() / 2;
79 // Border / padding calculation:
80 // For NCHW no border handling is impelmeneted in the kernel in the x axis.
81 // This means the x axis is fully-padded depending on vec_size_x and norm_size
82 // E.G. for input x dimension = 3, norm_size = 3 (radius = 1), vec_size_x = 2 ('#' is element 'p' is padding):
83 // In : |p|#|#|#|p|p|
84 // Out: |#|#|#|p|
85 // The output has 1 right padding because of the vec_size_x.
86 // The input has 1 left padding because radius = 1.
87 // The input has 2 right padding because of radius = 1 AND because of the extra output padding
88 const unsigned int border_width_left = is_norm_across_width ? norm_radius : 0;
89 const unsigned int border_width_right = is_norm_across_width ? norm_radius + (vec_size_x - input->dimension(0) % vec_size_x) : 0;
90 const BorderSize border_size = BorderSize(0, border_width_right, 0, border_width_left);
Manuel Bottini21c28952021-04-08 12:50:12 +010091
92 win = calculate_max_window(*input, Steps(vec_size_x));
93
94 // We do not use a Rectangle window for IN_MAP_2D as we clamp the top and bottom accesses inside the kernel, avoiding padding
95 // Reads can occur within the valid region of the input
SiCongLiaed61f22021-08-26 17:44:08 +010096 if(is_norm_across_width)
Manuel Bottini21c28952021-04-08 12:50:12 +010097 {
98 AccessWindowStatic input_access(input, -border_size.left, 0, input->dimension(0) + border_size.right, 0);
99 window_changed = window_changed || update_window_and_padding(win, input_access);
100 }
101 else
102 {
103 AccessWindowHorizontal input_access(input, -border_size.left, vec_size_x);
104 window_changed = window_changed || update_window_and_padding(win, input_access);
105 }
106
107 AccessWindowHorizontal output_access(output, 0, vec_size_x);
108 window_changed = window_changed || update_window_and_padding(win, output_access);
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100109 }
110 else
111 {
Manuel Bottini21c28952021-04-08 12:50:12 +0100112 unsigned int vec_size_x = adjust_vec_size(max_cl_vector_width / input->element_size(), input->dimension(0));
113 if(norm_info.is_cross_map())
114 {
115 vec_size_x = 1;
116 }
117 win = calculate_max_window(*input, Steps(vec_size_x));
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100118 }
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000119 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arenac23b6332017-11-28 15:23:51 +0000120 return std::make_pair(err, win);
121}
122} // namespace
123
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100124CLNormalizationLayerKernel::CLNormalizationLayerKernel()
Georgios Pinitase2220552018-07-20 13:23:44 +0100125 : _input(nullptr), _output(nullptr), _border_size(0), _is_norm_across_width(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100126{
Giorgio Arena4a95bba2021-06-28 11:00:27 +0100127 _type = CLKernelType::ELEMENTWISE;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100128}
129
130BorderSize CLNormalizationLayerKernel::border_size() const
131{
132 return _border_size;
133}
134
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100135void CLNormalizationLayerKernel::configure(const ICLTensor *input, ICLTensor *output, NormalizationLayerInfo norm_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100136{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100137 configure(CLKernelLibrary::get().get_compile_context(), input, output, norm_info);
138}
139
Manuel Bottini679fc962020-04-21 16:08:53 +0100140void CLNormalizationLayerKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, NormalizationLayerInfo norm_info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100141{
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000142 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Manuel Bottini21c28952021-04-08 12:50:12 +0100143 auto padding_info = get_padding_info({ input, output });
Georgios Pinitas09004ca2017-07-03 17:30:14 +0100144
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000145 // Perform validation step
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000146 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), norm_info));
Manuel Bottini21c28952021-04-08 12:50:12 +0100147 auto win_config = validate_and_configure_window(input->info(), output->info(), norm_info);
148 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100149
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100150 _input = input;
151 _output = output;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100152
Manuel Bottini21c28952021-04-08 12:50:12 +0100153 const DataLayout data_layout = input->info()->data_layout();
154 unsigned int vec_size_x = adjust_vec_size(max_cl_vector_width / input->info()->element_size(), input->info()->dimension(0));
155 int vec_size_x_leftovers = input->info()->dimension(0) % vec_size_x;
156 if(norm_info.is_cross_map() && data_layout == DataLayout::NHWC)
157 {
158 vec_size_x = 1;
159 vec_size_x_leftovers = 0;
160 }
161
162 if(data_layout == DataLayout::NCHW)
163 {
SiCongLiaed61f22021-08-26 17:44:08 +0100164 const unsigned int norm_idx = get_normalization_dimension_index(data_layout, norm_info);
165 _is_norm_across_width = norm_idx == 0;
166 const unsigned int norm_radius = norm_info.norm_size() / 2;
167 // Border / padding calculation:
168 // For NCHW no border handling is impelmeneted in the kernel in the x axis.
169 // This means the x axis is fully-padded depending on vec_size_x and norm_size
170 // E.G. for input x dimension = 3, norm_size = 3 (radius = 1), vec_size_x = 2 ('#' is element 'p' is padding):
171 // In : |p|#|#|#|p|p|
172 // Out: |#|#|#|p|
173 // The output has 1 right padding because of the vec_size_x.
174 // The input has 1 left padding because radius = 1.
175 // The input has 2 right padding because of radius = 1 AND the extra output padding
176 const unsigned int border_width_left = _is_norm_across_width ? norm_radius : 0;
177 const unsigned int border_width_right = _is_norm_across_width ? norm_radius + (vec_size_x - input->info()->dimension(0) % vec_size_x) : 0;
178 _border_size = BorderSize(0, border_width_right, 0, border_width_left);
Manuel Bottini21c28952021-04-08 12:50:12 +0100179 }
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100180
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000181 const bool is_in_map_2D = (norm_info.type() == NormType::IN_MAP_2D);
182
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100183 // Set build options
Georgios Pinitas01624362017-11-30 10:53:31 +0000184 CLBuildOptions build_opts;
185 build_opts.add_option(("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())));
Georgios Pinitas01624362017-11-30 10:53:31 +0000186 build_opts.add_option(("-DCOEFF=" + float_to_string_with_full_precision(norm_info.scale_coeff())));
187 build_opts.add_option(("-DBETA=" + float_to_string_with_full_precision(norm_info.beta())));
188 build_opts.add_option(("-DKAPPA=" + float_to_string_with_full_precision(norm_info.kappa())));
Manuel Bottini21c28952021-04-08 12:50:12 +0100189 build_opts.add_option(("-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x)));
190 build_opts.add_option(("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(vec_size_x_leftovers)));
Georgios Pinitas01624362017-11-30 10:53:31 +0000191 build_opts.add_option(("-DRADIUS=" + support::cpp11::to_string(norm_info.norm_size() / 2)));
192 build_opts.add_option(("-DNUM_SLICES=" + support::cpp11::to_string(input->info()->dimension(2))));
193 build_opts.add_option_if(is_in_map_2D, "-DIN_MAP_2D");
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100194 build_opts.add_option_if(norm_info.is_in_map() || (data_layout == DataLayout::NHWC && norm_info.is_cross_map()), "-DWIDTH_SIZE=" + support::cpp11::to_string(input->info()->dimension(0)));
Manuel Bottini21c28952021-04-08 12:50:12 +0100195 build_opts.add_option_if(norm_info.is_in_map() && data_layout == DataLayout::NHWC, "-DDIM1_SIZE=" + support::cpp11::to_string(input->info()->dimension(1)));
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100196
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100197 // Create kernel
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000198 std::string kernel_name;
199 if(norm_info.is_in_map())
200 {
201 kernel_name = "normalization_layer_in_map_" + lower_string(string_from_data_layout(data_layout));
202 }
203 else
204 {
Manuel Bottini21c28952021-04-08 12:50:12 +0100205 kernel_name = "normalization_layer_cross_map_" + lower_string(string_from_data_layout(data_layout));
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000206 }
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100207 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100208
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100209 // Configure kernel window
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100210 ICLKernel::configure_internal(win_config.second);
Giorgio Arena63485ce2017-11-15 16:04:20 +0000211
212 // Set config_id for enabling LWS tuning
213 _config_id = "normalization_layer_";
214 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
215 _config_id += "_";
216 _config_id += support::cpp11::to_string(static_cast<std::underlying_type<NormType>::type>(norm_info.type()));
217 _config_id += "_";
218 _config_id += support::cpp11::to_string(norm_info.norm_size());
219 _config_id += "_";
220 _config_id += support::cpp11::to_string(input->info()->dimension(0));
221 _config_id += "_";
222 _config_id += support::cpp11::to_string(input->info()->dimension(1));
Manuel Bottini21c28952021-04-08 12:50:12 +0100223 if(data_layout == DataLayout::NHWC)
224 {
225 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
226 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100227}
228
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000229Status CLNormalizationLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, NormalizationLayerInfo norm_info)
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000230{
Giorgio Arenac23b6332017-11-28 15:23:51 +0000231 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, norm_info));
Georgios Pinitas01624362017-11-30 10:53:31 +0000232 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get(), norm_info).first);
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000233
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000234 return Status{};
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000235}
236
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100237void CLNormalizationLayerKernel::run(const Window &window, cl::CommandQueue &queue)
238{
239 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
240 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
241
Georgios Pinitase2220552018-07-20 13:23:44 +0100242 const int collapsed_dimension = _is_norm_across_width ? Window::DimZ : 4;
steniu01f70256b2017-07-13 14:03:35 +0100243 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), collapsed_dimension);
244 Window slice = window_collapsed.first_slice_window_3D();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100245
246 do
247 {
248 unsigned int idx = 0;
249 add_3D_tensor_argument(idx, _input, slice);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100250 add_3D_tensor_argument(idx, _output, slice);
Anthony Barbier5a65cfd2018-08-10 14:10:08 +0100251 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100252 }
steniu01f70256b2017-07-13 14:03:35 +0100253 while(window_collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100254}
Manuel Bottini21c28952021-04-08 12:50:12 +0100255} // namespace arm_compute