blob: 49f5e04433d3dbba0e92fd009b48230ff0edc366 [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"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031#include "arm_compute/core/TensorInfo.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000032#include "support/StringSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033
Georgios Pinitas8be91482019-03-26 17:23:28 +000034namespace arm_compute
35{
Giorgio Arena70623822017-11-27 15:50:10 +000036namespace
37{
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000038constexpr unsigned int num_elems_processed_per_iteration = 16;
39
Georgios Pinitas631c41a2017-12-06 11:53:03 +000040Status validate_arguments(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float scale,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000041 ConvertPolicy overflow_policy, RoundingPolicy rounding_policy, const ActivationLayerInfo &act_info)
Giorgio Arena70623822017-11-27 15:50:10 +000042{
43 ARM_COMPUTE_UNUSED(overflow_policy);
44 ARM_COMPUTE_UNUSED(rounding_policy);
45
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000046 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input1, input2, output);
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010047 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input1);
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000048 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1,
49 1,
50 DataType::U8, DataType::QASYMM8, DataType::QASYMM8_SIGNED,
51 DataType::S16, DataType::QSYMM16, DataType::F16,
52 DataType::F32);
53 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input2,
54 1,
55 DataType::U8, DataType::QASYMM8, DataType::QASYMM8_SIGNED,
56 DataType::S16, DataType::QSYMM16, DataType::F16,
57 DataType::F32);
Giorgio Arena70623822017-11-27 15:50:10 +000058 ARM_COMPUTE_RETURN_ERROR_ON_MSG(scale < 0, "Scale cannot be negative.");
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000059 ARM_COMPUTE_RETURN_ERROR_ON(act_info.enabled() && !is_data_type_float(output->data_type()));
Giorgio Arena70623822017-11-27 15:50:10 +000060
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000061 const TensorShape &out_shape = TensorShape::broadcast_shape(input1->tensor_shape(), input2->tensor_shape());
62
63 ARM_COMPUTE_RETURN_ERROR_ON_MSG(out_shape.total_size() == 0, "Inputs are not broadcast compatible");
Giorgio Arena70623822017-11-27 15:50:10 +000064
65 // Validate in case of configured output
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000066 if(output->total_size() > 0)
Giorgio Arena70623822017-11-27 15:50:10 +000067 {
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000068 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output,
69 1,
70 DataType::U8, DataType::QASYMM8, DataType::QASYMM8_SIGNED,
71 DataType::S16, DataType::QSYMM16, DataType::F16,
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +010072 DataType::S32, DataType::F32);
Giorgio Arena70623822017-11-27 15:50:10 +000073 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() == DataType::U8 && (input1->data_type() != DataType::U8 || input2->data_type() != DataType::U8),
74 "Output can only be U8 if both inputs are U8");
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +010075 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() == DataType::QASYMM8 && (input1->data_type() != DataType::QASYMM8 || input2->data_type() != DataType::QASYMM8),
76 "Output can only be QASYMM8 if both inputs are QASYMM8");
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000077 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() == DataType::QASYMM8_SIGNED && (input1->data_type() != DataType::QASYMM8_SIGNED || input2->data_type() != DataType::QASYMM8_SIGNED),
78 "Output can only be QASYMM8_SIGNED if both inputs are QASYMM8_SIGNED");
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +010079 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() == DataType::QSYMM16 && (input1->data_type() != DataType::QSYMM16 || input2->data_type() != DataType::QSYMM16),
80 "Output can only be QSYMM16 if both inputs are QSYMM16");
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +010081 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() == DataType::S32 && (input1->data_type() != DataType::QSYMM16 || input2->data_type() != DataType::QSYMM16),
82 "Output can only be S32 if both inputs are QSYMM16");
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000083 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 +000084 }
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 }
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100107 else if(input1->data_type() == DataType::QASYMM8)
108 {
109 set_data_type_if_unknown(*output, DataType::QASYMM8);
110 }
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000111 else if(input1->data_type() == DataType::QASYMM8_SIGNED)
112 {
113 set_data_type_if_unknown(*output, DataType::QASYMM8_SIGNED);
114 }
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100115 else if(input1->data_type() == DataType::QSYMM16)
116 {
117 set_data_type_if_unknown(*output, DataType::QSYMM16);
118 }
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000119 }
120
121 Window win = calculate_max_window(valid_region, Steps(num_elems_processed_per_iteration));
122 Window win_input1 = win.broadcast_if_dimension_le_one(*input1);
123 Window win_input2 = win.broadcast_if_dimension_le_one(*input2);
Giorgio Arena70623822017-11-27 15:50:10 +0000124
125 AccessWindowHorizontal input1_access(input1, 0, num_elems_processed_per_iteration);
126 AccessWindowHorizontal input2_access(input2, 0, num_elems_processed_per_iteration);
127 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
128
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000129 bool window_changed = update_window_and_padding(win_input1, input1_access)
130 || update_window_and_padding(win_input2, input2_access)
131 || update_window_and_padding(win, output_access);
Giorgio Arena70623822017-11-27 15:50:10 +0000132
Giorgio Arena70623822017-11-27 15:50:10 +0000133 output_access.set_valid_region(win, valid_region);
134
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000135 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arena70623822017-11-27 15:50:10 +0000136 return std::make_pair(err, win);
137}
138} // namespace
139
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100140CLPixelWiseMultiplicationKernel::CLPixelWiseMultiplicationKernel()
141 : _input1(nullptr), _input2(nullptr), _output(nullptr)
142{
143}
144
145void CLPixelWiseMultiplicationKernel::configure(const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, float scale,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000146 ConvertPolicy overflow_policy, RoundingPolicy rounding_policy, const ActivationLayerInfo &act_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100147{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100148 configure(CLKernelLibrary::get().get_compile_context(), input1, input2, output, scale, overflow_policy, rounding_policy, act_info);
149}
150
151void CLPixelWiseMultiplicationKernel::configure(CLCompileContext &compile_context, const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, float scale,
152 ConvertPolicy overflow_policy, RoundingPolicy rounding_policy, const ActivationLayerInfo &act_info)
153{
Georgios Pinitasf0dea702017-07-03 18:17:28 +0100154 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000155 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input1->info(), input2->info(), output->info(),
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000156 scale, overflow_policy, rounding_policy, act_info));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100157
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000158 // Configure kernel window
159 auto win_config = validate_and_configure_window(input1->info(), input2->info(), output->info());
160 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
161
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100162 _input1 = input1;
163 _input2 = input2;
164 _output = output;
165
166 int scale_int = -1;
167 // Extract sign, exponent and mantissa
168 int exponent = 0;
169 float normalized_mantissa = std::frexp(scale, &exponent);
170 // Use int scaling if factor is equal to 1/2^n for 0 <= n <= 15
171 // frexp returns 0.5 as mantissa which means that the exponent will be in the range of -1 <= e <= 14
172 // Moreover, it will be negative as we deal with 1/2^n
173 if((normalized_mantissa == 0.5f) && (-14 <= exponent) && (exponent <= 1))
174 {
175 // Store the positive exponent. We know that we compute 1/2^n
176 // Additionally we need to subtract 1 to compensate that frexp used a mantissa of 0.5
177 scale_int = std::abs(exponent - 1);
178 }
179
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100180 std::string acc_type;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100181 // Check if it has float inputs and output
182 if(is_data_type_float(input1->info()->data_type()) || is_data_type_float(input2->info()->data_type()))
183 {
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100184 scale_int = -1;
185 acc_type = (input1->info()->data_type() == DataType::F32 || input2->info()->data_type() == DataType::F32) ? "float" : "half";
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100186 }
187 else
188 {
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100189 if(input1->info()->element_size() == 2 || input2->info()->element_size() == 2)
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +0100190 {
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100191 // Use 32-bit accumulator for 16-bit input
192 acc_type = "int";
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +0100193 }
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +0100194 else
195 {
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100196 // Use 16-bit accumulator for 8-bit input
197 acc_type = "ushort";
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +0100198 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100199 }
200
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100201 const bool is_quantized = is_data_type_quantized(input1->info()->data_type());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100202
203 // Set kernel build options
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100204 std::string kernel_name = "pixelwise_mul";
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100205 CLBuildOptions build_opts;
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100206 build_opts.add_option("-DDATA_TYPE_IN1=" + get_cl_type_from_data_type(input1->info()->data_type()));
207 build_opts.add_option("-DDATA_TYPE_IN2=" + get_cl_type_from_data_type(input2->info()->data_type()));
208 build_opts.add_option("-DDATA_TYPE_OUT=" + get_cl_type_from_data_type(output->info()->data_type()));
209 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100210 if(is_quantized && (output->info()->data_type() != DataType::S32))
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100211 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100212 const UniformQuantizationInfo iq1_info = input1->info()->quantization_info().uniform();
213 const UniformQuantizationInfo iq2_info = input2->info()->quantization_info().uniform();
214 const UniformQuantizationInfo oq_info = output->info()->quantization_info().uniform();
215
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100216 build_opts.add_option_if(is_data_type_quantized_asymmetric(input1->info()->data_type()),
217 "-DOFFSET_IN1=" + support::cpp11::to_string(iq1_info.offset));
218 build_opts.add_option_if(is_data_type_quantized_asymmetric(input2->info()->data_type()),
219 "-DOFFSET_IN2=" + support::cpp11::to_string(iq2_info.offset));
220 build_opts.add_option_if(is_data_type_quantized_asymmetric(output->info()->data_type()),
221 "-DOFFSET_OUT=" + support::cpp11::to_string(oq_info.offset));
222 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq1_info.scale));
223 build_opts.add_option("-DSCALE_IN2=" + float_to_string_with_full_precision(iq2_info.scale));
224 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100225 kernel_name += "_quantized";
226 }
227 else
228 {
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100229 kernel_name += (scale_int >= 0) ? "_int" : "_float";
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100230 build_opts.add_option_if_else(overflow_policy == ConvertPolicy::WRAP || is_data_type_float(output->info()->data_type()), "-DWRAP", "-DSATURATE");
231 build_opts.add_option_if_else(rounding_policy == RoundingPolicy::TO_ZERO, "-DROUND=_rtz", "-DROUND=_rte");
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100232 build_opts.add_option("-DACC_DATA_TYPE=" + acc_type);
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000233 if(act_info.enabled())
234 {
235 build_opts.add_option("-DACTIVATION_TYPE=" + lower_string(string_from_activation_func(act_info.activation())));
236 build_opts.add_option("-DA_VAL=" + float_to_string_with_full_precision(act_info.a()));
237 build_opts.add_option("-DB_VAL=" + float_to_string_with_full_precision(act_info.b()));
238 }
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100239 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100240
241 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100242 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100243
244 // Set scale argument
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100245 unsigned int idx = 3 * num_arguments_per_3D_tensor(); // Skip the inputs and output parameters
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100246
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100247 if(scale_int >= 0 && !is_quantized)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100248 {
249 _kernel.setArg(idx++, scale_int);
250 }
251 else
252 {
253 _kernel.setArg(idx++, scale);
254 }
255
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100256 ICLKernel::configure_internal(win_config.second);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100257}
258
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000259Status CLPixelWiseMultiplicationKernel::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float scale,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000260 ConvertPolicy overflow_policy, RoundingPolicy rounding_policy, const ActivationLayerInfo &act_info)
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000261{
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000262 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000263 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input1, input2, output, scale, overflow_policy, rounding_policy, act_info));
Giorgio Arena70623822017-11-27 15:50:10 +0000264 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 +0000265
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000266 return Status{};
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000267}
268
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100269void CLPixelWiseMultiplicationKernel::run(const Window &window, cl::CommandQueue &queue)
270{
271 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
272 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
273
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000274 const TensorShape &in_shape1 = _input1->info()->tensor_shape();
275 const TensorShape &in_shape2 = _input2->info()->tensor_shape();
276 const TensorShape &out_shape = _output->info()->tensor_shape();
277
278 bool can_collapse = true;
279 if(std::min(in_shape1.total_size(), in_shape2.total_size()) > 1)
280 {
281 can_collapse = (std::min(in_shape1.num_dimensions(), in_shape2.num_dimensions()) > Window::DimZ);
282 for(size_t d = Window::DimZ; can_collapse && (d < out_shape.num_dimensions()); ++d)
283 {
284 can_collapse = (in_shape1[d] == in_shape2[d]);
285 }
286 }
287
288 bool has_collapsed = false;
289 Window collapsed = can_collapse ? window.collapse_if_possible(ICLKernel::window(), Window::DimZ, &has_collapsed) : window;
290
291 const TensorShape &in_shape1_collapsed = has_collapsed ? in_shape1.collapsed_from(Window::DimZ) : in_shape1;
292 const TensorShape &in_shape2_collapsed = has_collapsed ? in_shape2.collapsed_from(Window::DimZ) : in_shape2;
293
294 Window slice = collapsed.first_slice_window_3D();
295 Window slice_input1 = slice.broadcast_if_dimension_le_one(in_shape1_collapsed);
296 Window slice_input2 = slice.broadcast_if_dimension_le_one(in_shape2_collapsed);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100297
298 do
299 {
300 unsigned int idx = 0;
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000301 add_3D_tensor_argument(idx, _input1, slice_input1);
302 add_3D_tensor_argument(idx, _input2, slice_input2);
Anthony Barbier9a7182e2017-07-11 18:36:40 +0100303 add_3D_tensor_argument(idx, _output, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100304 enqueue(queue, *this, slice, lws_hint());
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000305
Michalis Spyrouebdde652019-07-08 11:52:46 +0100306 ARM_COMPUTE_UNUSED(collapsed.slide_window_slice_3D(slice_input1));
307 ARM_COMPUTE_UNUSED(collapsed.slide_window_slice_3D(slice_input2));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100308 }
Georgios Pinitas1d08a312018-01-03 12:29:22 +0000309 while(collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100310}
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000311
312BorderSize CLPixelWiseMultiplicationKernel::border_size() const
313{
314 const unsigned int replicateSize = _output->info()->dimension(0) - std::min(_input1->info()->dimension(0), _input2->info()->dimension(0));
315 const unsigned int border = std::min<unsigned int>(num_elems_processed_per_iteration - 1U, replicateSize);
Michalis Spyroua4f378d2019-04-26 14:54:54 +0100316 return BorderSize{ 0, border, 0, 0 };
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000317}
Georgios Pinitas8be91482019-03-26 17:23:28 +0000318
319namespace
320{
321constexpr unsigned int num_elems_processed_per_iteration_complex = 1;
322
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000323Status validate_arguments_complex(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, const ActivationLayerInfo &act_info)
Georgios Pinitas8be91482019-03-26 17:23:28 +0000324{
325 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 2, DataType::F32);
326 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input2, 2, DataType::F32);
327
328 const TensorShape &out_shape = TensorShape::broadcast_shape(input1->tensor_shape(), input2->tensor_shape());
329
330 ARM_COMPUTE_RETURN_ERROR_ON_MSG(out_shape.total_size() == 0, "Inputs are not broadcast compatible");
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000331 ARM_COMPUTE_RETURN_ERROR_ON(act_info.enabled() && !is_data_type_float(output->data_type()));
Georgios Pinitas8be91482019-03-26 17:23:28 +0000332
333 // Validate in case of configured output
334 if(output->total_size() > 0)
335 {
336 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 2, DataType::F32);
337 ARM_COMPUTE_RETURN_ERROR_ON_MSG(detail::have_different_dimensions(out_shape, output->tensor_shape(), 0), "Wrong shape for output");
338 }
339
340 return Status{};
341}
342
343std::pair<Status, Window> validate_and_configure_window_complex(ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output)
344{
345 const std::pair<TensorShape, ValidRegion> broadcast_pair = ITensorInfo::broadcast_shape_and_valid_region(*input1, *input2);
346 const TensorShape &out_shape = broadcast_pair.first;
347 const ValidRegion &valid_region = broadcast_pair.second;
348
349 // Auto initialize output if not initialized
350 const TensorInfo out_info(out_shape, input1->num_channels(), input1->data_type());
351 auto_init_if_empty(*output, out_info);
352
353 Window win = calculate_max_window(valid_region, Steps(num_elems_processed_per_iteration_complex));
354 Window win_input1 = win.broadcast_if_dimension_le_one(*input1);
355 Window win_input2 = win.broadcast_if_dimension_le_one(*input2);
356
357 AccessWindowHorizontal input1_access(input1, 0, num_elems_processed_per_iteration_complex);
358 AccessWindowHorizontal input2_access(input2, 0, num_elems_processed_per_iteration_complex);
359 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration_complex);
360
361 bool window_changed = update_window_and_padding(win_input1, input1_access)
362 || update_window_and_padding(win_input2, input2_access)
363 || update_window_and_padding(win, output_access);
364
365 output_access.set_valid_region(win, valid_region);
366
367 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
368 return std::make_pair(err, win);
369}
370} // namespace
371
372CLComplexPixelWiseMultiplicationKernel::CLComplexPixelWiseMultiplicationKernel()
373 : _input1(nullptr), _input2(nullptr), _output(nullptr)
374{
375}
376
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000377void CLComplexPixelWiseMultiplicationKernel::configure(const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, const ActivationLayerInfo &act_info)
Georgios Pinitas8be91482019-03-26 17:23:28 +0000378{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100379 configure(CLKernelLibrary::get().get_compile_context(), input1, input2, output, act_info);
380}
381
382void CLComplexPixelWiseMultiplicationKernel::configure(CLCompileContext &compile_context, const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, const ActivationLayerInfo &act_info)
383{
Georgios Pinitas8be91482019-03-26 17:23:28 +0000384 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000385 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_complex(input1->info(), input2->info(), output->info(), act_info));
Georgios Pinitas8be91482019-03-26 17:23:28 +0000386
387 // Configure kernel window
388 auto win_config = validate_and_configure_window_complex(input1->info(), input2->info(), output->info());
389 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
390
391 _input1 = input1;
392 _input2 = input2;
393 _output = output;
394
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000395 CLBuildOptions build_opts;
396 if(act_info.enabled())
397 {
398 build_opts.add_option("-DACTIVATION_TYPE=" + lower_string(string_from_activation_func(act_info.activation())));
399 build_opts.add_option("-DA_VAL=" + float_to_string_with_full_precision(act_info.a()));
400 build_opts.add_option("-DB_VAL=" + float_to_string_with_full_precision(act_info.b()));
401 }
402
Georgios Pinitas8be91482019-03-26 17:23:28 +0000403 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100404 _kernel = create_kernel(compile_context, "pixelwise_mul_complex", build_opts.options());
Georgios Pinitas8be91482019-03-26 17:23:28 +0000405
406 ICLKernel::configure_internal(win_config.second);
407}
408
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000409Status CLComplexPixelWiseMultiplicationKernel::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, const ActivationLayerInfo &act_info)
Georgios Pinitas8be91482019-03-26 17:23:28 +0000410{
411 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000412 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_complex(input1, input2, output, act_info));
Georgios Pinitas8be91482019-03-26 17:23:28 +0000413 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window_complex(input1->clone().get(), input2->clone().get(), output->clone().get()).first);
414
415 return Status{};
416}
417
418void CLComplexPixelWiseMultiplicationKernel::run(const Window &window, cl::CommandQueue &queue)
419{
420 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
421 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
422
423 const TensorShape &in_shape1 = _input1->info()->tensor_shape();
424 const TensorShape &in_shape2 = _input2->info()->tensor_shape();
425 const TensorShape &out_shape = _output->info()->tensor_shape();
426
427 bool can_collapse = true;
428 if(std::min(in_shape1.total_size(), in_shape2.total_size()) > 1)
429 {
430 can_collapse = (std::min(in_shape1.num_dimensions(), in_shape2.num_dimensions()) > Window::DimZ);
431 for(size_t d = Window::DimZ; can_collapse && (d < out_shape.num_dimensions()); ++d)
432 {
433 can_collapse = (in_shape1[d] == in_shape2[d]);
434 }
435 }
436
437 bool has_collapsed = false;
438 Window collapsed = can_collapse ? window.collapse_if_possible(ICLKernel::window(), Window::DimZ, &has_collapsed) : window;
439
440 const TensorShape &in_shape1_collapsed = has_collapsed ? in_shape1.collapsed_from(Window::DimZ) : in_shape1;
441 const TensorShape &in_shape2_collapsed = has_collapsed ? in_shape2.collapsed_from(Window::DimZ) : in_shape2;
442
443 Window slice = collapsed.first_slice_window_3D();
444 Window slice_input1 = slice.broadcast_if_dimension_le_one(in_shape1_collapsed);
445 Window slice_input2 = slice.broadcast_if_dimension_le_one(in_shape2_collapsed);
446
447 do
448 {
449 unsigned int idx = 0;
450 add_3D_tensor_argument(idx, _input1, slice_input1);
451 add_3D_tensor_argument(idx, _input2, slice_input2);
452 add_3D_tensor_argument(idx, _output, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100453 enqueue(queue, *this, slice, lws_hint());
Georgios Pinitas8be91482019-03-26 17:23:28 +0000454
Michalis Spyrouebdde652019-07-08 11:52:46 +0100455 ARM_COMPUTE_UNUSED(collapsed.slide_window_slice_3D(slice_input1));
456 ARM_COMPUTE_UNUSED(collapsed.slide_window_slice_3D(slice_input2));
Georgios Pinitas8be91482019-03-26 17:23:28 +0000457 }
458 while(collapsed.slide_window_slice_3D(slice));
459}
460
461BorderSize CLComplexPixelWiseMultiplicationKernel::border_size() const
462{
463 const unsigned int replicateSize = _output->info()->dimension(0) - std::min(_input1->info()->dimension(0), _input2->info()->dimension(0));
464 const unsigned int border = std::min<unsigned int>(num_elems_processed_per_iteration_complex - 1U, replicateSize);
Michalis Spyroua4f378d2019-04-26 14:54:54 +0100465 return BorderSize{ 0, border, 0, 0 };
Georgios Pinitas8be91482019-03-26 17:23:28 +0000466}
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100467} // namespace arm_compute