blob: 00af59010489d1feb093bace8a4533f83fc46bae [file] [log] [blame]
Michalis Spyrou04f089c2017-08-08 17:42:38 +01001/*
Georgios Pinitas8f5802f2019-02-22 11:08:32 +00002 * Copyright (c) 2017-2019 ARM Limited.
Michalis Spyrou04f089c2017-08-08 17:42:38 +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 */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000024#include "arm_compute/core/CL/kernels/CLL2NormalizeLayerKernel.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000028#include "arm_compute/core/CL/CLValidate.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010029#include "arm_compute/core/CL/ICLTensor.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +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
36#include "support/ToolchainSupport.h"
37
Manuel Bottini4b5c5882019-05-14 10:38:30 +010038namespace arm_compute
39{
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000040CLL2NormalizeLayerKernel::CLL2NormalizeLayerKernel()
Manuel Bottini4b5c5882019-05-14 10:38:30 +010041 : _input(nullptr), _sum(nullptr), _output(nullptr), _actual_axis(0), _epsilon(1e-12)
Michalis Spyrou04f089c2017-08-08 17:42:38 +010042{
43}
44
John Richardson62385bc2018-04-20 13:11:36 +010045namespace
46{
Manuel Bottini4b5c5882019-05-14 10:38:30 +010047constexpr int max_input_tensor_dim = 3;
48
49Status validate_arguments(const ITensorInfo *input, const ITensorInfo *sum, const ITensorInfo *output, int axis, float epsilon)
John Richardson62385bc2018-04-20 13:11:36 +010050{
51 ARM_COMPUTE_UNUSED(epsilon);
52
Manuel Bottini4b5c5882019-05-14 10:38:30 +010053 const uint32_t actual_axis = wrap_around(axis, max_input_tensor_dim);
John Richardson62385bc2018-04-20 13:11:36 +010054 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, sum, output);
55 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, sum);
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000056 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +010057 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
Manuel Bottini4b5c5882019-05-14 10:38:30 +010058 ARM_COMPUTE_RETURN_ERROR_ON_MSG(actual_axis > 2, "Actual axis greater than 2 is not supported");
59 ARM_COMPUTE_RETURN_ERROR_ON_MSG(actual_axis >= TensorShape::num_max_dimensions, "Actual normalization axis greater than max number of dimensions");
John Richardson62385bc2018-04-20 13:11:36 +010060
61 // Reduce shape on axis
62 TensorShape sum_shape = input->tensor_shape();
Manuel Bottini4b5c5882019-05-14 10:38:30 +010063 sum_shape.set(actual_axis, 1);
John Richardson62385bc2018-04-20 13:11:36 +010064 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(sum->tensor_shape(), sum_shape);
65
66 if(output->total_size() != 0)
67 {
68 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +010069 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
John Richardson62385bc2018-04-20 13:11:36 +010070 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
71 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(input->tensor_shape(), output->tensor_shape());
John Richardson62385bc2018-04-20 13:11:36 +010072 }
73
74 return Status{};
75}
76
77std::tuple<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
78{
79 const unsigned int num_elems_processed_per_iteration = 16;
80
81 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
82
83 // Output tensor auto initialization if not yet initialized
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010084 auto_init_if_empty(*output, input->tensor_shape(), 1, input->data_type());
John Richardson62385bc2018-04-20 13:11:36 +010085
86 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
87 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
88
89 bool window_changed = update_window_and_padding(win, input_access, output_access);
90 output_access.set_valid_region(win, input->valid_region());
91
92 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
93
94 return std::make_tuple(err, win);
95}
96} // namespace
97
Manuel Bottini4b5c5882019-05-14 10:38:30 +010098void CLL2NormalizeLayerKernel::configure(const ICLTensor *input, const ICLTensor *sum, ICLTensor *output, int axis, float epsilon)
Michalis Spyrou04f089c2017-08-08 17:42:38 +010099{
John Richardson62385bc2018-04-20 13:11:36 +0100100 ARM_COMPUTE_ERROR_ON_NULLPTR(input, sum, output);
101 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), sum->info(), output->info(), axis, epsilon));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100102
103 _input = input;
104 _sum = sum;
105 _output = output;
Manuel Bottini4b5c5882019-05-14 10:38:30 +0100106 _actual_axis = wrap_around(axis, max_input_tensor_dim);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100107 _epsilon = epsilon;
108
109 const unsigned int num_elems_processed_per_iteration = 16;
110
111 // Set build options
112 std::set<std::string> build_opts;
113 build_opts.emplace(("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())));
114 build_opts.emplace(("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration)));
115
116 // Create kernel
Michalis Spyrou5538d342018-11-14 08:10:13 +0000117 std::string kernel_name;
118 unsigned int idx = 0;
Manuel Bottini4b5c5882019-05-14 10:38:30 +0100119 switch(_actual_axis)
Michalis Spyrou5538d342018-11-14 08:10:13 +0000120 {
121 case 0:
122 kernel_name = "x";
Usama Arifae0001e2019-03-26 13:44:01 +0000123 idx = num_arguments_per_2D_tensor() * 3;
Michalis Spyrou5538d342018-11-14 08:10:13 +0000124 break;
125 case 1:
126 kernel_name = "y";
127 idx = num_arguments_per_2D_tensor() * 3;
128 break;
129 case 2:
130 kernel_name = "z";
131 idx = num_arguments_per_3D_tensor() * 3;
132 break;
133 default:
Manuel Bottini4b5c5882019-05-14 10:38:30 +0100134 ARM_COMPUTE_ERROR("Axis not supported");
Michalis Spyrou5538d342018-11-14 08:10:13 +0000135 }
136 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("l2_normalize_" + kernel_name, build_opts));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100137
138 // Set epsilon argument
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100139 if(input->info()->data_type() == DataType::F32)
140 {
141 _kernel.setArg<cl_uint>(idx, _epsilon);
142 }
143 else
144 {
145 _kernel.setArg<cl_ushort>(idx, _epsilon);
146 }
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100147
148 // Configure kernel window
John Richardson62385bc2018-04-20 13:11:36 +0100149 auto win_config = validate_and_configure_window(_input->info(), _output->info());
150 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100151
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100152 ICLKernel::configure_internal(std::get<1>(win_config));
John Richardson62385bc2018-04-20 13:11:36 +0100153}
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100154
Manuel Bottini4b5c5882019-05-14 10:38:30 +0100155Status CLL2NormalizeLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *sum, const ITensorInfo *output, int axis, float epsilon)
John Richardson62385bc2018-04-20 13:11:36 +0100156{
157 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, sum, output, axis, epsilon));
158 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input->clone().get(), output->clone().get())));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100159
John Richardson62385bc2018-04-20 13:11:36 +0100160 return Status{};
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100161}
162
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000163void CLL2NormalizeLayerKernel::run(const Window &window, cl::CommandQueue &queue)
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100164{
165 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
166 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
167
168 Window window_sum(window);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100169
Manuel Bottini4b5c5882019-05-14 10:38:30 +0100170 switch(_actual_axis)
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100171 {
Michalis Spyrou5538d342018-11-14 08:10:13 +0000172 case 0:
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100173 {
174 window_sum.set(Window::DimX, Window::Dimension(0, 0, 0));
Usama Arifae0001e2019-03-26 13:44:01 +0000175 Window in_slice = window.first_slice_window_2D();
176 Window sum_slice = window_sum.first_slice_window_2D();
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100177 do
178 {
179 unsigned int idx = 0;
Usama Arifae0001e2019-03-26 13:44:01 +0000180 add_2D_tensor_argument(idx, _input, in_slice);
181 add_2D_tensor_argument(idx, _sum, sum_slice);
182 add_2D_tensor_argument(idx, _output, in_slice);
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100183 enqueue(queue, *this, in_slice);
184 }
Usama Arifae0001e2019-03-26 13:44:01 +0000185 while(window.slide_window_slice_2D(in_slice) && window.slide_window_slice_2D(sum_slice));
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100186 }
187 break;
Michalis Spyrou5538d342018-11-14 08:10:13 +0000188 case 1:
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100189 {
190 window_sum.set(Window::DimY, Window::Dimension(0, 0, 0));
191 Window in_slice = window.first_slice_window_2D();
192 Window sum_slice = window_sum.first_slice_window_2D();
193 do
194 {
195 unsigned int idx = 0;
196 add_2D_tensor_argument(idx, _input, in_slice);
197 add_2D_tensor_argument(idx, _sum, sum_slice);
198 add_2D_tensor_argument(idx, _output, in_slice);
199 enqueue(queue, *this, in_slice);
200 }
201 while(window.slide_window_slice_2D(in_slice) && window.slide_window_slice_2D(sum_slice));
202 }
203 break;
Michalis Spyrou5538d342018-11-14 08:10:13 +0000204 case 2:
205 {
206 window_sum.set(Window::DimZ, Window::Dimension(0, 0, 0));
207 Window in_slice = window.first_slice_window_3D();
208 Window sum_slice = window_sum.first_slice_window_3D();
209 do
210 {
211 unsigned int idx = 0;
212 add_3D_tensor_argument(idx, _input, in_slice);
213 add_3D_tensor_argument(idx, _sum, sum_slice);
214 add_3D_tensor_argument(idx, _output, in_slice);
215 enqueue(queue, *this, in_slice);
216 }
217 while(window.slide_window_slice_3D(in_slice) && window.slide_window_slice_3D(sum_slice));
218 }
219 break;
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100220 default:
221 ARM_COMPUTE_ERROR("Not supported");
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100222 }
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100223}
Manuel Bottini4b5c5882019-05-14 10:38:30 +0100224} // namespace arm_compute