blob: a0d7be043a6c99a3e6177ca0e6b82868ca58aa38 [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{
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
Georgios Pinitas51403b52019-06-18 14:10:48 +0100103 _input = input;
104 _sum = sum;
105 _output = output;
106 _actual_axis = wrap_around(axis, max_input_tensor_dim);
107 _epsilon = epsilon;
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100108
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100109 // Set build options
110 std::set<std::string> build_opts;
111 build_opts.emplace(("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())));
112 build_opts.emplace(("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration)));
113
114 // Create kernel
Michalis Spyrou5538d342018-11-14 08:10:13 +0000115 std::string kernel_name;
116 unsigned int idx = 0;
Manuel Bottini4b5c5882019-05-14 10:38:30 +0100117 switch(_actual_axis)
Michalis Spyrou5538d342018-11-14 08:10:13 +0000118 {
119 case 0:
120 kernel_name = "x";
Usama Arifae0001e2019-03-26 13:44:01 +0000121 idx = num_arguments_per_2D_tensor() * 3;
Michalis Spyrou5538d342018-11-14 08:10:13 +0000122 break;
123 case 1:
124 kernel_name = "y";
125 idx = num_arguments_per_2D_tensor() * 3;
126 break;
127 case 2:
128 kernel_name = "z";
129 idx = num_arguments_per_3D_tensor() * 3;
130 break;
131 default:
Manuel Bottini4b5c5882019-05-14 10:38:30 +0100132 ARM_COMPUTE_ERROR("Axis not supported");
Michalis Spyrou5538d342018-11-14 08:10:13 +0000133 }
134 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("l2_normalize_" + kernel_name, build_opts));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100135
136 // Set epsilon argument
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100137 if(input->info()->data_type() == DataType::F32)
138 {
Georgios Pinitas51403b52019-06-18 14:10:48 +0100139 _kernel.setArg<cl_float>(idx, _epsilon);
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100140 }
141 else
142 {
Georgios Pinitas51403b52019-06-18 14:10:48 +0100143 _kernel.setArg<cl_half>(idx, _epsilon);
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100144 }
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100145
146 // Configure kernel window
John Richardson62385bc2018-04-20 13:11:36 +0100147 auto win_config = validate_and_configure_window(_input->info(), _output->info());
148 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100149
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100150 ICLKernel::configure_internal(std::get<1>(win_config));
John Richardson62385bc2018-04-20 13:11:36 +0100151}
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100152
Manuel Bottini4b5c5882019-05-14 10:38:30 +0100153Status CLL2NormalizeLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *sum, const ITensorInfo *output, int axis, float epsilon)
John Richardson62385bc2018-04-20 13:11:36 +0100154{
155 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, sum, output, axis, epsilon));
156 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 +0100157
John Richardson62385bc2018-04-20 13:11:36 +0100158 return Status{};
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100159}
160
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000161void CLL2NormalizeLayerKernel::run(const Window &window, cl::CommandQueue &queue)
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100162{
163 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
164 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
165
166 Window window_sum(window);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100167
Manuel Bottini4b5c5882019-05-14 10:38:30 +0100168 switch(_actual_axis)
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100169 {
Michalis Spyrou5538d342018-11-14 08:10:13 +0000170 case 0:
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100171 {
172 window_sum.set(Window::DimX, Window::Dimension(0, 0, 0));
Usama Arifae0001e2019-03-26 13:44:01 +0000173 Window in_slice = window.first_slice_window_2D();
174 Window sum_slice = window_sum.first_slice_window_2D();
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100175 do
176 {
177 unsigned int idx = 0;
Usama Arifae0001e2019-03-26 13:44:01 +0000178 add_2D_tensor_argument(idx, _input, in_slice);
179 add_2D_tensor_argument(idx, _sum, sum_slice);
180 add_2D_tensor_argument(idx, _output, in_slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100181 enqueue(queue, *this, in_slice, lws_hint());
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100182 }
Usama Arifae0001e2019-03-26 13:44:01 +0000183 while(window.slide_window_slice_2D(in_slice) && window.slide_window_slice_2D(sum_slice));
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100184 }
185 break;
Michalis Spyrou5538d342018-11-14 08:10:13 +0000186 case 1:
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100187 {
188 window_sum.set(Window::DimY, Window::Dimension(0, 0, 0));
189 Window in_slice = window.first_slice_window_2D();
190 Window sum_slice = window_sum.first_slice_window_2D();
191 do
192 {
193 unsigned int idx = 0;
194 add_2D_tensor_argument(idx, _input, in_slice);
195 add_2D_tensor_argument(idx, _sum, sum_slice);
196 add_2D_tensor_argument(idx, _output, in_slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100197 enqueue(queue, *this, in_slice, lws_hint());
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100198 }
199 while(window.slide_window_slice_2D(in_slice) && window.slide_window_slice_2D(sum_slice));
200 }
201 break;
Michalis Spyrou5538d342018-11-14 08:10:13 +0000202 case 2:
203 {
204 window_sum.set(Window::DimZ, Window::Dimension(0, 0, 0));
205 Window in_slice = window.first_slice_window_3D();
206 Window sum_slice = window_sum.first_slice_window_3D();
207 do
208 {
209 unsigned int idx = 0;
210 add_3D_tensor_argument(idx, _input, in_slice);
211 add_3D_tensor_argument(idx, _sum, sum_slice);
212 add_3D_tensor_argument(idx, _output, in_slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100213 enqueue(queue, *this, in_slice, lws_hint());
Michalis Spyrou5538d342018-11-14 08:10:13 +0000214 }
215 while(window.slide_window_slice_3D(in_slice) && window.slide_window_slice_3D(sum_slice));
216 }
217 break;
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100218 default:
219 ARM_COMPUTE_ERROR("Not supported");
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100220 }
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100221}
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +0100222} // namespace arm_compute