blob: 25c5a7df7783aa95212b39609428ed8e834c8b00 [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 "arm_compute/core/CL/kernels/CLNormalizationLayerKernel.h"
25
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
Michele Di Giorgio6c928342017-06-22 16:55:57 +010029#include "arm_compute/core/FixedPoint.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/Helpers.h"
31#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Utils.h"
33#include "arm_compute/core/Validate.h"
34#include "arm_compute/core/Window.h"
35
36using namespace arm_compute;
37
Giorgio Arenac23b6332017-11-28 15:23:51 +000038namespace
39{
40Error validate_arguments(const ITensorInfo *input, const ITensorInfo *output, NormalizationLayerInfo norm_info)
41{
42 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QS8, DataType::QS16, DataType::F16, DataType::F32);
43 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
44
45 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!(norm_info.norm_size() % 2), "Normalization size should be odd");
Giorgio Arenac23b6332017-11-28 15:23:51 +000046
47 if(is_data_type_fixed_point(input->data_type()))
48 {
49 ARM_COMPUTE_RETURN_ERROR_ON_VALUE_NOT_REPRESENTABLE_IN_FIXED_POINT(norm_info.beta(), input);
50 ARM_COMPUTE_RETURN_ERROR_ON_VALUE_NOT_REPRESENTABLE_IN_FIXED_POINT(norm_info.kappa(), input);
51 ARM_COMPUTE_RETURN_ERROR_ON_VALUE_NOT_REPRESENTABLE_IN_FIXED_POINT(norm_info.scale_coeff(), input);
52 }
53
54 // Checks performed when output is configured
55 if(output->total_size() != 0)
56 {
57 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
58 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
59 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
60 }
61
62 return Error{};
63}
64
Georgios Pinitas01624362017-11-30 10:53:31 +000065std::pair<Error, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, NormalizationLayerInfo norm_info)
Giorgio Arenac23b6332017-11-28 15:23:51 +000066{
Giorgio Arenaf6a43c52017-12-01 12:16:25 +000067 // Output tensor auto initialization if not yet initialized
68 auto_init_if_empty(*output, *input->clone());
69
Georgios Pinitas01624362017-11-30 10:53:31 +000070 const unsigned int norm_size = norm_info.norm_size();
71 bool is_in_map = norm_info.is_in_map();
72
Giorgio Arenac23b6332017-11-28 15:23:51 +000073 const unsigned int border_width = is_in_map ? std::min(norm_size / 2, 3U) : 0;
74 const BorderSize border_size = BorderSize(0, border_width);
75
76 const unsigned int num_elems_processed_per_iteration = (is_data_type_fixed_point(input->data_type())) ? 16 : 4;
77 const unsigned int num_elems_read_per_iteration = is_in_map ? (num_elems_processed_per_iteration + 2 * (norm_size / 2)) : num_elems_processed_per_iteration;
78
79 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
80
Georgios Pinitas01624362017-11-30 10:53:31 +000081 // 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 +000082 AccessWindowHorizontal input_access(input, -border_size.left, num_elems_read_per_iteration);
83 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
84
85 bool window_changed = update_window_and_padding(win, input_access, output_access);
86
87 output_access.set_valid_region(win, input->valid_region());
88
89 Error err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Error{};
90 return std::make_pair(err, win);
91}
92} // namespace
93
Anthony Barbier6ff3b192017-09-04 18:44:23 +010094CLNormalizationLayerKernel::CLNormalizationLayerKernel()
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +010095 : _input(nullptr), _output(nullptr), _border_size(0), _is_in_map(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010096{
97}
98
99BorderSize CLNormalizationLayerKernel::border_size() const
100{
101 return _border_size;
102}
103
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100104void CLNormalizationLayerKernel::configure(const ICLTensor *input, ICLTensor *output, NormalizationLayerInfo norm_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100105{
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000106 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas09004ca2017-07-03 17:30:14 +0100107
108 // Output tensor auto initialization if not yet initialized
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000109 auto_init_if_empty(*output->info(), *input->info()->clone());
Georgios Pinitas09004ca2017-07-03 17:30:14 +0100110
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000111 // Perform validation step
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000112 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), norm_info));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113
Gian Marco Iodiced60a6b92017-08-10 10:43:40 +0100114 _input = input;
115 _output = output;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100116
Georgios Pinitas41caa622017-11-16 14:37:08 +0000117 _is_in_map = norm_info.is_in_map();
steniu01f70256b2017-07-13 14:03:35 +0100118 const unsigned int border_width = _is_in_map ? std::min(norm_info.norm_size() / 2, 3U) : 0;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100119 _border_size = BorderSize(0, border_width);
120
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100121 const unsigned int num_elems_processed_per_iteration = (is_data_type_fixed_point(input->info()->data_type())) ? 16 : 4;
Georgios Pinitas01624362017-11-30 10:53:31 +0000122 const bool is_in_map_2D = (norm_info.type() == NormType::IN_MAP_2D);
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100123
124 // Set build options
Georgios Pinitas01624362017-11-30 10:53:31 +0000125 CLBuildOptions build_opts;
126 build_opts.add_option(("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())));
127 build_opts.add_option_if(is_data_type_fixed_point(input->info()->data_type()),
128 "-DFIXED_POINT_POSITION=" + support::cpp11::to_string(input->info()->fixed_point_position()));
129 build_opts.add_option(("-DCOEFF=" + float_to_string_with_full_precision(norm_info.scale_coeff())));
130 build_opts.add_option(("-DBETA=" + float_to_string_with_full_precision(norm_info.beta())));
131 build_opts.add_option(("-DKAPPA=" + float_to_string_with_full_precision(norm_info.kappa())));
132 build_opts.add_option(("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration)));
133 build_opts.add_option(("-DRADIUS=" + support::cpp11::to_string(norm_info.norm_size() / 2)));
134 build_opts.add_option(("-DNUM_SLICES=" + support::cpp11::to_string(input->info()->dimension(2))));
135 build_opts.add_option_if(is_in_map_2D, "-DIN_MAP_2D");
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100136
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100137 // Create kernel
Georgios Pinitas01624362017-11-30 10:53:31 +0000138 std::string kernel_name = _is_in_map ? "normalization_layer_in_map" : "normalization_layer_cross_map";
139 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100140
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100141 // Configure kernel window
Georgios Pinitas01624362017-11-30 10:53:31 +0000142 auto win_config = validate_and_configure_window(input->info(), output->info(), norm_info);
Giorgio Arenac23b6332017-11-28 15:23:51 +0000143 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
144 ICLKernel::configure(win_config.second);
Giorgio Arena63485ce2017-11-15 16:04:20 +0000145
146 // Set config_id for enabling LWS tuning
147 _config_id = "normalization_layer_";
148 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
149 _config_id += "_";
150 _config_id += support::cpp11::to_string(static_cast<std::underlying_type<NormType>::type>(norm_info.type()));
151 _config_id += "_";
152 _config_id += support::cpp11::to_string(norm_info.norm_size());
153 _config_id += "_";
154 _config_id += support::cpp11::to_string(input->info()->dimension(0));
155 _config_id += "_";
156 _config_id += support::cpp11::to_string(input->info()->dimension(1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100157}
158
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000159Error CLNormalizationLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, NormalizationLayerInfo norm_info)
160{
Giorgio Arenac23b6332017-11-28 15:23:51 +0000161 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, norm_info));
Georgios Pinitas01624362017-11-30 10:53:31 +0000162 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 +0000163
164 return Error{};
165}
166
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100167void CLNormalizationLayerKernel::run(const Window &window, cl::CommandQueue &queue)
168{
169 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
170 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
171
steniu01f70256b2017-07-13 14:03:35 +0100172 const int collapsed_dimension = _is_in_map ? Window::DimZ : 4;
173 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), collapsed_dimension);
174 Window slice = window_collapsed.first_slice_window_3D();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100175
176 do
177 {
178 unsigned int idx = 0;
179 add_3D_tensor_argument(idx, _input, slice);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100180 add_3D_tensor_argument(idx, _output, slice);
181 enqueue(queue, *this, slice);
182 }
steniu01f70256b2017-07-13 14:03:35 +0100183 while(window_collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100184}