blob: b04a80a1e9d48df9f801df1e8aaf341b728065fd [file] [log] [blame]
Michele Di Giorgio27400b92018-11-01 13:44:05 +00001/*
ramelg0189aa4eb2022-02-08 23:01:31 +00002 * Copyright (c) 2018-2022 Arm Limited.
Michele Di Giorgio27400b92018-11-01 13:44:05 +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/ClWidthConcatenate2TensorsKernel.h"
Michele Di Giorgio27400b92018-11-01 13:44:05 +000025
Michele Di Giorgio27400b92018-11-01 13:44:05 +000026#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
Michele Di Giorgio27400b92018-11-01 13:44:05 +000028#include "arm_compute/core/CL/ICLTensor.h"
Michele Di Giorgio27400b92018-11-01 13:44:05 +000029#include "arm_compute/core/Utils.h"
Michele Di Giorgio27400b92018-11-01 13:44:05 +000030#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010031#include "src/core/CL/CLValidate.h"
32#include "src/core/helpers/WindowHelpers.h"
33#include "src/core/utils/helpers/tensor_info.h"
34#include "support/Cast.h"
Michele Di Giorgio27400b92018-11-01 13:44:05 +000035
Matthew Bentham758b5ba2020-03-05 23:37:48 +000036#include "support/StringSupport.h"
Michele Di Giorgio27400b92018-11-01 13:44:05 +000037
38namespace arm_compute
39{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000040namespace opencl
41{
42namespace kernels
43{
Michele Di Giorgio27400b92018-11-01 13:44:05 +000044namespace
45{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000046Status validate_arguments(const ITensorInfo *src1, const ITensorInfo *src2, const ITensorInfo *dst)
Michele Di Giorgio27400b92018-11-01 13:44:05 +000047{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000048 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src1, src2, dst);
49 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(src1);
50 ARM_COMPUTE_RETURN_ERROR_ON(src1->data_type() == DataType::UNKNOWN);
51 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src1, src2, dst);
52 ARM_COMPUTE_RETURN_ERROR_ON(src1->dimension(0) + src2->dimension(0) > dst->dimension(0));
Michele Di Giorgio27400b92018-11-01 13:44:05 +000053
54 for(size_t i = 1; i < Coordinates::num_max_dimensions; ++i)
55 {
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000056 ARM_COMPUTE_RETURN_ERROR_ON(src1->dimension(i) != dst->dimension(i));
57 ARM_COMPUTE_RETURN_ERROR_ON(src2->dimension(i) != dst->dimension(i));
Michele Di Giorgio27400b92018-11-01 13:44:05 +000058 }
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000059 ARM_COMPUTE_RETURN_ERROR_ON(src1->num_dimensions() > 4);
Michele Di Giorgio27400b92018-11-01 13:44:05 +000060
61 return Status{};
62}
63} // namespace
64
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000065Status ClWidthConcatenate2TensorsKernel::validate(const ITensorInfo *src1, const ITensorInfo *src2, const ITensorInfo *dst)
Michele Di Giorgio27400b92018-11-01 13:44:05 +000066{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000067 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src1, src2, dst));
Michele Di Giorgio27400b92018-11-01 13:44:05 +000068 return Status{};
69}
70
Giorgio Arena4a95bba2021-06-28 11:00:27 +010071ClWidthConcatenate2TensorsKernel::ClWidthConcatenate2TensorsKernel()
72{
73 _type = CLKernelType::ELEMENTWISE;
74}
75
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000076void ClWidthConcatenate2TensorsKernel::configure(const CLCompileContext &compile_context, ITensorInfo *src1, ITensorInfo *src2, ITensorInfo *dst)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010077{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000078 ARM_COMPUTE_ERROR_ON_NULLPTR(src1, src2, dst);
79 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src1, src2, dst));
Michele Di Giorgio27400b92018-11-01 13:44:05 +000080
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000081 auto padding_info = get_padding_info({ src1, src2, dst });
Sheri Zhang72923622020-10-27 10:19:41 +000082
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000083 const unsigned int min_dimension = std::min(src1->dimension(0), src2->dimension(0));
Sheri Zhang72923622020-10-27 10:19:41 +000084 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(8, min_dimension);
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000085 const unsigned int vec_size_leftover = dst->dimension(0) % num_elems_processed_per_iteration;
Sheri Zhang72923622020-10-27 10:19:41 +000086
Michele Di Giorgio27400b92018-11-01 13:44:05 +000087 // Add build options
88 CLBuildOptions build_opts;
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000089 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(src1->data_type()));
Michele Di Giorgio27400b92018-11-01 13:44:05 +000090 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Sheri Zhang72923622020-10-27 10:19:41 +000091 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(vec_size_leftover));
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000092 build_opts.add_option("-DELEMENT_SIZE=" + support::cpp11::to_string(src1->element_size()));
93 build_opts.add_option("-DINPUT1_ROTATE_N=" + support::cpp11::to_string((src1->dimension(0) - vec_size_leftover) % num_elems_processed_per_iteration));
Michele Di Giorgio27400b92018-11-01 13:44:05 +000094
Georgios Pinitas6631ac22019-04-17 12:12:56 +010095 // If input have different quantization info set quantization parameters needed for the re-quantization process
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000096 const bool have_different_qinfo = helpers::tensor_info::tensors_have_different_quantization_info(dst, src1, src2);
97 if(is_data_type_quantized_asymmetric(src1->data_type()) && have_different_qinfo)
Pablo Telloeb6c88a2019-02-07 15:53:19 +000098 {
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000099 const UniformQuantizationInfo iq1_info = src1->quantization_info().uniform();
100 const UniformQuantizationInfo iq2_info = src2->quantization_info().uniform();
101 const UniformQuantizationInfo oq_info = dst->quantization_info().uniform();
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100102
103 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iq1_info.offset));
104 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq1_info.scale));
105 build_opts.add_option("-DOFFSET_IN2=" + float_to_string_with_full_precision(iq2_info.offset));
106 build_opts.add_option("-DSCALE_IN2=" + float_to_string_with_full_precision(iq2_info.scale));
107 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oq_info.offset));
108 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Pablo Telloeb6c88a2019-02-07 15:53:19 +0000109 }
110
ramelg0189aa4eb2022-02-08 23:01:31 +0000111 _depth = src1->dimension(2);
112 _input1_width = src1->dimension(0);
113
114 std::string kernel_name = "concatenate_width_x2";
115
116 // A macro guard to compile ONLY the kernel of interest
117 build_opts.add_option("-D" + upper_string(kernel_name));
118
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000119 // Create kernel
ramelg0189aa4eb2022-02-08 23:01:31 +0000120 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000121
122 // Configure kernel window
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000123 Window win = calculate_max_window(*dst, Steps(num_elems_processed_per_iteration));
Sheri Zhang72923622020-10-27 10:19:41 +0000124 ICLKernel::configure_internal(win.collapse(win, Window::DimZ));
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000125
Sheri Zhang72923622020-10-27 10:19:41 +0000126 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Michele Di Giorgio8e150a12018-12-21 15:20:56 +0000127
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000128 // Set config_id for enabling LWS tuning
129 _config_id = "concatenate_width_x2_";
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000130 _config_id += lower_string(string_from_data_type(src1->data_type()));
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000131 _config_id += "_";
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000132 _config_id += support::cpp11::to_string(src1->dimension(0));
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000133 _config_id += "_";
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000134 _config_id += support::cpp11::to_string(src1->dimension(1));
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000135 _config_id += "_";
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000136 _config_id += support::cpp11::to_string(src2->dimension(0));
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000137 _config_id += "_";
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000138 _config_id += support::cpp11::to_string(src2->dimension(1));
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000139}
140
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000141void ClWidthConcatenate2TensorsKernel::run_op(ITensorPack &tensors, const Window &window, ::cl::CommandQueue &queue)
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000142{
143 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
144 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
145
146 Window slice = window.first_slice_window_4D();
147
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100148 const auto src0 = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_VEC));
149 const auto src1 = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_VEC + 1));
150 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100151
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000152 do
153 {
154 unsigned int idx = 0;
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100155 add_4D_tensor_argument(idx, src0, slice);
156 add_4D_tensor_argument(idx, src1, slice);
157 add_4D_tensor_argument(idx, dst, slice);
ramelg0189aa4eb2022-02-08 23:01:31 +0000158 _kernel.setArg<cl_int>(idx++, _depth);
159 _kernel.setArg<cl_int>(idx++, _input1_width);
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000160 enqueue(queue, *this, window, lws_hint());
161 }
162 while(window.slide_window_slice_4D(slice));
163}
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000164} // namespace kernels
165} // namespace opencl
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000166} // namespace arm_compute