blob: 95967fa97482b554fed4b943478f5b7a424dfe34 [file] [log] [blame]
Michalis Spyrou04f089c2017-08-08 17:42:38 +01001/*
Michalis Spyrouf6402dd2018-01-26 15:06:19 +00002 * 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 */
24#include "arm_compute/core/CL/kernels/CLReductionOperationKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/CL/CLKernelLibrary.h"
29#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
38using namespace arm_compute;
39
John Richardson62385bc2018-04-20 13:11:36 +010040namespace
41{
42Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, unsigned int axis, ReductionOperation op)
43{
44 ARM_COMPUTE_UNUSED(op);
45
46 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Michalis Spyroud1794eb2018-06-15 16:15:26 +010047 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
John Richardson62385bc2018-04-20 13:11:36 +010048 ARM_COMPUTE_RETURN_ERROR_ON(input->data_layout() != DataLayout::NCHW);
49
50 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis >= TensorShape::num_max_dimensions, "Reduction axis greater than max number of dimensions");
51 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis > 0, "Unsupported reduction axis, Supported axis is 0");
52
53 if(output->total_size() != 0)
54 {
55 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
56 ARM_COMPUTE_RETURN_ERROR_ON(output->data_layout() != DataLayout::NCHW);
57 }
58
59 return Status{};
60}
61
62std::tuple<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, unsigned int axis)
63{
64 // Output tensor auto initialization if not yet initialized
65 TensorShape output_shape{ input->tensor_shape() };
66 output_shape.set(axis, 1);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010067 auto_init_if_empty(*output, output_shape, 1, input->data_type());
John Richardson62385bc2018-04-20 13:11:36 +010068
69 const unsigned int num_elems_processed_per_iteration = 16;
70
71 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
Michalis Spyroud1794eb2018-06-15 16:15:26 +010072 const unsigned int border_width = ((input->dimension(0) % num_elems_processed_per_iteration) != 0) ? num_elems_processed_per_iteration - input->dimension(0) % num_elems_processed_per_iteration : 0;
John Richardson62385bc2018-04-20 13:11:36 +010073
74 AccessWindowStatic input_access(input, 0, 0, input->dimension(0) + border_width, 1);
75 AccessWindowHorizontal output_access(output, 0, 1);
76
77 bool window_changed = update_window_and_padding(win, input_access, output_access);
78 output_access.set_valid_region(win, output->valid_region());
79
80 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
81
82 return std::make_tuple(err, win);
83}
84} // namespace
85
Michalis Spyrou04f089c2017-08-08 17:42:38 +010086CLReductionOperationKernel::CLReductionOperationKernel()
87 : _input(nullptr), _output(nullptr), _reduction_axis(0), _op(ReductionOperation::SUM_SQUARE), _border_size()
88{
89}
90
91BorderSize CLReductionOperationKernel::border_size() const
92{
93 return _border_size;
94}
95
96void CLReductionOperationKernel::configure(const ICLTensor *input, ICLTensor *output, unsigned int axis, ReductionOperation op)
97{
John Richardson62385bc2018-04-20 13:11:36 +010098 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Michalis Spyrou04f089c2017-08-08 17:42:38 +010099
John Richardson62385bc2018-04-20 13:11:36 +0100100 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), axis, op));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100101
102 const unsigned int num_elems_processed_per_iteration = 16;
Michalis Spyrou343722b2018-06-05 13:04:40 +0100103 const unsigned int border_width = ((input->info()->dimension(0) % 16) != 0) ? 16 - input->info()->dimension(0) % 16 : 0;
104 const unsigned int num_of_threads = ((input->info()->dimension(0) + border_width) / 16);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100105
106 _input = input;
107 _output = output;
108 _reduction_axis = axis;
109 _op = op;
Michalis Spyrou343722b2018-06-05 13:04:40 +0100110
111 // Set the number of WG based on the input size. If input width is < 128
112 // we can use fewer threads than 8.
113 _lws_hint = cl::NDRange(std::min(8U, num_of_threads));
114 _border_size = BorderSize(0, border_width, 0, 0);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100115
116 // Set build options
117 std::set<std::string> build_opts;
118 build_opts.emplace(("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())));
119 build_opts.emplace(("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration)));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100120
121 switch(op)
122 {
123 case ReductionOperation::SUM_SQUARE:
124 build_opts.emplace(("-DOPERATION=square_sum"));
125 break;
126 case ReductionOperation::SUM:
127 build_opts.emplace(("-DOPERATION=sum"));
128 break;
129 default:
130 ARM_COMPUTE_ERROR("Unsupported reduction operation");
131 }
132
133 // Create kernel
134 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("reduction_operation", build_opts));
135
136 // Configure kernel window
John Richardson62385bc2018-04-20 13:11:36 +0100137 auto win_config = validate_and_configure_window(_input->info(), _output->info(), axis);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100138
John Richardson62385bc2018-04-20 13:11:36 +0100139 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100140
John Richardson62385bc2018-04-20 13:11:36 +0100141 ICLKernel::configure(std::get<1>(win_config));
142}
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100143
John Richardson62385bc2018-04-20 13:11:36 +0100144Status CLReductionOperationKernel::validate(const ITensorInfo *input, const ITensorInfo *output, unsigned int axis, ReductionOperation op)
145{
146 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, axis, op));
147 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input->clone().get(), output->clone().get(), axis)));
148
149 return Status{};
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100150}
151
152void CLReductionOperationKernel::run(const Window &window, cl::CommandQueue &queue)
153{
154 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
155 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
156
157 // Set out window
158 Window out_window(window);
159 out_window.set(Window::DimX, Window::Dimension(0, 0, 0));
160
161 // Get first input and output slices
Michalis Spyrouf6402dd2018-01-26 15:06:19 +0000162 Window in_slice = window.first_slice_window_2D();
163 Window out_slice = out_window.first_slice_window_2D();
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100164
165 // Reshape window
Michalis Spyrou343722b2018-06-05 13:04:40 +0100166 const unsigned int border_width = ((in_slice.x().end() % 16) != 0) ? 16 - in_slice.x().end() % 16 : 0;
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100167 in_slice.set(Window::DimX, Window::Dimension(in_slice.x().start(), in_slice.x().end() + border_width, in_slice.x().step()));
168
169 // Set local sums buffer
Michalis Spyrouf8349fe2017-09-14 13:50:31 +0100170 unsigned int local_sum_size = _lws_hint[0] * _input->info()->element_size();
Michalis Spyrouf6402dd2018-01-26 15:06:19 +0000171 _kernel.setArg(num_arguments_per_2D_tensor() * 2, local_sum_size, nullptr);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100172
173 do
174 {
175 unsigned int idx = 0;
Michalis Spyrouf6402dd2018-01-26 15:06:19 +0000176 add_2D_tensor_argument(idx, _input, in_slice);
177 add_2D_tensor_argument(idx, _output, out_slice);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100178 enqueue(queue, *this, in_slice, _lws_hint);
179 }
Michalis Spyrouf6402dd2018-01-26 15:06:19 +0000180 while(window.slide_window_slice_2D(in_slice) && window.slide_window_slice_2D(out_slice));
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100181}