blob: c4f84e3e4536a8d00f3066152e3b3728bb60d66e [file] [log] [blame]
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2018-2023 Arm Limited.
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00003 *
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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/gpu/cl/kernels/ClWidthConcatenate4TensorsKernel.h"
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000025
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/Helpers.h"
30#include "arm_compute/core/Utils.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000031#include "arm_compute/core/utils/helpers/AdjustVecSize.h"
32#include "arm_compute/core/utils/StringUtils.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010033
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000034#include "src/core/CL/CLValidate.h"
35#include "src/core/helpers/WindowHelpers.h"
36#include "src/core/utils/helpers/tensor_info.h"
37#include "support/Cast.h"
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000038#include "support/StringSupport.h"
39
40namespace arm_compute
41{
42namespace opencl
43{
44namespace kernels
45{
46namespace
47{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010048Status validate_arguments(const ITensorInfo *src1,
49 const ITensorInfo *src2,
50 const ITensorInfo *src3,
51 const ITensorInfo *src4,
52 const ITensorInfo *dst)
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000053{
54 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src1, src2, src3, src4, dst);
55 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(src1);
56 ARM_COMPUTE_RETURN_ERROR_ON(src1->data_type() == DataType::UNKNOWN);
57 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src1, src2, src3, src4, dst);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010058 ARM_COMPUTE_RETURN_ERROR_ON(src1->dimension(0) + src2->dimension(0) + src3->dimension(0) + src4->dimension(0) >
59 dst->dimension(0));
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000060
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010061 for (size_t i = 1; i < Coordinates::num_max_dimensions; ++i)
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000062 {
63 ARM_COMPUTE_RETURN_ERROR_ON(src1->dimension(i) != dst->dimension(i));
64 ARM_COMPUTE_RETURN_ERROR_ON(src2->dimension(i) != dst->dimension(i));
65 ARM_COMPUTE_RETURN_ERROR_ON(src3->dimension(i) != dst->dimension(i));
66 ARM_COMPUTE_RETURN_ERROR_ON(src4->dimension(i) != dst->dimension(i));
67 }
68 ARM_COMPUTE_RETURN_ERROR_ON(src1->num_dimensions() > 4);
69
70 return Status{};
71}
72} // namespace
73
74ClWidthConcatenate4TensorsKernel::ClWidthConcatenate4TensorsKernel()
75{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010076 _type = CLKernelType::ELEMENTWISE;
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000077}
78
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010079Status ClWidthConcatenate4TensorsKernel::validate(const ITensorInfo *src1,
80 const ITensorInfo *src2,
81 const ITensorInfo *src3,
82 const ITensorInfo *src4,
83 const ITensorInfo *dst)
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000084{
85 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src1, src2, src3, src4, dst));
86 return Status{};
87}
88
89void ClWidthConcatenate4TensorsKernel::configure(const CLCompileContext &compile_context,
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010090 ITensorInfo *src1,
91 ITensorInfo *src2,
92 ITensorInfo *src3,
93 ITensorInfo *src4,
94 ITensorInfo *dst)
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000095{
96 ARM_COMPUTE_ERROR_ON_NULLPTR(src1, src2, src3, src4, dst);
97 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src1, src2, src3, src4, dst));
98
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010099 auto padding_info = get_padding_info({src1, src2, src3, src4, dst});
100 const unsigned int min_dimension =
101 std::min(std::min(src1->dimension(0), src2->dimension(0)), std::min(src3->dimension(0), src4->dimension(0)));
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000102 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(8, min_dimension);
103 const unsigned int vec_size_leftover = dst->dimension(0) % num_elems_processed_per_iteration;
104
105 // Add build options
106 CLBuildOptions build_opts;
107 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(src1->data_type()));
108 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
109 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(vec_size_leftover));
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000110 build_opts.add_option("-DELEMENT_SIZE=" + support::cpp11::to_string(src1->element_size()));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100111 build_opts.add_option("-DINPUT1_ROTATE_N=" + support::cpp11::to_string((src1->dimension(0) - vec_size_leftover) %
112 num_elems_processed_per_iteration));
113 build_opts.add_option("-DINPUT2_ROTATE_N=" +
114 support::cpp11::to_string((src1->dimension(0) + src2->dimension(0) - vec_size_leftover) %
115 num_elems_processed_per_iteration));
116 build_opts.add_option("-DINPUT3_ROTATE_N=" + support::cpp11::to_string((src1->dimension(0) + src2->dimension(0) +
117 src3->dimension(0) - vec_size_leftover) %
118 num_elems_processed_per_iteration));
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000119
ramelg0189aa4eb2022-02-08 23:01:31 +0000120 _depth = src1->dimension(2);
121 _input1_width = src1->dimension(0);
122 _input2_width = src2->dimension(0);
123 _input3_width = src3->dimension(0);
124
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000125 // If soources have different quantization info set quantization parameters needed for the re-quantization process
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100126 const bool have_different_qinfo =
127 helpers::tensor_info::tensors_have_different_quantization_info(dst, src1, src2, src3, src4);
128 if (is_data_type_quantized_asymmetric(src1->data_type()) && have_different_qinfo)
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000129 {
130 const UniformQuantizationInfo iq1_info = src1->quantization_info().uniform();
131 const UniformQuantizationInfo iq2_info = src2->quantization_info().uniform();
132 const UniformQuantizationInfo iq3_info = src3->quantization_info().uniform();
133 const UniformQuantizationInfo iq4_info = src4->quantization_info().uniform();
134 const UniformQuantizationInfo oq_info = dst->quantization_info().uniform();
135
136 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iq1_info.offset));
137 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq1_info.scale));
138 build_opts.add_option("-DOFFSET_IN2=" + float_to_string_with_full_precision(iq2_info.offset));
139 build_opts.add_option("-DSCALE_IN2=" + float_to_string_with_full_precision(iq2_info.scale));
140 build_opts.add_option("-DOFFSET_IN3=" + float_to_string_with_full_precision(iq3_info.offset));
141 build_opts.add_option("-DSCALE_IN3=" + float_to_string_with_full_precision(iq3_info.scale));
142 build_opts.add_option("-DOFFSET_IN4=" + float_to_string_with_full_precision(iq4_info.offset));
143 build_opts.add_option("-DSCALE_IN4=" + float_to_string_with_full_precision(iq4_info.scale));
144 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oq_info.offset));
145 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
146 }
ramelg0189aa4eb2022-02-08 23:01:31 +0000147 std::string kernel_name = "concatenate_width_x4";
148
149 // A macro guard to compile ONLY the kernel of interest
150 build_opts.add_option("-D" + upper_string(kernel_name));
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000151
152 // Create kernel
ramelg0189aa4eb2022-02-08 23:01:31 +0000153 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000154
155 // Configure kernel window
156 Window win = calculate_max_window(*dst, Steps(num_elems_processed_per_iteration));
157 ICLKernel::configure_internal(win.collapse(win, Window::DimZ));
158
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000159 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
160
161 // Set config_id for enabling LWS tuning
162 _config_id = "concatenate_width_x4_";
163 _config_id += lower_string(string_from_data_type(src1->data_type()));
164 _config_id += "_";
165 _config_id += support::cpp11::to_string(src1->dimension(0));
166 _config_id += "_";
167 _config_id += support::cpp11::to_string(src1->dimension(1));
168 _config_id += "_";
169 _config_id += support::cpp11::to_string(src2->dimension(0));
170 _config_id += "_";
171 _config_id += support::cpp11::to_string(src2->dimension(1));
172 _config_id += "_";
173 _config_id += support::cpp11::to_string(src3->dimension(0));
174 _config_id += "_";
175 _config_id += support::cpp11::to_string(src3->dimension(1));
176 _config_id += "_";
177 _config_id += support::cpp11::to_string(src4->dimension(0));
178 _config_id += "_";
179 _config_id += support::cpp11::to_string(src4->dimension(1));
180}
181
182void ClWidthConcatenate4TensorsKernel::run_op(ITensorPack &tensors, const Window &window, ::cl::CommandQueue &queue)
183{
184 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
185 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
186
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100187 const auto src0 =
188 utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_VEC));
189 const auto src1 =
190 utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_VEC + 1));
191 const auto src2 =
192 utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_VEC + 2));
193 const auto src3 =
194 utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_VEC + 3));
195 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000196
197 Window slice = window.first_slice_window_4D();
198
199 do
200 {
201 unsigned int idx = 0;
202 add_4D_tensor_argument(idx, src0, slice);
203 add_4D_tensor_argument(idx, src1, slice);
204 add_4D_tensor_argument(idx, src2, slice);
205 add_4D_tensor_argument(idx, src3, slice);
206 add_4D_tensor_argument(idx, dst, slice);
ramelg0189aa4eb2022-02-08 23:01:31 +0000207 _kernel.setArg<cl_int>(idx++, _depth);
208 _kernel.setArg<cl_int>(idx++, _input1_width);
209 _kernel.setArg<cl_int>(idx++, _input2_width);
210 _kernel.setArg<cl_int>(idx++, _input3_width);
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000211 enqueue(queue, *this, window, lws_hint());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100212 } while (window.slide_window_slice_4D(slice));
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000213}
214} // namespace kernels
215} // namespace opencl
216} // namespace arm_compute