blob: 4f36046b288af132f87266a4fa4e2b5d8cef0670 [file] [log] [blame]
Michalis Spyrou04f089c2017-08-08 17:42:38 +01001/*
John Richardson62385bc2018-04-20 13:11:36 +01002 * Copyright (c) 2017-2018 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"
28#include "arm_compute/core/CL/ICLTensor.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010029#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Utils.h"
32#include "arm_compute/core/Validate.h"
33#include "arm_compute/core/Window.h"
34
35#include "support/ToolchainSupport.h"
36
37using namespace arm_compute;
38
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000039CLL2NormalizeLayerKernel::CLL2NormalizeLayerKernel()
Michalis Spyrou04f089c2017-08-08 17:42:38 +010040 : _input(nullptr), _sum(nullptr), _output(nullptr), _axis(0), _epsilon(1e-12)
41{
42}
43
John Richardson62385bc2018-04-20 13:11:36 +010044namespace
45{
46Status validate_arguments(const ITensorInfo *input, const ITensorInfo *sum, const ITensorInfo *output, unsigned int axis, float epsilon)
47{
48 ARM_COMPUTE_UNUSED(epsilon);
49
50 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, sum, output);
51 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, sum);
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +010052 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
Michalis Spyrou2897e612018-11-20 18:38:29 +000053 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis > 2, "Axis greater than 2 is not supported");
John Richardson62385bc2018-04-20 13:11:36 +010054 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis >= TensorShape::num_max_dimensions, "Reduction axis greater than max number of dimensions");
55
56 // Reduce shape on axis
57 TensorShape sum_shape = input->tensor_shape();
58 sum_shape.set(axis, 1);
59 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(sum->tensor_shape(), sum_shape);
60
61 if(output->total_size() != 0)
62 {
63 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +010064 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
John Richardson62385bc2018-04-20 13:11:36 +010065 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
66 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(input->tensor_shape(), output->tensor_shape());
John Richardson62385bc2018-04-20 13:11:36 +010067 }
68
69 return Status{};
70}
71
72std::tuple<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
73{
74 const unsigned int num_elems_processed_per_iteration = 16;
75
76 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
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000093void CLL2NormalizeLayerKernel::configure(const ICLTensor *input, const ICLTensor *sum, ICLTensor *output, unsigned int axis, float epsilon)
Michalis Spyrou04f089c2017-08-08 17:42:38 +010094{
John Richardson62385bc2018-04-20 13:11:36 +010095 ARM_COMPUTE_ERROR_ON_NULLPTR(input, sum, output);
96 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), sum->info(), output->info(), axis, epsilon));
Michalis Spyrou04f089c2017-08-08 17:42:38 +010097
98 _input = input;
99 _sum = sum;
100 _output = output;
101 _axis = axis;
102 _epsilon = epsilon;
103
104 const unsigned int num_elems_processed_per_iteration = 16;
105
106 // Set build options
107 std::set<std::string> build_opts;
108 build_opts.emplace(("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())));
109 build_opts.emplace(("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration)));
110
111 // Create kernel
Michalis Spyrou5538d342018-11-14 08:10:13 +0000112 std::string kernel_name;
113 unsigned int idx = 0;
114 switch(axis)
115 {
116 case 0:
117 kernel_name = "x";
118 idx = num_arguments_per_1D_tensor() * 3;
119 break;
120 case 1:
121 kernel_name = "y";
122 idx = num_arguments_per_2D_tensor() * 3;
123 break;
124 case 2:
125 kernel_name = "z";
126 idx = num_arguments_per_3D_tensor() * 3;
127 break;
128 default:
129 ARM_COMPUTE_ERROR("Not supported");
130 }
131 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("l2_normalize_" + kernel_name, build_opts));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100132
133 // Set epsilon argument
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100134 if(input->info()->data_type() == DataType::F32)
135 {
136 _kernel.setArg<cl_uint>(idx, _epsilon);
137 }
138 else
139 {
140 _kernel.setArg<cl_ushort>(idx, _epsilon);
141 }
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100142
143 // Configure kernel window
John Richardson62385bc2018-04-20 13:11:36 +0100144 auto win_config = validate_and_configure_window(_input->info(), _output->info());
145 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100146
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100147 ICLKernel::configure_internal(std::get<1>(win_config));
John Richardson62385bc2018-04-20 13:11:36 +0100148}
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100149
John Richardson62385bc2018-04-20 13:11:36 +0100150Status CLL2NormalizeLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *sum, const ITensorInfo *output, unsigned int axis, float epsilon)
151{
152 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, sum, output, axis, epsilon));
153 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 +0100154
John Richardson62385bc2018-04-20 13:11:36 +0100155 return Status{};
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100156}
157
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000158void CLL2NormalizeLayerKernel::run(const Window &window, cl::CommandQueue &queue)
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100159{
160 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
161 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
162
163 Window window_sum(window);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100164
Michalis Spyrou5538d342018-11-14 08:10:13 +0000165 switch(_axis)
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100166 {
Michalis Spyrou5538d342018-11-14 08:10:13 +0000167 case 0:
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100168 {
169 window_sum.set(Window::DimX, Window::Dimension(0, 0, 0));
170 Window in_slice = window.first_slice_window_1D();
171 Window sum_slice = window_sum.first_slice_window_1D();
172 do
173 {
174 unsigned int idx = 0;
175 add_1D_tensor_argument(idx, _input, in_slice);
176 add_1D_tensor_argument(idx, _sum, sum_slice);
177 add_1D_tensor_argument(idx, _output, in_slice);
178 enqueue(queue, *this, in_slice);
179 }
180 while(window.slide_window_slice_1D(in_slice) && window.slide_window_slice_1D(sum_slice));
181 }
182 break;
Michalis Spyrou5538d342018-11-14 08:10:13 +0000183 case 1:
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100184 {
185 window_sum.set(Window::DimY, Window::Dimension(0, 0, 0));
186 Window in_slice = window.first_slice_window_2D();
187 Window sum_slice = window_sum.first_slice_window_2D();
188 do
189 {
190 unsigned int idx = 0;
191 add_2D_tensor_argument(idx, _input, in_slice);
192 add_2D_tensor_argument(idx, _sum, sum_slice);
193 add_2D_tensor_argument(idx, _output, in_slice);
194 enqueue(queue, *this, in_slice);
195 }
196 while(window.slide_window_slice_2D(in_slice) && window.slide_window_slice_2D(sum_slice));
197 }
198 break;
Michalis Spyrou5538d342018-11-14 08:10:13 +0000199 case 2:
200 {
201 window_sum.set(Window::DimZ, Window::Dimension(0, 0, 0));
202 Window in_slice = window.first_slice_window_3D();
203 Window sum_slice = window_sum.first_slice_window_3D();
204 do
205 {
206 unsigned int idx = 0;
207 add_3D_tensor_argument(idx, _input, in_slice);
208 add_3D_tensor_argument(idx, _sum, sum_slice);
209 add_3D_tensor_argument(idx, _output, in_slice);
210 enqueue(queue, *this, in_slice);
211 }
212 while(window.slide_window_slice_3D(in_slice) && window.slide_window_slice_3D(sum_slice));
213 }
214 break;
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100215 default:
216 ARM_COMPUTE_ERROR("Not supported");
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100217 }
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100218}