blob: 9a2918d12f88faaaa330bb082e51ce8df935cef7 [file] [log] [blame]
Gian Marco Iodicee7510622019-06-03 17:28:17 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2019-2020 Arm Limited.
Gian Marco Iodicee7510622019-06-03 17:28:17 +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 */
24#include "arm_compute/core/CL/kernels/CLGEMMLowpMatrixMultiplyNativeKernel.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/ICLTensor.h"
30#include "arm_compute/core/CL/OpenCL.h"
31#include "arm_compute/core/Error.h"
32#include "arm_compute/core/Helpers.h"
33#include "arm_compute/core/TensorInfo.h"
34#include "arm_compute/core/Types.h"
35#include "arm_compute/core/Utils.h"
36#include "arm_compute/core/Validate.h"
37#include "arm_compute/core/Window.h"
38#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000039#include "support/StringSupport.h"
Gian Marco Iodicee7510622019-06-03 17:28:17 +010040
41#include <cstddef>
42#include <cstdint>
43#include <tuple>
44
45namespace arm_compute
46{
47using namespace misc::shape_calculator;
48
Gian Marco Iodicee7510622019-06-03 17:28:17 +010049namespace
50{
51using ElementsProcessed = Steps;
52
53Status validate_arguments(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output, const GEMMLHSMatrixInfo &lhs_info, const GEMMRHSMatrixInfo &rhs_info,
54 const GEMMReshapeInfo &gemm_info)
55{
56 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input0, input1, output);
Manuel Bottini959c26d2019-12-02 16:22:35 +000057 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
SiCong Lia208a802020-05-12 15:46:29 +010058 if(input0->data_type() == DataType::QASYMM8)
59 {
60 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1);
61 }
62 else
63 {
Sheri Zhang42550c02020-07-06 13:48:11 +010064 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 1, DataType::QASYMM8, DataType::QSYMM8, DataType::QASYMM8_SIGNED, DataType::QSYMM8_PER_CHANNEL);
SiCong Lia208a802020-05-12 15:46:29 +010065 }
Gian Marco Iodicee7510622019-06-03 17:28:17 +010066 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input0->num_dimensions() > 4, "The number of dimensions for the LHS matrix must be <= 4");
67 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input1->num_dimensions() > 3, "The number of dimensions for the RHS matrix must be <= 3");
68 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.k0 != rhs_info.k0);
69 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((lhs_info.k0 & (lhs_info.k0 - 1)) && lhs_info.k0 != 3), "Only 2,3,4,8,16 are supported for k0");
70 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.k0 > 16);
Gian Marco Iodice06be6f82019-06-24 17:47:51 +010071 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.m0 < 1 || lhs_info.m0 > 8);
Gian Marco Iodicee7510622019-06-03 17:28:17 +010072 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((rhs_info.n0 & (rhs_info.n0 - 1)) && rhs_info.n0 != 3), "Only 2,3,4,8,16 are supported for n0");
Gian Marco Iodicedd717c32020-05-28 10:22:03 +010073 ARM_COMPUTE_RETURN_ERROR_ON_MSG(rhs_info.export_to_cl_image, "Export to CLImage not supported for quantized GEMM");
Gian Marco Iodicee7510622019-06-03 17:28:17 +010074
75 const int m = gemm_info.m();
76 const int n = gemm_info.n();
77 const int k = gemm_info.k();
78
79 ARM_COMPUTE_UNUSED(m);
80 ARM_COMPUTE_UNUSED(n);
81 ARM_COMPUTE_UNUSED(k);
82
83 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(0) != static_cast<unsigned int>(k));
84 ARM_COMPUTE_RETURN_ERROR_ON(input1->dimension(0) != static_cast<unsigned int>(n));
85 ARM_COMPUTE_RETURN_ERROR_ON(input1->dimension(1) != static_cast<unsigned int>(k));
86 if(gemm_info.reinterpret_input_as_3d())
87 {
88 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(1) * input0->dimension(2) != static_cast<unsigned int>(m));
89 }
90 else
91 {
92 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(1) != static_cast<unsigned int>(m));
93 }
94
95 if(output->total_size() != 0)
96 {
97 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info));
98 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
99 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32);
100 }
101
102 return Status{};
103}
104
105std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *output, const GEMMLHSMatrixInfo &lhs_info, const GEMMRHSMatrixInfo &rhs_info,
106 const GEMMReshapeInfo &gemm_info, ElementsProcessed &num_elements_processed)
107{
108 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
109 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
110 bool reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d();
111 bool reinterpret_output_as_3d = (gemm_info.depth_output_gemm3d() != 0);
112
113 Window win{};
114 Window win_out{};
115 bool window_changed = false;
116
117 // In case both input and output have to be reinterpreted as 3D tensors,
118 // force reinterpret_output_as_3d to be false.
119 if(reinterpret_input_as_3d == reinterpret_output_as_3d)
120 {
121 reinterpret_output_as_3d = false;
122 }
123
124 // Output tensor auto initialization if not yet initialized
125 auto_init_if_empty(*output, input0->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info)).set_data_type(DataType::S32));
126
127 TensorInfo tmp_info(*output);
128
129 if(reinterpret_output_as_3d)
130 {
131 // Since the output tensor has to be reinterpreted as 3D and the execute window is based on a 2D GEMM,
132 // the window needs to be constructed on the 2D collapsed version of the tensor
133 TensorShape tmp_shape(output->tensor_shape());
134 tmp_shape.collapse(2U, 1U);
135 tmp_info.set_tensor_shape(tmp_shape);
136 }
137
138 // Configure kernel window
139 num_elems_processed_per_iteration_x = rhs_info.n0;
140 num_elems_processed_per_iteration_y = lhs_info.m0;
141
142 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
143 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
144 const int m = reinterpret_output_as_3d ? gemm_info.m() : input0->dimension(1);
145 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
146
147 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
148 win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
149
150 AccessWindowStatic input0_access(input0, 0, 0,
151 input0->dimension(0),
152 input0->dimension(1) + bottom_pad);
153 AccessWindowStatic input1_access(input1, 0, 0,
154 ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x),
155 input1->dimension(1));
156 AccessWindowStatic output_access(output, 0, 0,
157 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
158 output->dimension(1) + bottom_pad);
159
160 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
161 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
162
163 output_access.set_valid_region(win_out, ValidRegion(Coordinates(), output->tensor_shape()));
164
165 // Collapse along the Z direction
166 // This collapse needs to be here in order to tune the Z dimension of LWS
167 Window collapsed = win;
168 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(output->num_dimensions()), 2u);
169 collapsed = win.collapse(win, dimension_to_collapse);
170
171 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
172 return std::make_pair(err, collapsed);
173}
174} // namespace
175
176CLGEMMLowpMatrixMultiplyNativeKernel::CLGEMMLowpMatrixMultiplyNativeKernel()
177 : _input0(nullptr), _input1(nullptr), _output(nullptr), _slide_matrix_b(true), _reinterpret_input_as_3d(false), _reinterpret_output_as_3d(false), _use_dummy_work_items(false)
178{
179}
180
181void CLGEMMLowpMatrixMultiplyNativeKernel::configure(const ICLTensor *input0, const ICLTensor *input1, ICLTensor *output, const GEMMLHSMatrixInfo &lhs_info, const GEMMRHSMatrixInfo &rhs_info,
182 const GEMMReshapeInfo &gemm_info)
183{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100184 configure(CLKernelLibrary::get().get_compile_context(), input0, input1, output, lhs_info, rhs_info, gemm_info);
185}
186
Manuel Bottini679fc962020-04-21 16:08:53 +0100187void CLGEMMLowpMatrixMultiplyNativeKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input0, const ICLTensor *input1, ICLTensor *output, const GEMMLHSMatrixInfo &lhs_info,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100188 const GEMMRHSMatrixInfo &rhs_info,
189 const GEMMReshapeInfo &gemm_info)
190{
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100191 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
192
193 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input0->info(), input1->info(), output->info(), lhs_info, rhs_info, gemm_info));
194
195 _input0 = input0;
196 _input1 = input1;
197 _output = output;
198 _reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d();
199 _reinterpret_output_as_3d = (gemm_info.depth_output_gemm3d() != 0);
200 _use_dummy_work_items = preferred_dummy_work_items_support(CLKernelLibrary::get().get_device());
201
202 // In case both input and output have to be reinterpreted as 3D tensors,
203 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
204 if(_reinterpret_input_as_3d == _reinterpret_output_as_3d)
205 {
206 _reinterpret_input_as_3d = false;
207 _reinterpret_output_as_3d = false;
208 }
209
210 // Check if we need to slide the matrix B
211 const unsigned int num_dimensions_input0 = _input0->info()->num_dimensions();
212 _slide_matrix_b = (_input1->info()->num_dimensions() >= num_dimensions_input0);
213
214 ElementsProcessed num_elements_processed{};
215
216 // Configure kernel window
217 auto win_config = validate_and_configure_window(input0->info(), input1->info(), output->info(), lhs_info, rhs_info, gemm_info, num_elements_processed);
218 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
219 ICLKernel::configure_internal(win_config.second);
220
221 // Create build options
222 CLBuildOptions build_opts;
223 build_opts.add_option_if(_reinterpret_input_as_3d, "-DREINTERPRET_INPUT_AS_3D");
224 build_opts.add_option_if(_reinterpret_output_as_3d, "-DREINTERPRET_OUTPUT_AS_3D");
225 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(1)));
226 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DDEPTH_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(2)));
227 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
228 build_opts.add_option_if(_use_dummy_work_items, "-DDUMMY_WORK_ITEMS");
229 build_opts.add_option("-DM=" + support::cpp11::to_string(input0->info()->dimension(1)));
230 build_opts.add_option("-DN=" + support::cpp11::to_string(gemm_info.n()));
231 build_opts.add_option("-DK=" + support::cpp11::to_string(gemm_info.k()));
232 build_opts.add_option("-DM0=" + support::cpp11::to_string(lhs_info.m0));
233 build_opts.add_option("-DN0=" + support::cpp11::to_string(rhs_info.n0));
234 build_opts.add_option("-DK0=" + support::cpp11::to_string(rhs_info.k0));
Michele Di Giorgiof9179d32019-11-27 16:17:30 +0000235 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input0->info()->data_type()));
236 build_opts.add_option("-DACC_DATA_TYPE=" + get_cl_dot8_acc_type_from_data_type(input0->info()->data_type()));
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100237
238 std::string kernel_name("gemmlowp_mm_native");
239
240 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100241 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100242
243 // Set config_id for enabling LWS tuning
244 _config_id = kernel_name;
245 _config_id += "_";
246 _config_id += dot8_supported(CLKernelLibrary::get().get_device()) ? "_dot8" : "";
247 _config_id += "_";
248 _config_id += (_reinterpret_input_as_3d ? "3di_" : "");
249 _config_id += (_reinterpret_output_as_3d ? "3do_" : "");
250 _config_id += support::cpp11::to_string(output->info()->dimension(1));
251 _config_id += "_";
252 _config_id += support::cpp11::to_string(output->info()->dimension(0));
253 _config_id += "_";
254 _config_id += support::cpp11::to_string(gemm_info.k());
255 _config_id += "_";
256 _config_id += support::cpp11::to_string(output->info()->dimension(2));
257 _config_id += "_";
258 _config_id += support::cpp11::to_string(lhs_info.m0);
259 _config_id += "_";
260 _config_id += support::cpp11::to_string(rhs_info.n0);
261 _config_id += "_";
262 _config_id += support::cpp11::to_string(lhs_info.k0);
263}
264
265Status CLGEMMLowpMatrixMultiplyNativeKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output, const GEMMLHSMatrixInfo &lhs_info,
266 const GEMMRHSMatrixInfo &rhs_info, const GEMMReshapeInfo &gemm_info)
267{
268 ElementsProcessed num_elements_processed{};
269 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, output, lhs_info, rhs_info, gemm_info));
270 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input0->clone().get(),
271 input1->clone().get(),
272 output->clone().get(),
273 lhs_info,
274 rhs_info,
275 gemm_info,
276 num_elements_processed)
277 .first);
278
279 return Status{};
280}
281
282void CLGEMMLowpMatrixMultiplyNativeKernel::run(const Window &window, cl::CommandQueue &queue)
283{
284 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
285 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
286
287 if(_input1->info()->num_dimensions() < 3)
288 {
289 // The stride_z for matrix B must be zero if we do not slice
290 ARM_COMPUTE_ERROR_ON(_input1->info()->strides_in_bytes()[3] != 0);
291 }
292
293 Window slice = window.first_slice_window_3D();
294 Window slice_matrix_b = slice;
295
296 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
297 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
298
299 if(_reinterpret_input_as_3d)
300 {
301 // Pass bottom paddings to the kernel if the input has to be reinterpreted as 3D tensor
302 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3;
303 const unsigned int total_cross_plane_pad = _input0->info()->padding().top + _input0->info()->padding().bottom;
304 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
305 }
306
307 if(_reinterpret_output_as_3d)
308 {
309 // Pass bottom paddings to the kernel if the output has to be reinterpreted as 3D tensor
310 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3 + (_reinterpret_input_as_3d ? 1 : 0);
311 const unsigned int total_cross_plane_pad = _output->info()->padding().top + _output->info()->padding().bottom;
312 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
313 }
314
315 do
316 {
317 Window slice_b = slice;
318 // Don't slice matrix B along the z dimension if matrix B has just 2 dimensions and matrix A more than 2
319 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
320 if(!_slide_matrix_b)
321 {
322 slice_b = slice_matrix_b;
323 }
324
325 unsigned int idx = 0;
326 add_2D_tensor_argument(idx, _input0, slice);
327 add_2D_tensor_argument(idx, _input1, slice_b);
328 add_2D_tensor_argument(idx, _output, slice);
329 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input0->info()->strides_in_bytes()[2]));
330 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input1->info()->strides_in_bytes()[2]));
331 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[2]));
332 enqueue(queue, *this, slice, lws_hint(), _use_dummy_work_items);
333 }
334 while(window.slide_window_slice_3D(slice));
335}
Matthew Bentham758b5ba2020-03-05 23:37:48 +0000336} // namespace arm_compute