blob: c87290d04ccd06c32d46085d8135f2e48744c1e6 [file] [log] [blame]
Michele Di Giorgio27400b92018-11-01 13:44:05 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 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 */
24#include "arm_compute/core/CL/kernels/CLWidthConcatenate2TensorsKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/CL/CLKernelLibrary.h"
29#include "arm_compute/core/CL/CLValidate.h"
30#include "arm_compute/core/CL/ICLTensor.h"
Michele Di Giorgio27400b92018-11-01 13:44:05 +000031#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/IAccessWindow.h"
Michele Di Giorgio27400b92018-11-01 13:44:05 +000033#include "arm_compute/core/Utils.h"
34#include "arm_compute/core/Window.h"
Georgios Pinitas6631ac22019-04-17 12:12:56 +010035#include "arm_compute/core/utils/helpers/tensor_info.h"
Michele Di Giorgio27400b92018-11-01 13:44:05 +000036#include "arm_compute/core/utils/misc/ShapeCalculator.h"
37
Matthew Bentham758b5ba2020-03-05 23:37:48 +000038#include "support/StringSupport.h"
Michele Di Giorgio27400b92018-11-01 13:44:05 +000039
40namespace arm_compute
41{
42namespace
43{
44constexpr unsigned int num_elems_processed_per_iteration = 8;
45
46std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output)
47{
48 // The window needs to be based on the output
49 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Michele Di Giorgio8e150a12018-12-21 15:20:56 +000050 AccessWindowStatic input1_access(input1, 0, 0, ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration), input1->dimension(1));
Georgios Pinitas0b5af9f2020-06-19 23:22:08 +010051 const unsigned int input2_right_padding = ((output->dimension(0) / num_elems_processed_per_iteration) * num_elems_processed_per_iteration - input1->dimension(0) - input2->dimension(
52 0)) % num_elems_processed_per_iteration;
Michele Di Giorgio8e150a12018-12-21 15:20:56 +000053 AccessWindowStatic input2_access(input2, -(input1->dimension(0) % num_elems_processed_per_iteration),
54 0, input2->dimension(0) + input2_right_padding, input2->dimension(1));
Michele Di Giorgio27400b92018-11-01 13:44:05 +000055 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
56 bool window_changed = update_window_and_padding(win, input1_access, input2_access, output_access);
57
58 Window win_collapsed = win.collapse(win, Window::DimZ);
59
60 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
61 return std::make_pair(err, win_collapsed);
62}
63Status validate_arguments(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output)
64{
65 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input1, input2, output);
66 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input1);
Manuel Bottini8481d832019-12-10 15:28:40 +000067 ARM_COMPUTE_RETURN_ERROR_ON(input1->data_type() == DataType::UNKNOWN);
Michele Di Giorgio27400b92018-11-01 13:44:05 +000068 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input1, input2, output);
69 ARM_COMPUTE_RETURN_ERROR_ON(input1->dimension(0) + input2->dimension(0) > output->dimension(0));
70
71 for(size_t i = 1; i < Coordinates::num_max_dimensions; ++i)
72 {
73 ARM_COMPUTE_RETURN_ERROR_ON(input1->dimension(i) != output->dimension(i));
74 ARM_COMPUTE_RETURN_ERROR_ON(input2->dimension(i) != output->dimension(i));
75 }
76 ARM_COMPUTE_RETURN_ERROR_ON(input1->num_dimensions() > 4);
77
78 return Status{};
79}
80} // namespace
81
82CLWidthConcatenate2TensorsKernel::CLWidthConcatenate2TensorsKernel()
83 : _input1(nullptr), _input2(nullptr), _output(nullptr)
84{
85}
86
87Status CLWidthConcatenate2TensorsKernel::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output)
88{
89 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input1, input2, output));
90 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input1->clone().get(), input2->clone().get(), output->clone().get()).first);
91 return Status{};
92}
93
94void CLWidthConcatenate2TensorsKernel::configure(const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output)
95{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010096 configure(CLKernelLibrary::get().get_compile_context(), input1, input2, output);
97}
98
Manuel Bottini2803f702020-04-21 16:20:03 +010099void CLWidthConcatenate2TensorsKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100100{
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000101 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
102 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input1->info(), input2->info(), output->info()));
103
104 _input1 = input1;
105 _input2 = input2;
106 _output = output;
107
108 // Add build options
109 CLBuildOptions build_opts;
Michele Di Giorgiof6f78762020-07-06 11:27:21 +0100110 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input1->info()->data_type()));
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000111 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
112 build_opts.add_option("-DDEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
113 build_opts.add_option("-DINPUT1_WIDTH=" + support::cpp11::to_string(input1->info()->dimension(0)));
114 build_opts.add_option("-DELEMENT_SIZE=" + support::cpp11::to_string(input1->info()->element_size()));
115
Georgios Pinitas6631ac22019-04-17 12:12:56 +0100116 // If input have different quantization info set quantization parameters needed for the re-quantization process
117 const bool have_different_qinfo = helpers::tensor_info::tensors_have_different_quantization_info(output->info(), input1->info(), input2->info());
118 if(is_data_type_quantized_asymmetric(input1->info()->data_type()) && have_different_qinfo)
Pablo Telloeb6c88a2019-02-07 15:53:19 +0000119 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100120 const UniformQuantizationInfo iq1_info = input1->info()->quantization_info().uniform();
121 const UniformQuantizationInfo iq2_info = input2->info()->quantization_info().uniform();
122 const UniformQuantizationInfo oq_info = output->info()->quantization_info().uniform();
123
124 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iq1_info.offset));
125 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq1_info.scale));
126 build_opts.add_option("-DOFFSET_IN2=" + float_to_string_with_full_precision(iq2_info.offset));
127 build_opts.add_option("-DSCALE_IN2=" + float_to_string_with_full_precision(iq2_info.scale));
128 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oq_info.offset));
129 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Pablo Telloeb6c88a2019-02-07 15:53:19 +0000130 }
131
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000132 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100133 _kernel = create_kernel(compile_context, "concatenate_width_x2", build_opts.options());
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000134
135 // Configure kernel window
136 auto win_config = validate_and_configure_window(input1->info(), input2->info(), output->info());
137 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
138
139 ICLKernel::configure_internal(std::get<1>(win_config));
140
Isabella Gottardif59b16f2019-07-25 12:03:39 +0100141 // Set output valid region
142 output->info()->set_valid_region(ValidRegion(Coordinates(), output->info()->tensor_shape()));
143
Michele Di Giorgio8e150a12018-12-21 15:20:56 +0000144 // Pass paddings as arguments to the kernel
145 const unsigned int input1_width = input1->info()->dimension(0);
146 const unsigned int input1_right_padding = ceil_to_multiple(input1_width, num_elems_processed_per_iteration) - input1_width;
147 const unsigned int input2_left_padding = input1_width % num_elems_processed_per_iteration;
148 unsigned int idx0 = 3 * num_arguments_per_4D_tensor();
149 _kernel.setArg<cl_uint>(idx0++, input1_right_padding);
150 _kernel.setArg<cl_uint>(idx0++, input2_left_padding);
151
Michele Di Giorgio27400b92018-11-01 13:44:05 +0000152 // Set config_id for enabling LWS tuning
153 _config_id = "concatenate_width_x2_";
154 _config_id += lower_string(string_from_data_type(input1->info()->data_type()));
155 _config_id += "_";
156 _config_id += support::cpp11::to_string(input1->info()->dimension(0));
157 _config_id += "_";
158 _config_id += support::cpp11::to_string(input1->info()->dimension(1));
159 _config_id += "_";
160 _config_id += support::cpp11::to_string(input2->info()->dimension(0));
161 _config_id += "_";
162 _config_id += support::cpp11::to_string(input2->info()->dimension(1));
163}
164
165void CLWidthConcatenate2TensorsKernel::run(const Window &window, cl::CommandQueue &queue)
166{
167 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
168 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
169
170 Window slice = window.first_slice_window_4D();
171
172 do
173 {
174 unsigned int idx = 0;
175 add_4D_tensor_argument(idx, _input1, slice);
176 add_4D_tensor_argument(idx, _input2, slice);
177 add_4D_tensor_argument(idx, _output, slice);
178 enqueue(queue, *this, window, lws_hint());
179 }
180 while(window.slide_window_slice_4D(slice));
181}
182} // namespace arm_compute