blob: a5dfafe33864fd26b90a69d852e855c6b63fb85c [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 {
Manuel Bottini21c28952021-04-08 12:50:12 +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_accross_width = norm_idx == 0;
77
78 const unsigned int border_width = is_norm_accross_width ? vec_size_x - 1 : 0;
79 const BorderSize border_size = BorderSize(0, border_width);
80
81 win = calculate_max_window(*input, Steps(vec_size_x));
82
83 // We do not use a Rectangle window for IN_MAP_2D as we clamp the top and bottom accesses inside the kernel, avoiding padding
84 // Reads can occur within the valid region of the input
85 if(is_norm_accross_width)
86 {
87 AccessWindowStatic input_access(input, -border_size.left, 0, input->dimension(0) + border_size.right, 0);
88 window_changed = window_changed || update_window_and_padding(win, input_access);
89 }
90 else
91 {
92 AccessWindowHorizontal input_access(input, -border_size.left, vec_size_x);
93 window_changed = window_changed || update_window_and_padding(win, input_access);
94 }
95
96 AccessWindowHorizontal output_access(output, 0, vec_size_x);
97 window_changed = window_changed || update_window_and_padding(win, output_access);
Georgios Pinitas7f32d012018-10-11 18:41:19 +010098 }
99 else
100 {
Manuel Bottini21c28952021-04-08 12:50:12 +0100101 unsigned int vec_size_x = adjust_vec_size(max_cl_vector_width / input->element_size(), input->dimension(0));
102 if(norm_info.is_cross_map())
103 {
104 vec_size_x = 1;
105 }
106 win = calculate_max_window(*input, Steps(vec_size_x));
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100107 }
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000108 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arenac23b6332017-11-28 15:23:51 +0000109 return std::make_pair(err, win);
110}
111} // namespace
112
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113CLNormalizationLayerKernel::CLNormalizationLayerKernel()
Georgios Pinitase2220552018-07-20 13:23:44 +0100114 : _input(nullptr), _output(nullptr), _border_size(0), _is_norm_across_width(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115{
Giorgio Arena4a95bba2021-06-28 11:00:27 +0100116 _type = CLKernelType::ELEMENTWISE;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100117}
118
119BorderSize CLNormalizationLayerKernel::border_size() const
120{
121 return _border_size;
122}
123
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100124void CLNormalizationLayerKernel::configure(const ICLTensor *input, ICLTensor *output, NormalizationLayerInfo norm_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100125{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100126 configure(CLKernelLibrary::get().get_compile_context(), input, output, norm_info);
127}
128
Manuel Bottini679fc962020-04-21 16:08:53 +0100129void CLNormalizationLayerKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, NormalizationLayerInfo norm_info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100130{
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000131 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Manuel Bottini21c28952021-04-08 12:50:12 +0100132 auto padding_info = get_padding_info({ input, output });
Georgios Pinitas09004ca2017-07-03 17:30:14 +0100133
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000134 // Perform validation step
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000135 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), norm_info));
Manuel Bottini21c28952021-04-08 12:50:12 +0100136 auto win_config = validate_and_configure_window(input->info(), output->info(), norm_info);
137 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100138
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100139 _input = input;
140 _output = output;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100141
Manuel Bottini21c28952021-04-08 12:50:12 +0100142 const DataLayout data_layout = input->info()->data_layout();
143 unsigned int vec_size_x = adjust_vec_size(max_cl_vector_width / input->info()->element_size(), input->info()->dimension(0));
144 int vec_size_x_leftovers = input->info()->dimension(0) % vec_size_x;
145 if(norm_info.is_cross_map() && data_layout == DataLayout::NHWC)
146 {
147 vec_size_x = 1;
148 vec_size_x_leftovers = 0;
149 }
150
151 if(data_layout == DataLayout::NCHW)
152 {
153 const unsigned int norm_idx = get_normalization_dimension_index(data_layout, norm_info);
154 _is_norm_across_width = norm_idx == 0;
155 const unsigned int border_width = _is_norm_across_width ? vec_size_x - 1 : 0;
156 _border_size = BorderSize(0, border_width);
157 }
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100158
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000159 const bool is_in_map_2D = (norm_info.type() == NormType::IN_MAP_2D);
160
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100161 // Set build options
Georgios Pinitas01624362017-11-30 10:53:31 +0000162 CLBuildOptions build_opts;
163 build_opts.add_option(("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())));
Georgios Pinitas01624362017-11-30 10:53:31 +0000164 build_opts.add_option(("-DCOEFF=" + float_to_string_with_full_precision(norm_info.scale_coeff())));
165 build_opts.add_option(("-DBETA=" + float_to_string_with_full_precision(norm_info.beta())));
166 build_opts.add_option(("-DKAPPA=" + float_to_string_with_full_precision(norm_info.kappa())));
Manuel Bottini21c28952021-04-08 12:50:12 +0100167 build_opts.add_option(("-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x)));
168 build_opts.add_option(("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(vec_size_x_leftovers)));
Georgios Pinitas01624362017-11-30 10:53:31 +0000169 build_opts.add_option(("-DRADIUS=" + support::cpp11::to_string(norm_info.norm_size() / 2)));
170 build_opts.add_option(("-DNUM_SLICES=" + support::cpp11::to_string(input->info()->dimension(2))));
171 build_opts.add_option_if(is_in_map_2D, "-DIN_MAP_2D");
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100172 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 +0100173 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 +0100174
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100175 // Create kernel
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000176 std::string kernel_name;
177 if(norm_info.is_in_map())
178 {
179 kernel_name = "normalization_layer_in_map_" + lower_string(string_from_data_layout(data_layout));
180 }
181 else
182 {
Manuel Bottini21c28952021-04-08 12:50:12 +0100183 kernel_name = "normalization_layer_cross_map_" + lower_string(string_from_data_layout(data_layout));
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000184 }
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100185 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100186
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100187 // Configure kernel window
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100188 ICLKernel::configure_internal(win_config.second);
Giorgio Arena63485ce2017-11-15 16:04:20 +0000189
190 // Set config_id for enabling LWS tuning
191 _config_id = "normalization_layer_";
192 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
193 _config_id += "_";
194 _config_id += support::cpp11::to_string(static_cast<std::underlying_type<NormType>::type>(norm_info.type()));
195 _config_id += "_";
196 _config_id += support::cpp11::to_string(norm_info.norm_size());
197 _config_id += "_";
198 _config_id += support::cpp11::to_string(input->info()->dimension(0));
199 _config_id += "_";
200 _config_id += support::cpp11::to_string(input->info()->dimension(1));
Manuel Bottini21c28952021-04-08 12:50:12 +0100201 if(data_layout == DataLayout::NHWC)
202 {
203 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
204 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100205}
206
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000207Status CLNormalizationLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, NormalizationLayerInfo norm_info)
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000208{
Giorgio Arenac23b6332017-11-28 15:23:51 +0000209 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, norm_info));
Georgios Pinitas01624362017-11-30 10:53:31 +0000210 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 +0000211
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000212 return Status{};
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000213}
214
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100215void CLNormalizationLayerKernel::run(const Window &window, cl::CommandQueue &queue)
216{
217 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
218 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
219
Georgios Pinitase2220552018-07-20 13:23:44 +0100220 const int collapsed_dimension = _is_norm_across_width ? Window::DimZ : 4;
steniu01f70256b2017-07-13 14:03:35 +0100221 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), collapsed_dimension);
222 Window slice = window_collapsed.first_slice_window_3D();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100223
224 do
225 {
226 unsigned int idx = 0;
227 add_3D_tensor_argument(idx, _input, slice);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100228 add_3D_tensor_argument(idx, _output, slice);
Anthony Barbier5a65cfd2018-08-10 14:10:08 +0100229 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100230 }
steniu01f70256b2017-07-13 14:03:35 +0100231 while(window_collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100232}
Manuel Bottini21c28952021-04-08 12:50:12 +0100233} // namespace arm_compute