blob: e04950d0a20fc3871391dfe0df0869c710931217 [file] [log] [blame]
Michalis Spyrou04f089c2017-08-08 17:42:38 +01001/*
Matthew Bentham758b5ba2020-03-05 23:37:48 +00002 * Copyright (c) 2017-2020 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
Matthew Bentham758b5ba2020-03-05 23:37:48 +000036#include "support/StringSupport.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010037
Manuel Bottini4b5c5882019-05-14 10:38:30 +010038namespace arm_compute
39{
John Richardson62385bc2018-04-20 13:11:36 +010040namespace
41{
Manuel Bottini4b5c5882019-05-14 10:38:30 +010042constexpr int max_input_tensor_dim = 3;
43
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +010044constexpr unsigned int num_elems_processed_per_iteration = 16;
45
Manuel Bottini4b5c5882019-05-14 10:38:30 +010046Status validate_arguments(const ITensorInfo *input, const ITensorInfo *sum, const ITensorInfo *output, int axis, float epsilon)
John Richardson62385bc2018-04-20 13:11:36 +010047{
48 ARM_COMPUTE_UNUSED(epsilon);
49
Manuel Bottini4b5c5882019-05-14 10:38:30 +010050 const uint32_t actual_axis = wrap_around(axis, max_input_tensor_dim);
John Richardson62385bc2018-04-20 13:11:36 +010051 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, sum, output);
52 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, sum);
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000053 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +010054 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
Manuel Bottini4b5c5882019-05-14 10:38:30 +010055 ARM_COMPUTE_RETURN_ERROR_ON_MSG(actual_axis > 2, "Actual axis greater than 2 is not supported");
56 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 +010057
58 // Reduce shape on axis
59 TensorShape sum_shape = input->tensor_shape();
Manuel Bottini4b5c5882019-05-14 10:38:30 +010060 sum_shape.set(actual_axis, 1);
John Richardson62385bc2018-04-20 13:11:36 +010061 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(sum->tensor_shape(), sum_shape);
62
63 if(output->total_size() != 0)
64 {
65 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +010066 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
John Richardson62385bc2018-04-20 13:11:36 +010067 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
68 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(input->tensor_shape(), output->tensor_shape());
John Richardson62385bc2018-04-20 13:11:36 +010069 }
70
71 return Status{};
72}
73
74std::tuple<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
75{
John Richardson62385bc2018-04-20 13:11:36 +010076 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
77
78 // Output tensor auto initialization if not yet initialized
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010079 auto_init_if_empty(*output, input->tensor_shape(), 1, input->data_type());
John Richardson62385bc2018-04-20 13:11:36 +010080
81 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
82 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
83
84 bool window_changed = update_window_and_padding(win, input_access, output_access);
85 output_access.set_valid_region(win, input->valid_region());
86
87 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
88
89 return std::make_tuple(err, win);
90}
91} // namespace
92
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +010093CLL2NormalizeLayerKernel::CLL2NormalizeLayerKernel()
94 : _input(nullptr), _sum(nullptr), _output(nullptr), _actual_axis(0), _epsilon(1e-12)
95{
96}
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{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100100 configure(CLKernelLibrary::get().get_compile_context(), input, sum, output, axis, epsilon);
101}
102
Manuel Bottini679fc962020-04-21 16:08:53 +0100103void CLL2NormalizeLayerKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *sum, ICLTensor *output, int axis, float epsilon)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100104{
John Richardson62385bc2018-04-20 13:11:36 +0100105 ARM_COMPUTE_ERROR_ON_NULLPTR(input, sum, output);
106 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), sum->info(), output->info(), axis, epsilon));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100107
Georgios Pinitas51403b52019-06-18 14:10:48 +0100108 _input = input;
109 _sum = sum;
110 _output = output;
111 _actual_axis = wrap_around(axis, max_input_tensor_dim);
112 _epsilon = epsilon;
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100113
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100114 // Set build options
115 std::set<std::string> build_opts;
116 build_opts.emplace(("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())));
117 build_opts.emplace(("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration)));
118
119 // Create kernel
Michalis Spyrou5538d342018-11-14 08:10:13 +0000120 std::string kernel_name;
121 unsigned int idx = 0;
Manuel Bottini4b5c5882019-05-14 10:38:30 +0100122 switch(_actual_axis)
Michalis Spyrou5538d342018-11-14 08:10:13 +0000123 {
124 case 0:
125 kernel_name = "x";
Usama Arifae0001e2019-03-26 13:44:01 +0000126 idx = num_arguments_per_2D_tensor() * 3;
Michalis Spyrou5538d342018-11-14 08:10:13 +0000127 break;
128 case 1:
129 kernel_name = "y";
130 idx = num_arguments_per_2D_tensor() * 3;
131 break;
132 case 2:
133 kernel_name = "z";
134 idx = num_arguments_per_3D_tensor() * 3;
135 break;
136 default:
Manuel Bottini4b5c5882019-05-14 10:38:30 +0100137 ARM_COMPUTE_ERROR("Axis not supported");
Michalis Spyrou5538d342018-11-14 08:10:13 +0000138 }
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100139 _kernel = create_kernel(compile_context, "l2_normalize_" + kernel_name, build_opts);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100140
141 // Set epsilon argument
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100142 if(input->info()->data_type() == DataType::F32)
143 {
Georgios Pinitas51403b52019-06-18 14:10:48 +0100144 _kernel.setArg<cl_float>(idx, _epsilon);
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100145 }
146 else
147 {
Georgios Pinitas51403b52019-06-18 14:10:48 +0100148 _kernel.setArg<cl_half>(idx, _epsilon);
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100149 }
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100150
151 // Configure kernel window
John Richardson62385bc2018-04-20 13:11:36 +0100152 auto win_config = validate_and_configure_window(_input->info(), _output->info());
153 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100154
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100155 ICLKernel::configure_internal(std::get<1>(win_config));
John Richardson62385bc2018-04-20 13:11:36 +0100156}
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100157
Manuel Bottini4b5c5882019-05-14 10:38:30 +0100158Status CLL2NormalizeLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *sum, const ITensorInfo *output, int axis, float epsilon)
John Richardson62385bc2018-04-20 13:11:36 +0100159{
160 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, sum, output, axis, epsilon));
161 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 +0100162
John Richardson62385bc2018-04-20 13:11:36 +0100163 return Status{};
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100164}
165
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000166void CLL2NormalizeLayerKernel::run(const Window &window, cl::CommandQueue &queue)
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100167{
168 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
169 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
170
171 Window window_sum(window);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100172
Manuel Bottini4b5c5882019-05-14 10:38:30 +0100173 switch(_actual_axis)
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100174 {
Michalis Spyrou5538d342018-11-14 08:10:13 +0000175 case 0:
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100176 {
177 window_sum.set(Window::DimX, Window::Dimension(0, 0, 0));
Usama Arifae0001e2019-03-26 13:44:01 +0000178 Window in_slice = window.first_slice_window_2D();
179 Window sum_slice = window_sum.first_slice_window_2D();
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100180 do
181 {
182 unsigned int idx = 0;
Usama Arifae0001e2019-03-26 13:44:01 +0000183 add_2D_tensor_argument(idx, _input, in_slice);
184 add_2D_tensor_argument(idx, _sum, sum_slice);
185 add_2D_tensor_argument(idx, _output, in_slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100186 enqueue(queue, *this, in_slice, lws_hint());
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100187 }
Usama Arifae0001e2019-03-26 13:44:01 +0000188 while(window.slide_window_slice_2D(in_slice) && window.slide_window_slice_2D(sum_slice));
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100189 }
190 break;
Michalis Spyrou5538d342018-11-14 08:10:13 +0000191 case 1:
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100192 {
193 window_sum.set(Window::DimY, Window::Dimension(0, 0, 0));
194 Window in_slice = window.first_slice_window_2D();
195 Window sum_slice = window_sum.first_slice_window_2D();
196 do
197 {
198 unsigned int idx = 0;
199 add_2D_tensor_argument(idx, _input, in_slice);
200 add_2D_tensor_argument(idx, _sum, sum_slice);
201 add_2D_tensor_argument(idx, _output, in_slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100202 enqueue(queue, *this, in_slice, lws_hint());
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100203 }
204 while(window.slide_window_slice_2D(in_slice) && window.slide_window_slice_2D(sum_slice));
205 }
206 break;
Michalis Spyrou5538d342018-11-14 08:10:13 +0000207 case 2:
208 {
209 window_sum.set(Window::DimZ, Window::Dimension(0, 0, 0));
210 Window in_slice = window.first_slice_window_3D();
211 Window sum_slice = window_sum.first_slice_window_3D();
212 do
213 {
214 unsigned int idx = 0;
215 add_3D_tensor_argument(idx, _input, in_slice);
216 add_3D_tensor_argument(idx, _sum, sum_slice);
217 add_3D_tensor_argument(idx, _output, in_slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100218 enqueue(queue, *this, in_slice, lws_hint());
Michalis Spyrou5538d342018-11-14 08:10:13 +0000219 }
220 while(window.slide_window_slice_3D(in_slice) && window.slide_window_slice_3D(sum_slice));
221 }
222 break;
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100223 default:
224 ARM_COMPUTE_ERROR("Not supported");
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100225 }
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100226}
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +0100227} // namespace arm_compute