blob: c68c526ec980e37ffed5a6f1a5943eadf15f69b8 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * 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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/CL/kernels/CLPixelWiseMultiplicationKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/CL/OpenCL.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/TensorInfo.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010031#include "src/core/CL/CLValidate.h"
32#include "src/core/helpers/AutoConfiguration.h"
33#include "src/core/helpers/WindowHelpers.h"
34#include "support/Cast.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000035#include "support/StringSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036
Georgios Pinitas8be91482019-03-26 17:23:28 +000037namespace arm_compute
38{
Giorgio Arena70623822017-11-27 15:50:10 +000039namespace
40{
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000041constexpr unsigned int num_elems_processed_per_iteration = 16;
42
Georgios Pinitas631c41a2017-12-06 11:53:03 +000043Status validate_arguments(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float scale,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000044 ConvertPolicy overflow_policy, RoundingPolicy rounding_policy, const ActivationLayerInfo &act_info)
Giorgio Arena70623822017-11-27 15:50:10 +000045{
46 ARM_COMPUTE_UNUSED(overflow_policy);
47 ARM_COMPUTE_UNUSED(rounding_policy);
48
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000049 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input1, input2, output);
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010050 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input1);
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000051 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1,
52 1,
53 DataType::U8, DataType::QASYMM8, DataType::QASYMM8_SIGNED,
54 DataType::S16, DataType::QSYMM16, DataType::F16,
55 DataType::F32);
56 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input2,
57 1,
58 DataType::U8, DataType::QASYMM8, DataType::QASYMM8_SIGNED,
59 DataType::S16, DataType::QSYMM16, DataType::F16,
60 DataType::F32);
Giorgio Arena70623822017-11-27 15:50:10 +000061 ARM_COMPUTE_RETURN_ERROR_ON_MSG(scale < 0, "Scale cannot be negative.");
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000062 ARM_COMPUTE_RETURN_ERROR_ON(act_info.enabled() && !is_data_type_float(output->data_type()));
Giorgio Arena70623822017-11-27 15:50:10 +000063
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000064 const TensorShape &out_shape = TensorShape::broadcast_shape(input1->tensor_shape(), input2->tensor_shape());
65
66 ARM_COMPUTE_RETURN_ERROR_ON_MSG(out_shape.total_size() == 0, "Inputs are not broadcast compatible");
Giorgio Arena70623822017-11-27 15:50:10 +000067
68 // Validate in case of configured output
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000069 if(output->total_size() > 0)
Giorgio Arena70623822017-11-27 15:50:10 +000070 {
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000071 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output,
72 1,
73 DataType::U8, DataType::QASYMM8, DataType::QASYMM8_SIGNED,
74 DataType::S16, DataType::QSYMM16, DataType::F16,
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +010075 DataType::S32, DataType::F32);
Giorgio Arena70623822017-11-27 15:50:10 +000076 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 Giorgiod8a468f2019-06-19 15:34:41 +010078 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() == DataType::QASYMM8 && (input1->data_type() != DataType::QASYMM8 || input2->data_type() != DataType::QASYMM8),
79 "Output can only be QASYMM8 if both inputs are QASYMM8");
Michele Di Giorgiocbbed282019-12-20 13:26:08 +000080 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() == DataType::QASYMM8_SIGNED && (input1->data_type() != DataType::QASYMM8_SIGNED || input2->data_type() != DataType::QASYMM8_SIGNED),
81 "Output can only be QASYMM8_SIGNED if both inputs are QASYMM8_SIGNED");
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +010082 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() == DataType::QSYMM16 && (input1->data_type() != DataType::QSYMM16 || input2->data_type() != DataType::QSYMM16),
83 "Output can only be QSYMM16 if both inputs are QSYMM16");
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +010084 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() == DataType::S32 && (input1->data_type() != DataType::QSYMM16 || input2->data_type() != DataType::QSYMM16),
85 "Output can only be S32 if both inputs are QSYMM16");
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000086 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 +000087 }
88
Georgios Pinitas631c41a2017-12-06 11:53:03 +000089 return Status{};
Giorgio Arena70623822017-11-27 15:50:10 +000090}
91
Georgios Pinitas631c41a2017-12-06 11:53:03 +000092std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output)
Giorgio Arena70623822017-11-27 15:50:10 +000093{
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000094 const std::pair<TensorShape, ValidRegion> broadcast_pair = ITensorInfo::broadcast_shape_and_valid_region(*input1, *input2);
95 const TensorShape &out_shape = broadcast_pair.first;
96 const ValidRegion &valid_region = broadcast_pair.second;
Giorgio Arena70623822017-11-27 15:50:10 +000097
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000098 // Auto initialize output if not initialized
99 {
100 set_shape_if_empty(*output, out_shape);
101
102 if(input1->data_type() == DataType::S16 || input2->data_type() == DataType::S16)
103 {
104 set_format_if_unknown(*output, Format::S16);
105 }
106 else if(input1->data_type() == DataType::F32 || input2->data_type() == DataType::F32)
107 {
108 set_format_if_unknown(*output, Format::F32);
109 }
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100110 else if(input1->data_type() == DataType::QASYMM8)
111 {
112 set_data_type_if_unknown(*output, DataType::QASYMM8);
113 }
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000114 else if(input1->data_type() == DataType::QASYMM8_SIGNED)
115 {
116 set_data_type_if_unknown(*output, DataType::QASYMM8_SIGNED);
117 }
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100118 else if(input1->data_type() == DataType::QSYMM16)
119 {
120 set_data_type_if_unknown(*output, DataType::QSYMM16);
121 }
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000122 }
123
124 Window win = calculate_max_window(valid_region, Steps(num_elems_processed_per_iteration));
125 Window win_input1 = win.broadcast_if_dimension_le_one(*input1);
126 Window win_input2 = win.broadcast_if_dimension_le_one(*input2);
Giorgio Arena70623822017-11-27 15:50:10 +0000127
128 AccessWindowHorizontal input1_access(input1, 0, num_elems_processed_per_iteration);
129 AccessWindowHorizontal input2_access(input2, 0, num_elems_processed_per_iteration);
130 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
131
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000132 bool window_changed = update_window_and_padding(win_input1, input1_access)
133 || update_window_and_padding(win_input2, input2_access)
134 || update_window_and_padding(win, output_access);
Giorgio Arena70623822017-11-27 15:50:10 +0000135
Giorgio Arena70623822017-11-27 15:50:10 +0000136 output_access.set_valid_region(win, valid_region);
137
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000138 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arena70623822017-11-27 15:50:10 +0000139 return std::make_pair(err, win);
140}
141} // namespace
142
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100143CLPixelWiseMultiplicationKernel::CLPixelWiseMultiplicationKernel()
144 : _input1(nullptr), _input2(nullptr), _output(nullptr)
145{
146}
147
Michalis Spyrou1009e872020-07-27 12:48:34 +0100148void CLPixelWiseMultiplicationKernel::configure(ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output, float scale,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000149 ConvertPolicy overflow_policy, RoundingPolicy rounding_policy, const ActivationLayerInfo &act_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100150{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100151 configure(CLKernelLibrary::get().get_compile_context(), input1, input2, output, scale, overflow_policy, rounding_policy, act_info);
152}
153
Michalis Spyrou1009e872020-07-27 12:48:34 +0100154void CLPixelWiseMultiplicationKernel::configure(const CLCompileContext &compile_context, ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output, float scale,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100155 ConvertPolicy overflow_policy, RoundingPolicy rounding_policy, const ActivationLayerInfo &act_info)
156{
Georgios Pinitasf0dea702017-07-03 18:17:28 +0100157 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
Michalis Spyrou1009e872020-07-27 12:48:34 +0100158 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input1, input2, output,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000159 scale, overflow_policy, rounding_policy, act_info));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100160
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000161 // Configure kernel window
Michalis Spyrou1009e872020-07-27 12:48:34 +0100162 auto win_config = validate_and_configure_window(input1, input2, output);
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000163 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
164
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100165 _input1 = input1;
166 _input2 = input2;
167 _output = output;
168
169 int scale_int = -1;
170 // Extract sign, exponent and mantissa
171 int exponent = 0;
172 float normalized_mantissa = std::frexp(scale, &exponent);
173 // Use int scaling if factor is equal to 1/2^n for 0 <= n <= 15
174 // frexp returns 0.5 as mantissa which means that the exponent will be in the range of -1 <= e <= 14
175 // Moreover, it will be negative as we deal with 1/2^n
176 if((normalized_mantissa == 0.5f) && (-14 <= exponent) && (exponent <= 1))
177 {
178 // Store the positive exponent. We know that we compute 1/2^n
179 // Additionally we need to subtract 1 to compensate that frexp used a mantissa of 0.5
180 scale_int = std::abs(exponent - 1);
181 }
182
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100183 std::string acc_type;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100184 // Check if it has float inputs and output
Michalis Spyrou1009e872020-07-27 12:48:34 +0100185 if(is_data_type_float(input1->data_type()) || is_data_type_float(input2->data_type()))
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100186 {
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100187 scale_int = -1;
Michalis Spyrou1009e872020-07-27 12:48:34 +0100188 acc_type = (input1->data_type() == DataType::F32 || input2->data_type() == DataType::F32) ? "float" : "half";
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100189 }
190 else
191 {
Michalis Spyrou1009e872020-07-27 12:48:34 +0100192 if(input1->element_size() == 2 || input2->element_size() == 2)
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +0100193 {
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100194 // Use 32-bit accumulator for 16-bit input
195 acc_type = "int";
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +0100196 }
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +0100197 else
198 {
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100199 // Use 16-bit accumulator for 8-bit input
200 acc_type = "ushort";
Michele Di Giorgioab0a77e2017-06-21 15:36:24 +0100201 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100202 }
203
Michalis Spyrou1009e872020-07-27 12:48:34 +0100204 const bool is_quantized = is_data_type_quantized(input1->data_type());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100205
206 // Set kernel build options
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100207 std::string kernel_name = "pixelwise_mul";
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100208 CLBuildOptions build_opts;
Michalis Spyrou1009e872020-07-27 12:48:34 +0100209 build_opts.add_option("-DDATA_TYPE_IN1=" + get_cl_type_from_data_type(input1->data_type()));
210 build_opts.add_option("-DDATA_TYPE_IN2=" + get_cl_type_from_data_type(input2->data_type()));
211 build_opts.add_option("-DDATA_TYPE_OUT=" + get_cl_type_from_data_type(output->data_type()));
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100212 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Michalis Spyrou1009e872020-07-27 12:48:34 +0100213 if(is_quantized && (output->data_type() != DataType::S32))
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100214 {
Michalis Spyrou1009e872020-07-27 12:48:34 +0100215 const UniformQuantizationInfo iq1_info = input1->quantization_info().uniform();
216 const UniformQuantizationInfo iq2_info = input2->quantization_info().uniform();
217 const UniformQuantizationInfo oq_info = output->quantization_info().uniform();
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100218
Michalis Spyrou1009e872020-07-27 12:48:34 +0100219 build_opts.add_option_if(is_data_type_quantized_asymmetric(input1->data_type()),
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100220 "-DOFFSET_IN1=" + support::cpp11::to_string(iq1_info.offset));
Michalis Spyrou1009e872020-07-27 12:48:34 +0100221 build_opts.add_option_if(is_data_type_quantized_asymmetric(input2->data_type()),
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100222 "-DOFFSET_IN2=" + support::cpp11::to_string(iq2_info.offset));
Michalis Spyrou1009e872020-07-27 12:48:34 +0100223 build_opts.add_option_if(is_data_type_quantized_asymmetric(output->data_type()),
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100224 "-DOFFSET_OUT=" + support::cpp11::to_string(oq_info.offset));
225 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq1_info.scale));
226 build_opts.add_option("-DSCALE_IN2=" + float_to_string_with_full_precision(iq2_info.scale));
227 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100228 kernel_name += "_quantized";
229 }
230 else
231 {
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100232 kernel_name += (scale_int >= 0) ? "_int" : "_float";
Michalis Spyrou1009e872020-07-27 12:48:34 +0100233 build_opts.add_option_if_else(overflow_policy == ConvertPolicy::WRAP || is_data_type_float(output->data_type()), "-DWRAP", "-DSATURATE");
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100234 build_opts.add_option_if_else(rounding_policy == RoundingPolicy::TO_ZERO, "-DROUND=_rtz", "-DROUND=_rte");
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100235 build_opts.add_option("-DACC_DATA_TYPE=" + acc_type);
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000236 if(act_info.enabled())
237 {
238 build_opts.add_option("-DACTIVATION_TYPE=" + lower_string(string_from_activation_func(act_info.activation())));
239 build_opts.add_option("-DA_VAL=" + float_to_string_with_full_precision(act_info.a()));
240 build_opts.add_option("-DB_VAL=" + float_to_string_with_full_precision(act_info.b()));
241 }
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100242 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100243
244 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100245 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100246
247 // Set scale argument
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100248 unsigned int idx = 3 * num_arguments_per_3D_tensor(); // Skip the inputs and output parameters
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100249
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100250 if(scale_int >= 0 && !is_quantized)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100251 {
252 _kernel.setArg(idx++, scale_int);
253 }
254 else
255 {
256 _kernel.setArg(idx++, scale);
257 }
258
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100259 ICLKernel::configure_internal(win_config.second);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100260}
261
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000262Status CLPixelWiseMultiplicationKernel::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float scale,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000263 ConvertPolicy overflow_policy, RoundingPolicy rounding_policy, const ActivationLayerInfo &act_info)
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000264{
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000265 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000266 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input1, input2, output, scale, overflow_policy, rounding_policy, act_info));
Giorgio Arena70623822017-11-27 15:50:10 +0000267 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 +0000268
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000269 return Status{};
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000270}
271
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100272void CLPixelWiseMultiplicationKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100273{
274 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
275 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
276
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100277 const auto src_0 = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_0));
278 const auto src_1 = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_1));
279 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michalis Spyrou1009e872020-07-27 12:48:34 +0100280
281 const TensorShape &in_shape1 = src_0->info()->tensor_shape();
282 const TensorShape &in_shape2 = src_1->info()->tensor_shape();
283 const TensorShape &out_shape = dst->info()->tensor_shape();
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000284
285 bool can_collapse = true;
286 if(std::min(in_shape1.total_size(), in_shape2.total_size()) > 1)
287 {
288 can_collapse = (std::min(in_shape1.num_dimensions(), in_shape2.num_dimensions()) > Window::DimZ);
289 for(size_t d = Window::DimZ; can_collapse && (d < out_shape.num_dimensions()); ++d)
290 {
291 can_collapse = (in_shape1[d] == in_shape2[d]);
292 }
293 }
294
295 bool has_collapsed = false;
296 Window collapsed = can_collapse ? window.collapse_if_possible(ICLKernel::window(), Window::DimZ, &has_collapsed) : window;
297
298 const TensorShape &in_shape1_collapsed = has_collapsed ? in_shape1.collapsed_from(Window::DimZ) : in_shape1;
299 const TensorShape &in_shape2_collapsed = has_collapsed ? in_shape2.collapsed_from(Window::DimZ) : in_shape2;
300
301 Window slice = collapsed.first_slice_window_3D();
302 Window slice_input1 = slice.broadcast_if_dimension_le_one(in_shape1_collapsed);
303 Window slice_input2 = slice.broadcast_if_dimension_le_one(in_shape2_collapsed);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100304
305 do
306 {
307 unsigned int idx = 0;
Michalis Spyrou1009e872020-07-27 12:48:34 +0100308 add_3D_tensor_argument(idx, src_0, slice_input1);
309 add_3D_tensor_argument(idx, src_1, slice_input2);
310 add_3D_tensor_argument(idx, dst, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100311 enqueue(queue, *this, slice, lws_hint());
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000312
Michalis Spyrouebdde652019-07-08 11:52:46 +0100313 ARM_COMPUTE_UNUSED(collapsed.slide_window_slice_3D(slice_input1));
314 ARM_COMPUTE_UNUSED(collapsed.slide_window_slice_3D(slice_input2));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100315 }
Georgios Pinitas1d08a312018-01-03 12:29:22 +0000316 while(collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100317}
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000318
319BorderSize CLPixelWiseMultiplicationKernel::border_size() const
320{
Michalis Spyrou1009e872020-07-27 12:48:34 +0100321 const unsigned int replicateSize = _output->dimension(0) - std::min(_input1->dimension(0), _input2->dimension(0));
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000322 const unsigned int border = std::min<unsigned int>(num_elems_processed_per_iteration - 1U, replicateSize);
Michalis Spyroua4f378d2019-04-26 14:54:54 +0100323 return BorderSize{ 0, border, 0, 0 };
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000324}
Georgios Pinitas8be91482019-03-26 17:23:28 +0000325
326namespace
327{
328constexpr unsigned int num_elems_processed_per_iteration_complex = 1;
329
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000330Status validate_arguments_complex(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, const ActivationLayerInfo &act_info)
Georgios Pinitas8be91482019-03-26 17:23:28 +0000331{
Giorgio Arenaea7de7b2020-12-10 16:49:39 +0000332 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 2, DataType::F16, DataType::F32);
333 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input2, 2, DataType::F16, DataType::F32);
334 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input1, input2);
Georgios Pinitas8be91482019-03-26 17:23:28 +0000335
336 const TensorShape &out_shape = TensorShape::broadcast_shape(input1->tensor_shape(), input2->tensor_shape());
337
338 ARM_COMPUTE_RETURN_ERROR_ON_MSG(out_shape.total_size() == 0, "Inputs are not broadcast compatible");
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000339 ARM_COMPUTE_RETURN_ERROR_ON(act_info.enabled() && !is_data_type_float(output->data_type()));
Georgios Pinitas8be91482019-03-26 17:23:28 +0000340
341 // Validate in case of configured output
342 if(output->total_size() > 0)
343 {
Giorgio Arenaea7de7b2020-12-10 16:49:39 +0000344 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 2, DataType::F16, DataType::F32);
345 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input1, output);
Georgios Pinitas8be91482019-03-26 17:23:28 +0000346 ARM_COMPUTE_RETURN_ERROR_ON_MSG(detail::have_different_dimensions(out_shape, output->tensor_shape(), 0), "Wrong shape for output");
347 }
348
349 return Status{};
350}
351
352std::pair<Status, Window> validate_and_configure_window_complex(ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output)
353{
354 const std::pair<TensorShape, ValidRegion> broadcast_pair = ITensorInfo::broadcast_shape_and_valid_region(*input1, *input2);
355 const TensorShape &out_shape = broadcast_pair.first;
356 const ValidRegion &valid_region = broadcast_pair.second;
357
358 // Auto initialize output if not initialized
359 const TensorInfo out_info(out_shape, input1->num_channels(), input1->data_type());
360 auto_init_if_empty(*output, out_info);
361
362 Window win = calculate_max_window(valid_region, Steps(num_elems_processed_per_iteration_complex));
363 Window win_input1 = win.broadcast_if_dimension_le_one(*input1);
364 Window win_input2 = win.broadcast_if_dimension_le_one(*input2);
365
366 AccessWindowHorizontal input1_access(input1, 0, num_elems_processed_per_iteration_complex);
367 AccessWindowHorizontal input2_access(input2, 0, num_elems_processed_per_iteration_complex);
368 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration_complex);
369
370 bool window_changed = update_window_and_padding(win_input1, input1_access)
371 || update_window_and_padding(win_input2, input2_access)
372 || update_window_and_padding(win, output_access);
373
374 output_access.set_valid_region(win, valid_region);
375
376 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
377 return std::make_pair(err, win);
378}
379} // namespace
380
381CLComplexPixelWiseMultiplicationKernel::CLComplexPixelWiseMultiplicationKernel()
382 : _input1(nullptr), _input2(nullptr), _output(nullptr)
383{
384}
385
Michalis Spyrou1009e872020-07-27 12:48:34 +0100386void CLComplexPixelWiseMultiplicationKernel::configure(ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output, const ActivationLayerInfo &act_info)
Georgios Pinitas8be91482019-03-26 17:23:28 +0000387{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100388 configure(CLKernelLibrary::get().get_compile_context(), input1, input2, output, act_info);
389}
390
Michalis Spyrou1009e872020-07-27 12:48:34 +0100391void CLComplexPixelWiseMultiplicationKernel::configure(const CLCompileContext &compile_context, ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output, const ActivationLayerInfo &act_info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100392{
Georgios Pinitas8be91482019-03-26 17:23:28 +0000393 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
Michalis Spyrou1009e872020-07-27 12:48:34 +0100394 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_complex(input1, input2, output, act_info));
Georgios Pinitas8be91482019-03-26 17:23:28 +0000395
396 // Configure kernel window
Michalis Spyrou1009e872020-07-27 12:48:34 +0100397 auto win_config = validate_and_configure_window_complex(input1, input2, output);
Georgios Pinitas8be91482019-03-26 17:23:28 +0000398 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
399
400 _input1 = input1;
401 _input2 = input2;
402 _output = output;
403
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000404 CLBuildOptions build_opts;
Giorgio Arenaea7de7b2020-12-10 16:49:39 +0000405 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(_output->data_type()));
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000406 if(act_info.enabled())
407 {
408 build_opts.add_option("-DACTIVATION_TYPE=" + lower_string(string_from_activation_func(act_info.activation())));
409 build_opts.add_option("-DA_VAL=" + float_to_string_with_full_precision(act_info.a()));
410 build_opts.add_option("-DB_VAL=" + float_to_string_with_full_precision(act_info.b()));
411 }
412
Georgios Pinitas8be91482019-03-26 17:23:28 +0000413 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100414 _kernel = create_kernel(compile_context, "pixelwise_mul_complex", build_opts.options());
Georgios Pinitas8be91482019-03-26 17:23:28 +0000415
416 ICLKernel::configure_internal(win_config.second);
417}
418
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000419Status CLComplexPixelWiseMultiplicationKernel::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, const ActivationLayerInfo &act_info)
Georgios Pinitas8be91482019-03-26 17:23:28 +0000420{
421 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000422 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_complex(input1, input2, output, act_info));
Georgios Pinitas8be91482019-03-26 17:23:28 +0000423 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window_complex(input1->clone().get(), input2->clone().get(), output->clone().get()).first);
424
425 return Status{};
426}
427
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100428void CLComplexPixelWiseMultiplicationKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Georgios Pinitas8be91482019-03-26 17:23:28 +0000429{
430 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
431 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
432
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100433 const auto src_0 = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_0));
434 const auto src_1 = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_1));
435 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michalis Spyrou1009e872020-07-27 12:48:34 +0100436
437 const TensorShape &in_shape1 = src_0->info()->tensor_shape();
438 const TensorShape &in_shape2 = src_1->info()->tensor_shape();
439 const TensorShape &out_shape = dst->info()->tensor_shape();
Georgios Pinitas8be91482019-03-26 17:23:28 +0000440
441 bool can_collapse = true;
442 if(std::min(in_shape1.total_size(), in_shape2.total_size()) > 1)
443 {
444 can_collapse = (std::min(in_shape1.num_dimensions(), in_shape2.num_dimensions()) > Window::DimZ);
445 for(size_t d = Window::DimZ; can_collapse && (d < out_shape.num_dimensions()); ++d)
446 {
447 can_collapse = (in_shape1[d] == in_shape2[d]);
448 }
449 }
450
451 bool has_collapsed = false;
452 Window collapsed = can_collapse ? window.collapse_if_possible(ICLKernel::window(), Window::DimZ, &has_collapsed) : window;
453
454 const TensorShape &in_shape1_collapsed = has_collapsed ? in_shape1.collapsed_from(Window::DimZ) : in_shape1;
455 const TensorShape &in_shape2_collapsed = has_collapsed ? in_shape2.collapsed_from(Window::DimZ) : in_shape2;
456
457 Window slice = collapsed.first_slice_window_3D();
458 Window slice_input1 = slice.broadcast_if_dimension_le_one(in_shape1_collapsed);
459 Window slice_input2 = slice.broadcast_if_dimension_le_one(in_shape2_collapsed);
460
461 do
462 {
463 unsigned int idx = 0;
Michalis Spyrou1009e872020-07-27 12:48:34 +0100464 add_3D_tensor_argument(idx, src_0, slice_input1);
465 add_3D_tensor_argument(idx, src_1, slice_input2);
466 add_3D_tensor_argument(idx, dst, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100467 enqueue(queue, *this, slice, lws_hint());
Georgios Pinitas8be91482019-03-26 17:23:28 +0000468
Michalis Spyrouebdde652019-07-08 11:52:46 +0100469 ARM_COMPUTE_UNUSED(collapsed.slide_window_slice_3D(slice_input1));
470 ARM_COMPUTE_UNUSED(collapsed.slide_window_slice_3D(slice_input2));
Georgios Pinitas8be91482019-03-26 17:23:28 +0000471 }
472 while(collapsed.slide_window_slice_3D(slice));
473}
474
475BorderSize CLComplexPixelWiseMultiplicationKernel::border_size() const
476{
Michalis Spyrou1009e872020-07-27 12:48:34 +0100477 const unsigned int replicateSize = _output->dimension(0) - std::min(_input1->dimension(0), _input2->dimension(0));
Georgios Pinitas8be91482019-03-26 17:23:28 +0000478 const unsigned int border = std::min<unsigned int>(num_elems_processed_per_iteration_complex - 1U, replicateSize);
Michalis Spyroua4f378d2019-04-26 14:54:54 +0100479 return BorderSize{ 0, border, 0, 0 };
Georgios Pinitas8be91482019-03-26 17:23:28 +0000480}
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100481} // namespace arm_compute