blob: c4904ecbe1beceedd552f07b4f0e5919f7098766 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Diego Lopez Recas0021d752017-12-18 14:42:56 +00002 * Copyright (c) 2016-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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/CLArithmeticAdditionKernel.h"
25
26#include "arm_compute/core/CL/CLHelpers.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/CL/ICLTensor.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028
29using namespace arm_compute;
30
Giorgio Arena70623822017-11-27 15:50:10 +000031namespace
32{
Diego Lopez Recas0021d752017-12-18 14:42:56 +000033constexpr unsigned int num_elems_processed_per_iteration = 16;
34
35Status validate_arguments(const ITensorInfo &input1, const ITensorInfo &input2, const ITensorInfo &output, ConvertPolicy policy)
Giorgio Arena70623822017-11-27 15:50:10 +000036{
37 ARM_COMPUTE_UNUSED(policy);
Diego Lopez Recas0021d752017-12-18 14:42:56 +000038
39 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&input1, 1, DataType::U8, DataType::QS8, DataType::QS16, DataType::S16, DataType::F16, DataType::F32);
40 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&input2, 1, DataType::U8, DataType::QS8, DataType::QS16, DataType::S16, DataType::F16, DataType::F32);
41
42 const TensorShape out_shape = TensorShape::broadcast_shape(input1.tensor_shape(), input2.tensor_shape());
43
44 ARM_COMPUTE_RETURN_ERROR_ON_MSG(out_shape.total_size() == 0, "Inputs are not broadcast compatible");
45 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT(&input1, &input2);
Giorgio Arena70623822017-11-27 15:50:10 +000046
47 // Validate in case of configured output
Diego Lopez Recas0021d752017-12-18 14:42:56 +000048 if(output.total_size() > 0)
Giorgio Arena70623822017-11-27 15:50:10 +000049 {
Diego Lopez Recas0021d752017-12-18 14:42:56 +000050 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&output, 1, DataType::U8, DataType::QS8, DataType::QS16, DataType::S16, DataType::F16, DataType::F32);
51 ARM_COMPUTE_RETURN_ERROR_ON_MSG((output.data_type() == DataType::U8) && ((input1.data_type() != DataType::U8) || (input2.data_type() != DataType::U8)),
Giorgio Arena70623822017-11-27 15:50:10 +000052 "Output can only be U8 if both inputs are U8");
Diego Lopez Recas0021d752017-12-18 14:42:56 +000053 ARM_COMPUTE_RETURN_ERROR_ON_MSG(detail::have_different_dimensions(out_shape, output.tensor_shape(), 0),
54 "Wrong shape for output");
55 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT(&input1, &output);
Giorgio Arena70623822017-11-27 15:50:10 +000056 }
57
Georgios Pinitas631c41a2017-12-06 11:53:03 +000058 return Status{};
Giorgio Arena70623822017-11-27 15:50:10 +000059}
60
Diego Lopez Recas0021d752017-12-18 14:42:56 +000061std::pair<Status, Window> validate_and_configure_window(ITensorInfo &input1, ITensorInfo &input2, ITensorInfo &output)
Giorgio Arena70623822017-11-27 15:50:10 +000062{
Diego Lopez Recas0021d752017-12-18 14:42:56 +000063 const std::pair<TensorShape, ValidRegion> broadcast_pair = ITensorInfo::broadcast_shape_and_valid_region(input1, input2);
64 const TensorShape &out_shape = broadcast_pair.first;
65 const ValidRegion &valid_region = broadcast_pair.second;
Giorgio Arena70623822017-11-27 15:50:10 +000066
Diego Lopez Recas0021d752017-12-18 14:42:56 +000067 // Auto initialize output if not initialized
68 {
69 set_shape_if_empty(output, out_shape);
Giorgio Arena70623822017-11-27 15:50:10 +000070
Diego Lopez Recas0021d752017-12-18 14:42:56 +000071 if(input1.data_type() == DataType::S16 || input2.data_type() == DataType::S16)
72 {
73 set_format_if_unknown(output, Format::S16);
74 }
75 else if(input1.data_type() == DataType::F16 && input2.data_type() == DataType::F16)
76 {
77 set_format_if_unknown(output, Format::F16);
78 }
79 else if(input1.data_type() == DataType::F32 || input2.data_type() == DataType::F32)
80 {
81 set_format_if_unknown(output, Format::F32);
82 }
83 }
Giorgio Arena70623822017-11-27 15:50:10 +000084
Diego Lopez Recas0021d752017-12-18 14:42:56 +000085 Window win = calculate_max_window(valid_region, Steps(num_elems_processed_per_iteration));
86 Window win_input1 = win.broadcast_if_dimension_le_one(input1);
87 Window win_input2 = win.broadcast_if_dimension_le_one(input2);
Giorgio Arena70623822017-11-27 15:50:10 +000088
Diego Lopez Recas0021d752017-12-18 14:42:56 +000089 AccessWindowHorizontal input1_access(&input1, 0, num_elems_processed_per_iteration);
90 AccessWindowHorizontal input2_access(&input2, 0, num_elems_processed_per_iteration);
91 AccessWindowHorizontal output_access(&output, 0, num_elems_processed_per_iteration);
92
93 bool window_changed = update_window_and_padding(win_input1, input1_access)
94 || update_window_and_padding(win_input2, input2_access)
95 || update_window_and_padding(win, output_access);
Giorgio Arena70623822017-11-27 15:50:10 +000096
97 output_access.set_valid_region(win, valid_region);
98
Georgios Pinitas631c41a2017-12-06 11:53:03 +000099 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arena70623822017-11-27 15:50:10 +0000100 return std::make_pair(err, win);
101}
102} // namespace
103
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104CLArithmeticAdditionKernel::CLArithmeticAdditionKernel()
105 : _input1(nullptr), _input2(nullptr), _output(nullptr)
106{
107}
108
109void CLArithmeticAdditionKernel::configure(const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, ConvertPolicy policy)
110{
Georgios Pinitasf0dea702017-07-03 18:17:28 +0100111 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000112 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(*input1->info(), *input2->info(), *output->info(), policy));
Georgios Pinitasf0dea702017-07-03 18:17:28 +0100113
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000114 // Configure kernel window
115 auto win_config = validate_and_configure_window(*input1->info(), *input2->info(), *output->info());
116 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100117
118 _input1 = input1;
119 _input2 = input2;
120 _output = output;
121
122 const bool has_float_out = is_data_type_float(output->info()->data_type());
123
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100124 // Set kernel build options
125 std::set<std::string> build_opts;
126 build_opts.emplace((policy == ConvertPolicy::WRAP || has_float_out) ? "-DWRAP" : "-DSATURATE");
127 build_opts.emplace("-DDATA_TYPE_IN1=" + get_cl_type_from_data_type(input1->info()->data_type()));
128 build_opts.emplace("-DDATA_TYPE_IN2=" + get_cl_type_from_data_type(input2->info()->data_type()));
129 build_opts.emplace("-DDATA_TYPE_OUT=" + get_cl_type_from_data_type(output->info()->data_type()));
Michele Di Giorgio72818342017-07-13 11:03:35 +0100130 if(is_data_type_fixed_point(input1->info()->data_type()))
131 {
132 build_opts.emplace("-DFIXED_POINT_POSITION=" + support::cpp11::to_string(input1->info()->fixed_point_position()));
133 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100134
135 // Create kernel
136 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("arithmetic_add", build_opts));
137
Giorgio Arena70623822017-11-27 15:50:10 +0000138 ICLKernel::configure(win_config.second);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100139}
140
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000141Status CLArithmeticAdditionKernel::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, ConvertPolicy policy)
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000142{
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000143 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
144
145 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(*input1, *input2, *output, policy));
146 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(*input1->clone(), *input2->clone(), *output->clone()).first);
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000147
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000148 return Status{};
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000149}
150
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100151void CLArithmeticAdditionKernel::run(const Window &window, cl::CommandQueue &queue)
152{
153 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
154 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
155
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000156 const TensorShape &in_shape1 = _input1->info()->tensor_shape();
157 const TensorShape &in_shape2 = _input2->info()->tensor_shape();
158 const TensorShape &out_shape = _output->info()->tensor_shape();
159
160 bool can_collapse = true;
161 if(std::min(in_shape1.total_size(), in_shape2.total_size()) > 1)
162 {
163 can_collapse = (std::min(in_shape1.num_dimensions(), in_shape2.num_dimensions()) > Window::DimZ);
164 for(size_t d = Window::DimZ; can_collapse && (d < out_shape.num_dimensions()); d++)
165 {
166 can_collapse = (in_shape1[d] == in_shape2[d]);
167 }
168 }
169
170 bool has_collapsed = false;
171 Window collapsed = can_collapse ? window.collapse_if_possible(ICLKernel::window(), Window::DimZ, &has_collapsed) : window;
172
173 const TensorShape &in_shape1_collapsed = has_collapsed ? in_shape1.collapsed_from(Window::DimZ) : in_shape1;
174 const TensorShape &in_shape2_collapsed = has_collapsed ? in_shape2.collapsed_from(Window::DimZ) : in_shape2;
175
176 Window slice = collapsed.first_slice_window_3D();
177 Window slice_input1 = slice.broadcast_if_dimension_le_one(in_shape1_collapsed);
178 Window slice_input2 = slice.broadcast_if_dimension_le_one(in_shape2_collapsed);
Georgios Pinitas1d08a312018-01-03 12:29:22 +0000179
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100180 do
181 {
182 unsigned int idx = 0;
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000183
184 add_3D_tensor_argument(idx, _input1, slice_input1);
185 add_3D_tensor_argument(idx, _input2, slice_input2);
Georgios Pinitas1d08a312018-01-03 12:29:22 +0000186 add_3D_tensor_argument(idx, _output, slice);
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000187
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100188 enqueue(queue, *this, slice);
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000189
190 collapsed.slide_window_slice_3D(slice_input1);
191 collapsed.slide_window_slice_3D(slice_input2);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100192 }
Georgios Pinitas1d08a312018-01-03 12:29:22 +0000193 while(collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100194}
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000195
196BorderSize CLArithmeticAdditionKernel::border_size() const
197{
198 const unsigned int replicateSize = _output->info()->dimension(0) - std::min(_input1->info()->dimension(0), _input2->info()->dimension(0));
199 const unsigned int border = std::min<unsigned int>(num_elems_processed_per_iteration - 1U, replicateSize);
200 return BorderSize(0, border, 0, 0);
201}