blob: 6bdb1242a64fd806f4883f1c388a6aaa86d74c85 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiocbbed282019-12-20 13:26:08 +00002 * Copyright (c) 2016-2020 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
Georgios Pinitas8be91482019-03-26 17:23:28 +000041namespace 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
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000053 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input1, input2, output);
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010054 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input1);
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000055 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1,
56 1,
57 DataType::U8, DataType::QASYMM8, DataType::QASYMM8_SIGNED,
58 DataType::S16, DataType::QSYMM16, DataType::F16,
59 DataType::F32);
60 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input2,
61 1,
62 DataType::U8, DataType::QASYMM8, DataType::QASYMM8_SIGNED,
63 DataType::S16, DataType::QSYMM16, DataType::F16,
64 DataType::F32);
Giorgio Arena70623822017-11-27 15:50:10 +000065 ARM_COMPUTE_RETURN_ERROR_ON_MSG(scale < 0, "Scale cannot be negative.");
66
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000067 const TensorShape &out_shape = TensorShape::broadcast_shape(input1->tensor_shape(), input2->tensor_shape());
68
69 ARM_COMPUTE_RETURN_ERROR_ON_MSG(out_shape.total_size() == 0, "Inputs are not broadcast compatible");
Giorgio Arena70623822017-11-27 15:50:10 +000070
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 {
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000074 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output,
75 1,
76 DataType::U8, DataType::QASYMM8, DataType::QASYMM8_SIGNED,
77 DataType::S16, DataType::QSYMM16, DataType::F16,
78 DataType::F32);
Giorgio Arena70623822017-11-27 15:50:10 +000079 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() == DataType::U8 && (input1->data_type() != DataType::U8 || input2->data_type() != DataType::U8),
80 "Output can only be U8 if both inputs are U8");
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +010081 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() == DataType::QASYMM8 && (input1->data_type() != DataType::QASYMM8 || input2->data_type() != DataType::QASYMM8),
82 "Output can only be QASYMM8 if both inputs are QASYMM8");
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000083 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() == DataType::QASYMM8_SIGNED && (input1->data_type() != DataType::QASYMM8_SIGNED || input2->data_type() != DataType::QASYMM8_SIGNED),
84 "Output can only be QASYMM8_SIGNED if both inputs are QASYMM8_SIGNED");
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +010085 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() == DataType::QSYMM16 && (input1->data_type() != DataType::QSYMM16 || input2->data_type() != DataType::QSYMM16),
86 "Output can only be QSYMM16 if both inputs are QSYMM16");
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000087 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 +000088 }
89
Georgios Pinitas631c41a2017-12-06 11:53:03 +000090 return Status{};
Giorgio Arena70623822017-11-27 15:50:10 +000091}
92
Georgios Pinitas631c41a2017-12-06 11:53:03 +000093std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output)
Giorgio Arena70623822017-11-27 15:50:10 +000094{
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000095 const std::pair<TensorShape, ValidRegion> broadcast_pair = ITensorInfo::broadcast_shape_and_valid_region(*input1, *input2);
96 const TensorShape &out_shape = broadcast_pair.first;
97 const ValidRegion &valid_region = broadcast_pair.second;
Giorgio Arena70623822017-11-27 15:50:10 +000098
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000099 // Auto initialize output if not initialized
100 {
101 set_shape_if_empty(*output, out_shape);
102
103 if(input1->data_type() == DataType::S16 || input2->data_type() == DataType::S16)
104 {
105 set_format_if_unknown(*output, Format::S16);
106 }
107 else if(input1->data_type() == DataType::F32 || input2->data_type() == DataType::F32)
108 {
109 set_format_if_unknown(*output, Format::F32);
110 }
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100111 else if(input1->data_type() == DataType::QASYMM8)
112 {
113 set_data_type_if_unknown(*output, DataType::QASYMM8);
114 }
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000115 else if(input1->data_type() == DataType::QASYMM8_SIGNED)
116 {
117 set_data_type_if_unknown(*output, DataType::QASYMM8_SIGNED);
118 }
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100119 else if(input1->data_type() == DataType::QSYMM16)
120 {
121 set_data_type_if_unknown(*output, DataType::QSYMM16);
122 }
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000123 }
124
125 Window win = calculate_max_window(valid_region, Steps(num_elems_processed_per_iteration));
126 Window win_input1 = win.broadcast_if_dimension_le_one(*input1);
127 Window win_input2 = win.broadcast_if_dimension_le_one(*input2);
Giorgio Arena70623822017-11-27 15:50:10 +0000128
129 AccessWindowHorizontal input1_access(input1, 0, num_elems_processed_per_iteration);
130 AccessWindowHorizontal input2_access(input2, 0, num_elems_processed_per_iteration);
131 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
132
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000133 bool window_changed = update_window_and_padding(win_input1, input1_access)
134 || update_window_and_padding(win_input2, input2_access)
135 || update_window_and_padding(win, output_access);
Giorgio Arena70623822017-11-27 15:50:10 +0000136
Giorgio Arena70623822017-11-27 15:50:10 +0000137 output_access.set_valid_region(win, valid_region);
138
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000139 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arena70623822017-11-27 15:50:10 +0000140 return std::make_pair(err, win);
141}
142} // namespace
143
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100144CLPixelWiseMultiplicationKernel::CLPixelWiseMultiplicationKernel()
145 : _input1(nullptr), _input2(nullptr), _output(nullptr)
146{
147}
148
149void CLPixelWiseMultiplicationKernel::configure(const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, float scale,
150 ConvertPolicy overflow_policy, RoundingPolicy rounding_policy)
151{
Georgios Pinitasf0dea702017-07-03 18:17:28 +0100152 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000153 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input1->info(), input2->info(), output->info(),
154 scale, overflow_policy, rounding_policy));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100155
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000156 // Configure kernel window
157 auto win_config = validate_and_configure_window(input1->info(), input2->info(), output->info());
158 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
159
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100160 _input1 = input1;
161 _input2 = input2;
162 _output = output;
163
164 int scale_int = -1;
165 // Extract sign, exponent and mantissa
166 int exponent = 0;
167 float normalized_mantissa = std::frexp(scale, &exponent);
168 // Use int scaling if factor is equal to 1/2^n for 0 <= n <= 15
169 // frexp returns 0.5 as mantissa which means that the exponent will be in the range of -1 <= e <= 14
170 // Moreover, it will be negative as we deal with 1/2^n
171 if((normalized_mantissa == 0.5f) && (-14 <= exponent) && (exponent <= 1))
172 {
173 // Store the positive exponent. We know that we compute 1/2^n
174 // Additionally we need to subtract 1 to compensate that frexp used a mantissa of 0.5
175 scale_int = std::abs(exponent - 1);
176 }
177
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100178 std::string compute_type;
179 // Check if it has float inputs and output
180 if(is_data_type_float(input1->info()->data_type()) || is_data_type_float(input2->info()->data_type()))
181 {
182 scale_int = -1;
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +0100183 compute_type = (input1->info()->data_type() == DataType::F32 || input2->info()->data_type() == DataType::F32) ? "float" : "half";
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100184 }
185 else
186 {
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +0100187 if(input1->info()->data_type() == DataType::S16 || input2->info()->data_type() == DataType::S16)
188 {
189 compute_type = "int";
190 }
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +0100191 else
192 {
193 compute_type = "ushort";
194 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100195 }
196
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100197 const bool is_quantized = is_data_type_quantized(input1->info()->data_type());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100198
199 // Set kernel build options
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100200 std::string kernel_name = "pixelwise_mul";
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100201 CLBuildOptions build_opts;
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100202 build_opts.add_option("-DDATA_TYPE_IN1=" + get_cl_type_from_data_type(input1->info()->data_type()));
203 build_opts.add_option("-DDATA_TYPE_IN2=" + get_cl_type_from_data_type(input2->info()->data_type()));
204 build_opts.add_option("-DDATA_TYPE_OUT=" + get_cl_type_from_data_type(output->info()->data_type()));
205 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100206 if(is_quantized)
207 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100208 const UniformQuantizationInfo iq1_info = input1->info()->quantization_info().uniform();
209 const UniformQuantizationInfo iq2_info = input2->info()->quantization_info().uniform();
210 const UniformQuantizationInfo oq_info = output->info()->quantization_info().uniform();
211
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100212 build_opts.add_option_if(is_data_type_quantized_asymmetric(input1->info()->data_type()),
213 "-DOFFSET_IN1=" + support::cpp11::to_string(iq1_info.offset));
214 build_opts.add_option_if(is_data_type_quantized_asymmetric(input2->info()->data_type()),
215 "-DOFFSET_IN2=" + support::cpp11::to_string(iq2_info.offset));
216 build_opts.add_option_if(is_data_type_quantized_asymmetric(output->info()->data_type()),
217 "-DOFFSET_OUT=" + support::cpp11::to_string(oq_info.offset));
218 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq1_info.scale));
219 build_opts.add_option("-DSCALE_IN2=" + float_to_string_with_full_precision(iq2_info.scale));
220 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100221 kernel_name += "_quantized";
222 }
223 else
224 {
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100225 kernel_name += (scale_int >= 0) ? "_int" : "_float";
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100226 build_opts.add_option_if_else(overflow_policy == ConvertPolicy::WRAP || is_data_type_float(output->info()->data_type()), "-DWRAP", "-DSATURATE");
227 build_opts.add_option_if_else(rounding_policy == RoundingPolicy::TO_ZERO, "-DROUND=_rtz", "-DROUND=_rte");
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100228 build_opts.add_option("-DDATA_TYPE_RES=" + compute_type);
229 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100230
231 // Create kernel
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100232 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100233
234 // Set scale argument
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100235 unsigned int idx = 3 * num_arguments_per_3D_tensor(); // Skip the inputs and output parameters
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100236
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100237 if(scale_int >= 0 && !is_quantized)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100238 {
239 _kernel.setArg(idx++, scale_int);
240 }
241 else
242 {
243 _kernel.setArg(idx++, scale);
244 }
245
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100246 ICLKernel::configure_internal(win_config.second);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100247}
248
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000249Status CLPixelWiseMultiplicationKernel::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float scale,
250 ConvertPolicy overflow_policy, RoundingPolicy rounding_policy)
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000251{
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000252 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
Giorgio Arena70623822017-11-27 15:50:10 +0000253 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input1, input2, output, scale, overflow_policy, rounding_policy));
254 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 +0000255
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000256 return Status{};
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000257}
258
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100259void CLPixelWiseMultiplicationKernel::run(const Window &window, cl::CommandQueue &queue)
260{
261 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
262 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
263
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000264 const TensorShape &in_shape1 = _input1->info()->tensor_shape();
265 const TensorShape &in_shape2 = _input2->info()->tensor_shape();
266 const TensorShape &out_shape = _output->info()->tensor_shape();
267
268 bool can_collapse = true;
269 if(std::min(in_shape1.total_size(), in_shape2.total_size()) > 1)
270 {
271 can_collapse = (std::min(in_shape1.num_dimensions(), in_shape2.num_dimensions()) > Window::DimZ);
272 for(size_t d = Window::DimZ; can_collapse && (d < out_shape.num_dimensions()); ++d)
273 {
274 can_collapse = (in_shape1[d] == in_shape2[d]);
275 }
276 }
277
278 bool has_collapsed = false;
279 Window collapsed = can_collapse ? window.collapse_if_possible(ICLKernel::window(), Window::DimZ, &has_collapsed) : window;
280
281 const TensorShape &in_shape1_collapsed = has_collapsed ? in_shape1.collapsed_from(Window::DimZ) : in_shape1;
282 const TensorShape &in_shape2_collapsed = has_collapsed ? in_shape2.collapsed_from(Window::DimZ) : in_shape2;
283
284 Window slice = collapsed.first_slice_window_3D();
285 Window slice_input1 = slice.broadcast_if_dimension_le_one(in_shape1_collapsed);
286 Window slice_input2 = slice.broadcast_if_dimension_le_one(in_shape2_collapsed);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100287
288 do
289 {
290 unsigned int idx = 0;
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000291 add_3D_tensor_argument(idx, _input1, slice_input1);
292 add_3D_tensor_argument(idx, _input2, slice_input2);
Anthony Barbier9a7182e2017-07-11 18:36:40 +0100293 add_3D_tensor_argument(idx, _output, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100294 enqueue(queue, *this, slice, lws_hint());
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000295
Michalis Spyrouebdde652019-07-08 11:52:46 +0100296 ARM_COMPUTE_UNUSED(collapsed.slide_window_slice_3D(slice_input1));
297 ARM_COMPUTE_UNUSED(collapsed.slide_window_slice_3D(slice_input2));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100298 }
Georgios Pinitas1d08a312018-01-03 12:29:22 +0000299 while(collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100300}
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000301
302BorderSize CLPixelWiseMultiplicationKernel::border_size() const
303{
304 const unsigned int replicateSize = _output->info()->dimension(0) - std::min(_input1->info()->dimension(0), _input2->info()->dimension(0));
305 const unsigned int border = std::min<unsigned int>(num_elems_processed_per_iteration - 1U, replicateSize);
Michalis Spyroua4f378d2019-04-26 14:54:54 +0100306 return BorderSize{ 0, border, 0, 0 };
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000307}
Georgios Pinitas8be91482019-03-26 17:23:28 +0000308
309namespace
310{
311constexpr unsigned int num_elems_processed_per_iteration_complex = 1;
312
313Status validate_arguments_complex(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output)
314{
315 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 2, DataType::F32);
316 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input2, 2, DataType::F32);
317
318 const TensorShape &out_shape = TensorShape::broadcast_shape(input1->tensor_shape(), input2->tensor_shape());
319
320 ARM_COMPUTE_RETURN_ERROR_ON_MSG(out_shape.total_size() == 0, "Inputs are not broadcast compatible");
321
322 // Validate in case of configured output
323 if(output->total_size() > 0)
324 {
325 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 2, DataType::F32);
326 ARM_COMPUTE_RETURN_ERROR_ON_MSG(detail::have_different_dimensions(out_shape, output->tensor_shape(), 0), "Wrong shape for output");
327 }
328
329 return Status{};
330}
331
332std::pair<Status, Window> validate_and_configure_window_complex(ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output)
333{
334 const std::pair<TensorShape, ValidRegion> broadcast_pair = ITensorInfo::broadcast_shape_and_valid_region(*input1, *input2);
335 const TensorShape &out_shape = broadcast_pair.first;
336 const ValidRegion &valid_region = broadcast_pair.second;
337
338 // Auto initialize output if not initialized
339 const TensorInfo out_info(out_shape, input1->num_channels(), input1->data_type());
340 auto_init_if_empty(*output, out_info);
341
342 Window win = calculate_max_window(valid_region, Steps(num_elems_processed_per_iteration_complex));
343 Window win_input1 = win.broadcast_if_dimension_le_one(*input1);
344 Window win_input2 = win.broadcast_if_dimension_le_one(*input2);
345
346 AccessWindowHorizontal input1_access(input1, 0, num_elems_processed_per_iteration_complex);
347 AccessWindowHorizontal input2_access(input2, 0, num_elems_processed_per_iteration_complex);
348 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration_complex);
349
350 bool window_changed = update_window_and_padding(win_input1, input1_access)
351 || update_window_and_padding(win_input2, input2_access)
352 || update_window_and_padding(win, output_access);
353
354 output_access.set_valid_region(win, valid_region);
355
356 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
357 return std::make_pair(err, win);
358}
359} // namespace
360
361CLComplexPixelWiseMultiplicationKernel::CLComplexPixelWiseMultiplicationKernel()
362 : _input1(nullptr), _input2(nullptr), _output(nullptr)
363{
364}
365
366void CLComplexPixelWiseMultiplicationKernel::configure(const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output)
367{
368 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
369 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_complex(input1->info(), input2->info(), output->info()));
370
371 // Configure kernel window
372 auto win_config = validate_and_configure_window_complex(input1->info(), input2->info(), output->info());
373 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
374
375 _input1 = input1;
376 _input2 = input2;
377 _output = output;
378
379 // Create kernel
380 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("pixelwise_mul_complex"));
381
382 ICLKernel::configure_internal(win_config.second);
383}
384
385Status CLComplexPixelWiseMultiplicationKernel::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output)
386{
387 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
388 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_complex(input1, input2, output));
389 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window_complex(input1->clone().get(), input2->clone().get(), output->clone().get()).first);
390
391 return Status{};
392}
393
394void CLComplexPixelWiseMultiplicationKernel::run(const Window &window, cl::CommandQueue &queue)
395{
396 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
397 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
398
399 const TensorShape &in_shape1 = _input1->info()->tensor_shape();
400 const TensorShape &in_shape2 = _input2->info()->tensor_shape();
401 const TensorShape &out_shape = _output->info()->tensor_shape();
402
403 bool can_collapse = true;
404 if(std::min(in_shape1.total_size(), in_shape2.total_size()) > 1)
405 {
406 can_collapse = (std::min(in_shape1.num_dimensions(), in_shape2.num_dimensions()) > Window::DimZ);
407 for(size_t d = Window::DimZ; can_collapse && (d < out_shape.num_dimensions()); ++d)
408 {
409 can_collapse = (in_shape1[d] == in_shape2[d]);
410 }
411 }
412
413 bool has_collapsed = false;
414 Window collapsed = can_collapse ? window.collapse_if_possible(ICLKernel::window(), Window::DimZ, &has_collapsed) : window;
415
416 const TensorShape &in_shape1_collapsed = has_collapsed ? in_shape1.collapsed_from(Window::DimZ) : in_shape1;
417 const TensorShape &in_shape2_collapsed = has_collapsed ? in_shape2.collapsed_from(Window::DimZ) : in_shape2;
418
419 Window slice = collapsed.first_slice_window_3D();
420 Window slice_input1 = slice.broadcast_if_dimension_le_one(in_shape1_collapsed);
421 Window slice_input2 = slice.broadcast_if_dimension_le_one(in_shape2_collapsed);
422
423 do
424 {
425 unsigned int idx = 0;
426 add_3D_tensor_argument(idx, _input1, slice_input1);
427 add_3D_tensor_argument(idx, _input2, slice_input2);
428 add_3D_tensor_argument(idx, _output, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100429 enqueue(queue, *this, slice, lws_hint());
Georgios Pinitas8be91482019-03-26 17:23:28 +0000430
Michalis Spyrouebdde652019-07-08 11:52:46 +0100431 ARM_COMPUTE_UNUSED(collapsed.slide_window_slice_3D(slice_input1));
432 ARM_COMPUTE_UNUSED(collapsed.slide_window_slice_3D(slice_input2));
Georgios Pinitas8be91482019-03-26 17:23:28 +0000433 }
434 while(collapsed.slide_window_slice_3D(slice));
435}
436
437BorderSize CLComplexPixelWiseMultiplicationKernel::border_size() const
438{
439 const unsigned int replicateSize = _output->info()->dimension(0) - std::min(_input1->info()->dimension(0), _input2->info()->dimension(0));
440 const unsigned int border = std::min<unsigned int>(num_elems_processed_per_iteration_complex - 1U, replicateSize);
Michalis Spyroua4f378d2019-04-26 14:54:54 +0100441 return BorderSize{ 0, border, 0, 0 };
Georgios Pinitas8be91482019-03-26 17:23:28 +0000442}
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100443} // namespace arm_compute