blob: 75aef9cce07221611634ba9fe6a64d022001687c [file] [log] [blame]
Michele Di Giorgio27400b92018-11-01 13:44:05 +00001/*
2 * Copyright (c) 2018 ARM Limited.
3 *
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/CLWidthConcatenate4TensorsKernel.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"
31#include "arm_compute/core/CL/OpenCL.h"
32#include "arm_compute/core/Error.h"
33#include "arm_compute/core/Helpers.h"
34#include "arm_compute/core/IAccessWindow.h"
35#include "arm_compute/core/TensorInfo.h"
36#include "arm_compute/core/Utils.h"
37#include "arm_compute/core/Window.h"
38#include "arm_compute/core/utils/misc/ShapeCalculator.h"
39
40#include "support/ToolchainSupport.h"
41
42namespace arm_compute
43{
44namespace
45{
46constexpr unsigned int num_elems_processed_per_iteration = 8;
47
48std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *input3, ITensorInfo *input4, ITensorInfo *output)
49{
50 // The window needs to be based on the output
51 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
52 AccessWindowStatic input1_access(input1, 0, 0, ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration) + num_elems_processed_per_iteration, input1->dimension(1));
53 AccessWindowStatic input2_access(input2, -num_elems_processed_per_iteration, 0, ceil_to_multiple(input2->dimension(0), num_elems_processed_per_iteration) + num_elems_processed_per_iteration,
54 input2->dimension(1));
55 AccessWindowStatic input3_access(input3, -num_elems_processed_per_iteration, 0, ceil_to_multiple(input3->dimension(0), num_elems_processed_per_iteration) + num_elems_processed_per_iteration,
56 input3->dimension(1));
57 AccessWindowStatic input4_access(input4, -num_elems_processed_per_iteration, 0, ceil_to_multiple(input4->dimension(0), num_elems_processed_per_iteration) + num_elems_processed_per_iteration,
58 input4->dimension(1));
59 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
60 bool window_changed = update_window_and_padding(win, input1_access, input2_access, input3_access, input4_access, output_access);
61
62 Window win_collapsed = win.collapse(win, Window::DimZ);
63
64 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
65 return std::make_pair(err, win_collapsed);
66}
67Status validate_arguments(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *input3, const ITensorInfo *input4, const ITensorInfo *output)
68{
69 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input1, input2, input3, input4, output);
70 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input1);
71 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 1, DataType::U8, DataType::S8, DataType::QASYMM8, DataType::U16, DataType::S16, DataType::F16, DataType::U32,
72 DataType::F32);
73 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input1, input2, input3, input4, output);
74 ARM_COMPUTE_RETURN_ERROR_ON(input1->dimension(0) + input2->dimension(0) + input3->dimension(0) + input4->dimension(0) > output->dimension(0));
75
76 for(size_t i = 1; i < Coordinates::num_max_dimensions; ++i)
77 {
78 ARM_COMPUTE_RETURN_ERROR_ON(input1->dimension(i) != output->dimension(i));
79 ARM_COMPUTE_RETURN_ERROR_ON(input2->dimension(i) != output->dimension(i));
80 ARM_COMPUTE_RETURN_ERROR_ON(input3->dimension(i) != output->dimension(i));
81 ARM_COMPUTE_RETURN_ERROR_ON(input4->dimension(i) != output->dimension(i));
82 }
83 ARM_COMPUTE_RETURN_ERROR_ON(input1->num_dimensions() > 4);
84
85 return Status{};
86}
87} // namespace
88
89CLWidthConcatenate4TensorsKernel::CLWidthConcatenate4TensorsKernel()
90 : _input1(nullptr), _input2(nullptr), _input3(nullptr), _input4(nullptr), _output(nullptr)
91{
92}
93
94Status CLWidthConcatenate4TensorsKernel::validate(const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *input3, const ITensorInfo *input4, const ITensorInfo *output)
95{
96 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input1, input2, input3, input4, output));
97 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input1->clone().get(), input2->clone().get(), input3->clone().get(), input4->clone().get(), output->clone().get()).first);
98 return Status{};
99}
100
101void CLWidthConcatenate4TensorsKernel::configure(const ICLTensor *input1, const ICLTensor *input2, const ICLTensor *input3, const ICLTensor *input4, ICLTensor *output)
102{
103 ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, input3, input4, output);
104 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input1->info(), input2->info(), input3->info(), input4->info(), output->info()));
105
106 _input1 = input1;
107 _input2 = input2;
108 _input3 = input3;
109 _input4 = input4;
110 _output = output;
111
112 // Add build options
113 CLBuildOptions build_opts;
114 build_opts.add_option("-DDATA_TYPE=" + get_underlying_cl_type_from_data_type(input1->info()->data_type()));
115 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
116 build_opts.add_option("-DDEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
117 build_opts.add_option("-DINPUT1_WIDTH=" + support::cpp11::to_string(input1->info()->dimension(0)));
118 build_opts.add_option("-DINPUT2_WIDTH=" + support::cpp11::to_string(input2->info()->dimension(0)));
119 build_opts.add_option("-DINPUT3_WIDTH=" + support::cpp11::to_string(input3->info()->dimension(0)));
120 build_opts.add_option("-DELEMENT_SIZE=" + support::cpp11::to_string(input1->info()->element_size()));
121
122 // Create kernel
123 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("concatenate_width_x4", build_opts.options()));
124
125 // Configure kernel window
126 auto win_config = validate_and_configure_window(input1->info(), input2->info(), input3->info(), input4->info(), output->info());
127 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
128
129 ICLKernel::configure_internal(std::get<1>(win_config));
130
131 // Set config_id for enabling LWS tuning
132 _config_id = "concatenate_width_x4_";
133 _config_id += lower_string(string_from_data_type(input1->info()->data_type()));
134 _config_id += "_";
135 _config_id += support::cpp11::to_string(input1->info()->dimension(0));
136 _config_id += "_";
137 _config_id += support::cpp11::to_string(input1->info()->dimension(1));
138 _config_id += "_";
139 _config_id += support::cpp11::to_string(input2->info()->dimension(0));
140 _config_id += "_";
141 _config_id += support::cpp11::to_string(input2->info()->dimension(1));
142 _config_id += "_";
143 _config_id += support::cpp11::to_string(input3->info()->dimension(0));
144 _config_id += "_";
145 _config_id += support::cpp11::to_string(input3->info()->dimension(1));
146 _config_id += "_";
147 _config_id += support::cpp11::to_string(input4->info()->dimension(0));
148 _config_id += "_";
149 _config_id += support::cpp11::to_string(input4->info()->dimension(1));
150}
151
152void CLWidthConcatenate4TensorsKernel::run(const Window &window, cl::CommandQueue &queue)
153{
154 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
155 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
156
157 Window slice = window.first_slice_window_4D();
158
159 do
160 {
161 unsigned int idx = 0;
162 add_4D_tensor_argument(idx, _input1, slice);
163 add_4D_tensor_argument(idx, _input2, slice);
164 add_4D_tensor_argument(idx, _input3, slice);
165 add_4D_tensor_argument(idx, _input4, slice);
166 add_4D_tensor_argument(idx, _output, slice);
167 enqueue(queue, *this, window, lws_hint());
168 }
169 while(window.slide_window_slice_4D(slice));
170}
171} // namespace arm_compute