blob: a9df36dfcc5ef4a439c543eb3d5fa520b9584975 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +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/CLPixelWiseMultiplicationKernel.h"
25
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010028#include "arm_compute/core/CL/CLValidate.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/CL/ICLTensor.h"
30#include "arm_compute/core/CL/OpenCL.h"
31#include "arm_compute/core/Error.h"
32#include "arm_compute/core/Helpers.h"
33#include "arm_compute/core/TensorInfo.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034#include "arm_compute/core/Window.h"
35
36#include <cmath>
37#include <cstdlib>
38#include <set>
39#include <string>
40
41using namespace arm_compute;
42
Giorgio Arena70623822017-11-27 15:50:10 +000043namespace
44{
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000045constexpr unsigned int num_elems_processed_per_iteration = 16;
46
Georgios Pinitas631c41a2017-12-06 11:53:03 +000047Status validate_arguments(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float scale,
48 ConvertPolicy overflow_policy, RoundingPolicy rounding_policy)
Giorgio Arena70623822017-11-27 15:50:10 +000049{
50 ARM_COMPUTE_UNUSED(overflow_policy);
51 ARM_COMPUTE_UNUSED(rounding_policy);
52
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010053 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input1);
Giorgio Arena70623822017-11-27 15:50:10 +000054 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 1, DataType::U8, DataType::QS8, DataType::QS16, DataType::S16, DataType::F16, DataType::F32);
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010055 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input2);
Giorgio Arena70623822017-11-27 15:50:10 +000056 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input2, 1, DataType::U8, DataType::QS8, DataType::QS16, DataType::S16, DataType::F16, DataType::F32);
Giorgio Arena70623822017-11-27 15:50:10 +000057 ARM_COMPUTE_RETURN_ERROR_ON_MSG(scale < 0, "Scale cannot be negative.");
58
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000059 const TensorShape &out_shape = TensorShape::broadcast_shape(input1->tensor_shape(), input2->tensor_shape());
60
61 ARM_COMPUTE_RETURN_ERROR_ON_MSG(out_shape.total_size() == 0, "Inputs are not broadcast compatible");
62 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT(input1, input2);
63
Giorgio Arena70623822017-11-27 15:50:10 +000064 if(is_data_type_fixed_point(input1->data_type()))
65 {
66 // All data types must be all QS8 or all QS16
67 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input1, input2);
68 ARM_COMPUTE_RETURN_ERROR_ON_MSG(scale != 1, "Unsupported scaling factor for QS8/QS16. Scale must be 1.");
69 }
70
71 // Validate in case of configured output
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000072 if(output->total_size() > 0)
Giorgio Arena70623822017-11-27 15:50:10 +000073 {
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010074 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(output);
Giorgio Arena70623822017-11-27 15:50:10 +000075 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::U8, DataType::QS8, DataType::QS16, DataType::S16, DataType::F16, DataType::F32);
76 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() == DataType::U8 && (input1->data_type() != DataType::U8 || input2->data_type() != DataType::U8),
77 "Output can only be U8 if both inputs are U8");
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000078 ARM_COMPUTE_RETURN_ERROR_ON_MSG(detail::have_different_dimensions(out_shape, output->tensor_shape(), 0), "Wrong shape for output");
Giorgio Arena70623822017-11-27 15:50:10 +000079 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT(input1, output);
80 if(is_data_type_fixed_point(input1->data_type()))
81 {
82 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input1, output);
83 }
84 }
85
Georgios Pinitas631c41a2017-12-06 11:53:03 +000086 return Status{};
Giorgio Arena70623822017-11-27 15:50:10 +000087}
88
Georgios Pinitas631c41a2017-12-06 11:53:03 +000089std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output)
Giorgio Arena70623822017-11-27 15:50:10 +000090{
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000091 const std::pair<TensorShape, ValidRegion> broadcast_pair = ITensorInfo::broadcast_shape_and_valid_region(*input1, *input2);
92 const TensorShape &out_shape = broadcast_pair.first;
93 const ValidRegion &valid_region = broadcast_pair.second;
Giorgio Arena70623822017-11-27 15:50:10 +000094
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000095 // Auto initialize output if not initialized
96 {
97 set_shape_if_empty(*output, out_shape);
98
99 if(input1->data_type() == DataType::S16 || input2->data_type() == DataType::S16)
100 {
101 set_format_if_unknown(*output, Format::S16);
102 }
103 else if(input1->data_type() == DataType::F32 || input2->data_type() == DataType::F32)
104 {
105 set_format_if_unknown(*output, Format::F32);
106 }
107 }
108
109 Window win = calculate_max_window(valid_region, Steps(num_elems_processed_per_iteration));
110 Window win_input1 = win.broadcast_if_dimension_le_one(*input1);
111 Window win_input2 = win.broadcast_if_dimension_le_one(*input2);
Giorgio Arena70623822017-11-27 15:50:10 +0000112
113 AccessWindowHorizontal input1_access(input1, 0, num_elems_processed_per_iteration);
114 AccessWindowHorizontal input2_access(input2, 0, num_elems_processed_per_iteration);
115 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
116
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000117 bool window_changed = update_window_and_padding(win_input1, input1_access)
118 || update_window_and_padding(win_input2, input2_access)
119 || update_window_and_padding(win, output_access);
Giorgio Arena70623822017-11-27 15:50:10 +0000120
Giorgio Arena70623822017-11-27 15:50:10 +0000121 output_access.set_valid_region(win, valid_region);
122
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000123 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arena70623822017-11-27 15:50:10 +0000124 return std::make_pair(err, win);
125}
126} // namespace
127
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100128CLPixelWiseMultiplicationKernel::CLPixelWiseMultiplicationKernel()
129 : _input1(nullptr), _input2(nullptr), _output(nullptr)
130{
131}
132
133void CLPixelWiseMultiplicationKernel::configure(const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, float scale,
134 ConvertPolicy overflow_policy, RoundingPolicy rounding_policy)
135{
Georgios Pinitasf0dea702017-07-03 18:17:28 +0100136 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000137 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input1->info(), input2->info(), output->info(),
138 scale, overflow_policy, rounding_policy));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100139
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000140 // Configure kernel window
141 auto win_config = validate_and_configure_window(input1->info(), input2->info(), output->info());
142 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
143
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100144 _input1 = input1;
145 _input2 = input2;
146 _output = output;
147
148 int scale_int = -1;
149 // Extract sign, exponent and mantissa
150 int exponent = 0;
151 float normalized_mantissa = std::frexp(scale, &exponent);
152 // Use int scaling if factor is equal to 1/2^n for 0 <= n <= 15
153 // frexp returns 0.5 as mantissa which means that the exponent will be in the range of -1 <= e <= 14
154 // Moreover, it will be negative as we deal with 1/2^n
155 if((normalized_mantissa == 0.5f) && (-14 <= exponent) && (exponent <= 1))
156 {
157 // Store the positive exponent. We know that we compute 1/2^n
158 // Additionally we need to subtract 1 to compensate that frexp used a mantissa of 0.5
159 scale_int = std::abs(exponent - 1);
160 }
161
162 std::string data_type;
163 std::string compute_type;
164 // Check if it has float inputs and output
165 if(is_data_type_float(input1->info()->data_type()) || is_data_type_float(input2->info()->data_type()))
166 {
167 scale_int = -1;
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +0100168 compute_type = (input1->info()->data_type() == DataType::F32 || input2->info()->data_type() == DataType::F32) ? "float" : "half";
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100169 data_type = "DATA_TYPE_FLOAT";
170 }
171 else
172 {
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +0100173 if(input1->info()->data_type() == DataType::S16 || input2->info()->data_type() == DataType::S16)
174 {
175 compute_type = "int";
176 }
177 else if(input1->info()->data_type() == DataType::QS8)
178 {
179 compute_type = "qs8";
180 }
181 else if(input1->info()->data_type() == DataType::QS16)
182 {
183 compute_type = "qs16";
184 }
185 else
186 {
187 compute_type = "ushort";
188 }
189 data_type = "DATA_TYPE_INT";
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100190 }
191
192 // Construct kernel name
193 std::string kernel_name = "pixelwise_mul";
194 kernel_name += (scale_int >= 0) ? "_int" : "_float";
195
196 // Set kernel build options
197 std::set<std::string> build_opts;
198 build_opts.emplace((overflow_policy == ConvertPolicy::WRAP || is_data_type_float(output->info()->data_type())) ? "-DWRAP" : "-DSATURATE");
199 build_opts.emplace((rounding_policy == RoundingPolicy::TO_ZERO) ? "-DROUND=_rtz" : "-DROUND=_rte");
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +0100200 if(is_data_type_fixed_point(input1->info()->data_type()))
201 {
202 build_opts.emplace("-DFIXED_POINT_POSITION=" + support::cpp11::to_string(input1->info()->fixed_point_position()));
203 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100204 build_opts.emplace("-DDATA_TYPE_IN1=" + get_cl_type_from_data_type(input1->info()->data_type()));
205 build_opts.emplace("-DDATA_TYPE_IN2=" + get_cl_type_from_data_type(input2->info()->data_type()));
206 build_opts.emplace("-DDATA_TYPE_OUT=" + get_cl_type_from_data_type(output->info()->data_type()));
207 build_opts.emplace("-DDATA_TYPE_RES=" + compute_type);
208 build_opts.emplace("-D" + data_type);
209
210 // Create kernel
211 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts));
212
213 // Set scale argument
Anthony Barbier9a7182e2017-07-11 18:36:40 +0100214 unsigned int idx = 3 * num_arguments_per_3D_tensor(); //Skip the inputs and output parameters
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100215
216 if(scale_int >= 0)
217 {
218 _kernel.setArg(idx++, scale_int);
219 }
220 else
221 {
222 _kernel.setArg(idx++, scale);
223 }
224
Giorgio Arena70623822017-11-27 15:50:10 +0000225 ICLKernel::configure(win_config.second);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100226}
227
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000228Status CLPixelWiseMultiplicationKernel::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float scale,
229 ConvertPolicy overflow_policy, RoundingPolicy rounding_policy)
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000230{
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000231 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
Giorgio Arena70623822017-11-27 15:50:10 +0000232 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input1, input2, output, scale, overflow_policy, rounding_policy));
233 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input1->clone().get(), input2->clone().get(), output->clone().get()).first);
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000234
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000235 return Status{};
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000236}
237
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100238void CLPixelWiseMultiplicationKernel::run(const Window &window, cl::CommandQueue &queue)
239{
240 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
241 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
242
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000243 const TensorShape &in_shape1 = _input1->info()->tensor_shape();
244 const TensorShape &in_shape2 = _input2->info()->tensor_shape();
245 const TensorShape &out_shape = _output->info()->tensor_shape();
246
247 bool can_collapse = true;
248 if(std::min(in_shape1.total_size(), in_shape2.total_size()) > 1)
249 {
250 can_collapse = (std::min(in_shape1.num_dimensions(), in_shape2.num_dimensions()) > Window::DimZ);
251 for(size_t d = Window::DimZ; can_collapse && (d < out_shape.num_dimensions()); ++d)
252 {
253 can_collapse = (in_shape1[d] == in_shape2[d]);
254 }
255 }
256
257 bool has_collapsed = false;
258 Window collapsed = can_collapse ? window.collapse_if_possible(ICLKernel::window(), Window::DimZ, &has_collapsed) : window;
259
260 const TensorShape &in_shape1_collapsed = has_collapsed ? in_shape1.collapsed_from(Window::DimZ) : in_shape1;
261 const TensorShape &in_shape2_collapsed = has_collapsed ? in_shape2.collapsed_from(Window::DimZ) : in_shape2;
262
263 Window slice = collapsed.first_slice_window_3D();
264 Window slice_input1 = slice.broadcast_if_dimension_le_one(in_shape1_collapsed);
265 Window slice_input2 = slice.broadcast_if_dimension_le_one(in_shape2_collapsed);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100266
267 do
268 {
269 unsigned int idx = 0;
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000270 add_3D_tensor_argument(idx, _input1, slice_input1);
271 add_3D_tensor_argument(idx, _input2, slice_input2);
Anthony Barbier9a7182e2017-07-11 18:36:40 +0100272 add_3D_tensor_argument(idx, _output, slice);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100273 enqueue(queue, *this, slice);
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000274
275 collapsed.slide_window_slice_3D(slice_input1);
276 collapsed.slide_window_slice_3D(slice_input2);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100277 }
Georgios Pinitas1d08a312018-01-03 12:29:22 +0000278 while(collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100279}
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000280
281BorderSize CLPixelWiseMultiplicationKernel::border_size() const
282{
283 const unsigned int replicateSize = _output->info()->dimension(0) - std::min(_input1->info()->dimension(0), _input2->info()->dimension(0));
284 const unsigned int border = std::min<unsigned int>(num_elems_processed_per_iteration - 1U, replicateSize);
285 return BorderSize(0, border, 0, 0);
286}