blob: 54ed51eda2ed4a87b0e733ee14d1c546ddd1a9eb [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);
52 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32);
53 ARM_COMPUTE_RETURN_ERROR_ON(input->data_layout() != DataLayout::NCHW);
54 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis > 0, "Unsupported reduction axis, Supported axis is 0");
55 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis >= TensorShape::num_max_dimensions, "Reduction axis greater than max number of dimensions");
56
57 // Reduce shape on axis
58 TensorShape sum_shape = input->tensor_shape();
59 sum_shape.set(axis, 1);
60 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(sum->tensor_shape(), sum_shape);
61
62 if(output->total_size() != 0)
63 {
64 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
65 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
66 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(input->tensor_shape(), output->tensor_shape());
67 ARM_COMPUTE_RETURN_ERROR_ON(output->data_layout() != DataLayout::NCHW);
68 }
69
70 return Status{};
71}
72
73std::tuple<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
74{
75 const unsigned int num_elems_processed_per_iteration = 16;
76
77 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
78
79 // Output tensor auto initialization if not yet initialized
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010080 auto_init_if_empty(*output, input->tensor_shape(), 1, input->data_type());
John Richardson62385bc2018-04-20 13:11:36 +010081
82 AccessWindowHorizontal input_access(input, 0, num_elems_processed_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 output_access.set_valid_region(win, input->valid_region());
87
88 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
89
90 return std::make_tuple(err, win);
91}
92} // namespace
93
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000094void CLL2NormalizeLayerKernel::configure(const ICLTensor *input, const ICLTensor *sum, ICLTensor *output, unsigned int axis, float epsilon)
Michalis Spyrou04f089c2017-08-08 17:42:38 +010095{
John Richardson62385bc2018-04-20 13:11:36 +010096 ARM_COMPUTE_ERROR_ON_NULLPTR(input, sum, output);
97 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), sum->info(), output->info(), axis, epsilon));
Michalis Spyrou04f089c2017-08-08 17:42:38 +010098
99 _input = input;
100 _sum = sum;
101 _output = output;
102 _axis = axis;
103 _epsilon = epsilon;
104
105 const unsigned int num_elems_processed_per_iteration = 16;
106
107 // Set build options
108 std::set<std::string> build_opts;
109 build_opts.emplace(("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())));
110 build_opts.emplace(("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration)));
111
112 // Create kernel
113 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("l2_normalize", build_opts));
114
115 // Set epsilon argument
116 unsigned int idx = num_arguments_per_1D_tensor() * 3;
117 _kernel.setArg<cl_uint>(idx, _epsilon);
118
119 // Configure kernel window
John Richardson62385bc2018-04-20 13:11:36 +0100120 auto win_config = validate_and_configure_window(_input->info(), _output->info());
121 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100122
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100123 ICLKernel::configure_internal(std::get<1>(win_config));
John Richardson62385bc2018-04-20 13:11:36 +0100124}
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100125
John Richardson62385bc2018-04-20 13:11:36 +0100126Status CLL2NormalizeLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *sum, const ITensorInfo *output, unsigned int axis, float epsilon)
127{
128 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, sum, output, axis, epsilon));
129 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 +0100130
John Richardson62385bc2018-04-20 13:11:36 +0100131 return Status{};
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100132}
133
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000134void CLL2NormalizeLayerKernel::run(const Window &window, cl::CommandQueue &queue)
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100135{
136 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
137 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
138
139 Window window_sum(window);
140 window_sum.set(Window::DimX, Window::Dimension(0, 0, 0));
141
142 Window in_slice = window.first_slice_window_1D();
143 Window sum_slice = window_sum.first_slice_window_1D();
144
145 do
146 {
147 unsigned int idx = 0;
148 add_1D_tensor_argument(idx, _input, in_slice);
149 add_1D_tensor_argument(idx, _sum, sum_slice);
150 add_1D_tensor_argument(idx, _output, in_slice);
151 enqueue(queue, *this, in_slice);
152 }
153 while(window.slide_window_slice_1D(in_slice) && window.slide_window_slice_1D(sum_slice));
154}