blob: eb1ad68cd3883c3e9ee1be076074f65276ad9088 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +01002 * Copyright (c) 2017-2018 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 */
24#include "arm_compute/core/CL/kernels/CLNormalizationLayerKernel.h"
25
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010028#include "arm_compute/core/CL/CLValidate.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/CL/ICLTensor.h"
30#include "arm_compute/core/Helpers.h"
31#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Utils.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033#include "arm_compute/core/Window.h"
34
35using namespace arm_compute;
36
Giorgio Arenac23b6332017-11-28 15:23:51 +000037namespace
38{
Georgios Pinitas631c41a2017-12-06 11:53:03 +000039Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, NormalizationLayerInfo norm_info)
Giorgio Arenac23b6332017-11-28 15:23:51 +000040{
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010041 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010042 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
Giorgio Arenac23b6332017-11-28 15:23:51 +000043 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
44
Georgios Pinitase2220552018-07-20 13:23:44 +010045 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->data_layout() == DataLayout::NHWC && norm_info.type() == NormType::IN_MAP_2D,
46 "Only Cross-map and 1D In-map normalization is supported for NHWC layout");
Giorgio Arenac23b6332017-11-28 15:23:51 +000047 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!(norm_info.norm_size() % 2), "Normalization size should be odd");
Giorgio Arenac23b6332017-11-28 15:23:51 +000048
Giorgio Arenac23b6332017-11-28 15:23:51 +000049 // Checks performed when output is configured
50 if(output->total_size() != 0)
51 {
52 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
53 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
Giorgio Arenac23b6332017-11-28 15:23:51 +000054 }
55
Georgios Pinitas631c41a2017-12-06 11:53:03 +000056 return Status{};
Giorgio Arenac23b6332017-11-28 15:23:51 +000057}
58
Georgios Pinitas631c41a2017-12-06 11:53:03 +000059std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, NormalizationLayerInfo norm_info)
Giorgio Arenac23b6332017-11-28 15:23:51 +000060{
Giorgio Arenaf6a43c52017-12-01 12:16:25 +000061 // Output tensor auto initialization if not yet initialized
62 auto_init_if_empty(*output, *input->clone());
63
Georgios Pinitase2220552018-07-20 13:23:44 +010064 const unsigned int norm_idx = get_normalization_dimension_index(input->data_layout(), norm_info);
65 const unsigned int norm_size = norm_info.norm_size();
66 bool is_norm_accross_width = norm_idx == 0;
Georgios Pinitas01624362017-11-30 10:53:31 +000067
Georgios Pinitase2220552018-07-20 13:23:44 +010068 const unsigned int border_width = is_norm_accross_width ? std::min(norm_size / 2, 3U) : 0;
Giorgio Arenac23b6332017-11-28 15:23:51 +000069 const BorderSize border_size = BorderSize(0, border_width);
70
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010071 const unsigned int num_elems_processed_per_iteration = 4;
Georgios Pinitase2220552018-07-20 13:23:44 +010072 const unsigned int num_elems_read_per_iteration = is_norm_accross_width ? (num_elems_processed_per_iteration + 2 * (norm_size / 2)) : num_elems_processed_per_iteration;
Giorgio Arenac23b6332017-11-28 15:23:51 +000073
74 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
75
Georgios Pinitas01624362017-11-30 10:53:31 +000076 // We do not use a Rectangle window for IN_MAP_2D as we clamp the top and bottom accesses inside the kernel, avoiding padding
Giorgio Arenac23b6332017-11-28 15:23:51 +000077 AccessWindowHorizontal input_access(input, -border_size.left, num_elems_read_per_iteration);
78 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
79
80 bool window_changed = update_window_and_padding(win, input_access, output_access);
81
82 output_access.set_valid_region(win, input->valid_region());
83
Georgios Pinitas631c41a2017-12-06 11:53:03 +000084 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arenac23b6332017-11-28 15:23:51 +000085 return std::make_pair(err, win);
86}
87} // namespace
88
Anthony Barbier6ff3b192017-09-04 18:44:23 +010089CLNormalizationLayerKernel::CLNormalizationLayerKernel()
Georgios Pinitase2220552018-07-20 13:23:44 +010090 : _input(nullptr), _output(nullptr), _border_size(0), _is_norm_across_width(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010091{
92}
93
94BorderSize CLNormalizationLayerKernel::border_size() const
95{
96 return _border_size;
97}
98
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +010099void CLNormalizationLayerKernel::configure(const ICLTensor *input, ICLTensor *output, NormalizationLayerInfo norm_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100100{
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000101 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas09004ca2017-07-03 17:30:14 +0100102
103 // Output tensor auto initialization if not yet initialized
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000104 auto_init_if_empty(*output->info(), *input->info()->clone());
Georgios Pinitas09004ca2017-07-03 17:30:14 +0100105
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000106 // Perform validation step
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000107 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), norm_info));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100108
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100109 _input = input;
110 _output = output;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111
Georgios Pinitase2220552018-07-20 13:23:44 +0100112 const unsigned int norm_idx = get_normalization_dimension_index(input->info()->data_layout(), norm_info);
113 _is_norm_across_width = norm_idx == 0;
114 const unsigned int border_width = _is_norm_across_width ? std::min(norm_info.norm_size() / 2, 3U) : 0;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115 _border_size = BorderSize(0, border_width);
116
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100117 const unsigned int num_elems_processed_per_iteration = 4;
Georgios Pinitas01624362017-11-30 10:53:31 +0000118 const bool is_in_map_2D = (norm_info.type() == NormType::IN_MAP_2D);
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100119
120 // Set build options
Georgios Pinitas01624362017-11-30 10:53:31 +0000121 CLBuildOptions build_opts;
122 build_opts.add_option(("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())));
Georgios Pinitas01624362017-11-30 10:53:31 +0000123 build_opts.add_option(("-DCOEFF=" + float_to_string_with_full_precision(norm_info.scale_coeff())));
124 build_opts.add_option(("-DBETA=" + float_to_string_with_full_precision(norm_info.beta())));
125 build_opts.add_option(("-DKAPPA=" + float_to_string_with_full_precision(norm_info.kappa())));
126 build_opts.add_option(("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration)));
127 build_opts.add_option(("-DRADIUS=" + support::cpp11::to_string(norm_info.norm_size() / 2)));
128 build_opts.add_option(("-DNUM_SLICES=" + support::cpp11::to_string(input->info()->dimension(2))));
129 build_opts.add_option_if(is_in_map_2D, "-DIN_MAP_2D");
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100130
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131 // Create kernel
Georgios Pinitase2220552018-07-20 13:23:44 +0100132 std::string kernel_name = _is_norm_across_width ? "normalization_layer_in_map" : "normalization_layer_cross_map";
Georgios Pinitas01624362017-11-30 10:53:31 +0000133 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100134
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100135 // Configure kernel window
Georgios Pinitas01624362017-11-30 10:53:31 +0000136 auto win_config = validate_and_configure_window(input->info(), output->info(), norm_info);
Giorgio Arenac23b6332017-11-28 15:23:51 +0000137 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100138 ICLKernel::configure_internal(win_config.second);
Giorgio Arena63485ce2017-11-15 16:04:20 +0000139
140 // Set config_id for enabling LWS tuning
141 _config_id = "normalization_layer_";
142 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
143 _config_id += "_";
144 _config_id += support::cpp11::to_string(static_cast<std::underlying_type<NormType>::type>(norm_info.type()));
145 _config_id += "_";
146 _config_id += support::cpp11::to_string(norm_info.norm_size());
147 _config_id += "_";
148 _config_id += support::cpp11::to_string(input->info()->dimension(0));
149 _config_id += "_";
150 _config_id += support::cpp11::to_string(input->info()->dimension(1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100151}
152
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000153Status CLNormalizationLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, NormalizationLayerInfo norm_info)
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000154{
Giorgio Arenac23b6332017-11-28 15:23:51 +0000155 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, norm_info));
Georgios Pinitas01624362017-11-30 10:53:31 +0000156 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 +0000157
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000158 return Status{};
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000159}
160
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100161void CLNormalizationLayerKernel::run(const Window &window, cl::CommandQueue &queue)
162{
163 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
164 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
165
Georgios Pinitase2220552018-07-20 13:23:44 +0100166 const int collapsed_dimension = _is_norm_across_width ? Window::DimZ : 4;
steniu01f70256b2017-07-13 14:03:35 +0100167 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), collapsed_dimension);
168 Window slice = window_collapsed.first_slice_window_3D();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100169
170 do
171 {
172 unsigned int idx = 0;
173 add_3D_tensor_argument(idx, _input, slice);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100174 add_3D_tensor_argument(idx, _output, slice);
Anthony Barbier5a65cfd2018-08-10 14:10:08 +0100175 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100176 }
steniu01f70256b2017-07-13 14:03:35 +0100177 while(window_collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100178}