blob: 56b92a3d41b0c4a20666eee9cc02215c620f26a5 [file] [log] [blame]
Gian Marco Iodicedb63b9c2019-01-17 09:47:04 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2019-2020 Arm Limited.
Gian Marco Iodicedb63b9c2019-01-17 09:47:04 +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/CLGEMMLowpMatrixMultiplyReshapedKernel.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 Iodicedb63b9c2019-01-17 09:47:04 +000040
41#include <cstddef>
42#include <cstdint>
43#include <tuple>
44
Gian Marco Iodicedb63b9c2019-01-17 09:47:04 +000045namespace arm_compute
46{
Michele Di Giorgiof9179d32019-11-27 16:17:30 +000047using namespace misc::shape_calculator;
Gian Marco Iodicedb63b9c2019-01-17 09:47:04 +000048
49namespace
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);
Sheri Zhang28287af2020-02-25 14:13:54 +000057 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
Gian Marco Iodicedb63b9c2019-01-17 09:47:04 +000058 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1);
59 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input0->num_dimensions() > 4, "The number of dimensions for the LHS matrix must be <= 4");
60 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input1->num_dimensions() > 3, "The number of dimensions for the RHS matrix must be <= 3");
61 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.transpose);
62 ARM_COMPUTE_RETURN_ERROR_ON(!rhs_info.transpose);
63 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.k0 != rhs_info.k0);
64 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");
65 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.k0 > 16);
66 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.m0 < 2 || lhs_info.m0 > 8);
67 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 +010068 ARM_COMPUTE_RETURN_ERROR_ON_MSG(rhs_info.export_to_cl_image, "Export to CLImage not supported for quantized GEMM");
Gian Marco Iodicedb63b9c2019-01-17 09:47:04 +000069
70 const int m = gemm_info.m();
71 const int n = gemm_info.n();
72 const int k = gemm_info.k();
73
74 TensorShape tensor_shape0{ input0->tensor_shape() };
75 tensor_shape0.set(0, k);
76 tensor_shape0.set(1, m);
77
78 TensorShape tensor_shape1{ input1->tensor_shape() };
79 tensor_shape1.set(0, n);
80 tensor_shape1.set(1, k);
81
82 const TensorInfo tensor_info0 = input0->clone()->set_tensor_shape(tensor_shape0);
83 const TensorInfo tensor_info1 = input1->clone()->set_tensor_shape(tensor_shape1);
84
85 const TensorInfo tensor_info_reshaped0 = input0->clone()->set_tensor_shape(compute_lhs_reshaped_shape(tensor_info0, lhs_info));
86 const TensorInfo tensor_info_reshaped1 = input1->clone()->set_tensor_shape(compute_rhs_reshaped_shape(tensor_info1, rhs_info));
87
88 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input0, &tensor_info_reshaped0);
89 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input1, &tensor_info_reshaped1);
90
91 if(output->total_size() != 0)
92 {
93 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info));
94 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
95 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32);
96 }
97
98 return Status{};
99}
100
101std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *output, const GEMMLHSMatrixInfo &lhs_info, const GEMMRHSMatrixInfo &rhs_info,
102 const GEMMReshapeInfo &gemm_info, ElementsProcessed &num_elements_processed)
103{
104 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
105 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
106 bool reinterpret_output_as_3d = (gemm_info.depth_output_gemm3d() != 0);
107
108 Window win{};
109 Window win_out{};
110 bool window_changed = false;
111
112 // Output tensor auto initialization if not yet initialized
113 auto_init_if_empty(*output, input0->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info)).set_data_type(DataType::S32));
114
115 TensorInfo tmp_info(*output);
116
117 if(reinterpret_output_as_3d)
118 {
119 // Since the output tensor has to be reinterpreted as 3D and the execute window is based on a 2D GEMM,
120 // the window needs to be constructed on the 2D collapsed version of the tensor
121 TensorShape tmp_shape(output->tensor_shape());
122 tmp_shape.collapse(2U, 1U);
123 tmp_info.set_tensor_shape(tmp_shape);
124 }
125
126 // Configure kernel window
127 num_elems_processed_per_iteration_x = rhs_info.n0;
128 num_elems_processed_per_iteration_y = lhs_info.m0;
129
130 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
131 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
132 const int m = gemm_info.m();
133 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
134
135 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
136 win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
137
138 AccessWindowStatic input0_access(input0, 0, 0,
139 ceil_to_multiple(input0->dimension(0), num_elems_processed_per_iteration_y),
140 input0->dimension(1));
141 AccessWindowStatic input1_access(input1, 0, 0,
142 ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x),
143 input1->dimension(1));
144 AccessWindowStatic output_access(output, 0, 0,
145 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
146 output->dimension(1) + bottom_pad);
147
148 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
149 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
150
151 output_access.set_valid_region(win_out, ValidRegion(Coordinates(0, 0), output->tensor_shape()));
152
153 // Collapse along the Z direction
154 // This collapse needs to be here in order to tune the Z dimension of LWS
155 Window collapsed = win;
156 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(output->num_dimensions()), 2u);
157 collapsed = win.collapse(win, dimension_to_collapse);
158
159 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
160 return std::make_pair(err, collapsed);
161}
162} // namespace
163
164CLGEMMLowpMatrixMultiplyReshapedKernel::CLGEMMLowpMatrixMultiplyReshapedKernel()
Gian Marco Iodiceb0c50372019-03-15 10:13:05 +0000165 : _input0(nullptr), _input1(nullptr), _output(nullptr), _slide_matrix_b(true), _reinterpret_output_as_3d(false), _k(1), _use_dummy_work_items(false)
Gian Marco Iodicedb63b9c2019-01-17 09:47:04 +0000166{
167}
168
169void CLGEMMLowpMatrixMultiplyReshapedKernel::configure(const ICLTensor *input0, const ICLTensor *input1, ICLTensor *output, const GEMMLHSMatrixInfo &lhs_info, const GEMMRHSMatrixInfo &rhs_info,
170 const GEMMReshapeInfo &gemm_info)
171{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100172 configure(CLKernelLibrary::get().get_compile_context(), input0, input1, output, lhs_info, rhs_info, gemm_info);
173}
174
Manuel Bottini679fc962020-04-21 16:08:53 +0100175void CLGEMMLowpMatrixMultiplyReshapedKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input0, const ICLTensor *input1, ICLTensor *output, const GEMMLHSMatrixInfo &lhs_info,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100176 const GEMMRHSMatrixInfo &rhs_info,
177 const GEMMReshapeInfo &gemm_info)
178{
Gian Marco Iodicedb63b9c2019-01-17 09:47:04 +0000179 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
180
181 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input0->info(), input1->info(), output->info(), lhs_info, rhs_info, gemm_info));
182
183 _input0 = input0;
184 _input1 = input1;
185 _output = output;
186 _reinterpret_output_as_3d = (gemm_info.depth_output_gemm3d() != 0);
187 _k = gemm_info.k();
Gian Marco Iodiceb0c50372019-03-15 10:13:05 +0000188 _use_dummy_work_items = preferred_dummy_work_items_support(CLKernelLibrary::get().get_device());
Gian Marco Iodicedb63b9c2019-01-17 09:47:04 +0000189
190 // Check if we need to slide the matrix B
191 const unsigned int num_dimensions_input0 = _input0->info()->num_dimensions();
192 _slide_matrix_b = (_input1->info()->num_dimensions() >= num_dimensions_input0);
193
194 ElementsProcessed num_elements_processed{};
195
196 // Configure kernel window
197 auto win_config = validate_and_configure_window(input0->info(), input1->info(), output->info(), lhs_info, rhs_info, gemm_info, num_elements_processed);
198 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
199 ICLKernel::configure_internal(win_config.second);
200
201 // Create build options
202 CLBuildOptions build_opts;
203 build_opts.add_option_if(_reinterpret_output_as_3d, "-DREINTERPRET_OUTPUT_AS_3D");
204 build_opts.add_option_if(_reinterpret_output_as_3d, "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(1)));
205 build_opts.add_option_if(_reinterpret_output_as_3d, "-DDEPTH_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(2)));
206 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
207 build_opts.add_option_if(lhs_info.interleave, "-DLHS_INTERLEAVE");
208 build_opts.add_option_if(rhs_info.interleave, "-DRHS_INTERLEAVE");
Gian Marco Iodiceb0c50372019-03-15 10:13:05 +0000209 build_opts.add_option_if(_use_dummy_work_items, "-DDUMMY_WORK_ITEMS");
210 build_opts.add_option("-DM=" + support::cpp11::to_string(gemm_info.m()));
211 build_opts.add_option("-DN=" + support::cpp11::to_string(gemm_info.n()));
Gian Marco Iodicedb63b9c2019-01-17 09:47:04 +0000212 build_opts.add_option("-DM0=" + support::cpp11::to_string(lhs_info.m0));
213 build_opts.add_option("-DN0=" + support::cpp11::to_string(rhs_info.n0));
214 build_opts.add_option("-DK0=" + support::cpp11::to_string(lhs_info.k0));
215 build_opts.add_option("-DV0=" + support::cpp11::to_string(lhs_info.v0));
216 build_opts.add_option("-DH0=" + support::cpp11::to_string(rhs_info.h0));
Michele Di Giorgiof9179d32019-11-27 16:17:30 +0000217 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input0->info()->data_type()));
218 build_opts.add_option("-DACC_DATA_TYPE=" + get_cl_dot8_acc_type_from_data_type(input0->info()->data_type()));
Gian Marco Iodicedb63b9c2019-01-17 09:47:04 +0000219
220 std::string kernel_name("gemmlowp_mm_reshaped_");
221 kernel_name += lhs_info.transpose ? "lhs_t_" : "lhs_nt_";
222 kernel_name += rhs_info.transpose ? "rhs_t" : "rhs_nt";
Gian Marco Iodicedb63b9c2019-01-17 09:47:04 +0000223
224 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100225 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodicedb63b9c2019-01-17 09:47:04 +0000226
227 // Set config_id for enabling LWS tuning
228 _config_id = kernel_name;
229 _config_id += "_";
Gian Marco Iodice43a129e2019-05-14 10:14:08 +0100230 _config_id += dot8_supported(CLKernelLibrary::get().get_device()) ? "_dot8" : "";
231 _config_id += "_";
Gian Marco Iodicedb63b9c2019-01-17 09:47:04 +0000232 _config_id += (_reinterpret_output_as_3d ? "3do_" : "");
233 _config_id += support::cpp11::to_string(output->info()->dimension(1));
234 _config_id += "_";
235 _config_id += support::cpp11::to_string(output->info()->dimension(0));
236 _config_id += "_";
237 _config_id += support::cpp11::to_string(gemm_info.k());
238 _config_id += "_";
239 _config_id += support::cpp11::to_string(output->info()->dimension(2));
240 _config_id += "_";
241 _config_id += support::cpp11::to_string(lhs_info.m0);
242 _config_id += "_";
243 _config_id += support::cpp11::to_string(rhs_info.n0);
244 _config_id += "_";
245 _config_id += support::cpp11::to_string(lhs_info.k0);
246 _config_id += "_";
247 _config_id += support::cpp11::to_string(lhs_info.v0);
248 _config_id += "_";
249 _config_id += support::cpp11::to_string(rhs_info.h0);
250 _config_id += "_";
251 _config_id += support::cpp11::to_string(lhs_info.interleave);
252 _config_id += "_";
253 _config_id += support::cpp11::to_string(rhs_info.interleave);
254}
255
256Status CLGEMMLowpMatrixMultiplyReshapedKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output, const GEMMLHSMatrixInfo &lhs_info,
257 const GEMMRHSMatrixInfo &rhs_info, const GEMMReshapeInfo &gemm_info)
258{
259 ElementsProcessed num_elements_processed{};
260 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, output, lhs_info, rhs_info, gemm_info));
261 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input0->clone().get(),
262 input1->clone().get(),
263 output->clone().get(),
264 lhs_info,
265 rhs_info,
266 gemm_info,
267 num_elements_processed)
268 .first);
269
270 return Status{};
271}
272
273void CLGEMMLowpMatrixMultiplyReshapedKernel::run(const Window &window, cl::CommandQueue &queue)
274{
275 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
276 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
277
278 if(_input1->info()->num_dimensions() < 3)
279 {
280 // The stride_z for matrix B must be zero if we do not slice
281 ARM_COMPUTE_ERROR_ON(_input1->info()->strides_in_bytes()[3] != 0);
282 }
283
284 Window slice = window.first_slice_window_3D();
285 Window slice_matrix_b = slice;
286
287 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
288 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
289
290 if(_reinterpret_output_as_3d)
291 {
292 // Pass bottom paddings to the kernel if the output has to be reinterpreted as 3D tensor
293 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 4;
294 const unsigned int total_cross_plane_pad = _output->info()->padding().top + _output->info()->padding().bottom;
295 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
296 }
297
298 do
299 {
300 Window slice_b = slice;
301 // Don't slice matrix B along the z dimension if matrix B has just 2 dimensions and matrix A more than 2
302 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
303 if(!_slide_matrix_b)
304 {
305 slice_b = slice_matrix_b;
306 }
307
308 unsigned int idx = 0;
309 add_2D_tensor_argument(idx, _input0, slice);
310 add_2D_tensor_argument(idx, _input1, slice_b);
311 add_2D_tensor_argument(idx, _output, slice);
312 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_k));
313 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input0->info()->strides_in_bytes()[2]));
314 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input1->info()->strides_in_bytes()[2]));
315 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[2]));
Gian Marco Iodiceb0c50372019-03-15 10:13:05 +0000316 enqueue(queue, *this, slice, lws_hint(), _use_dummy_work_items);
Gian Marco Iodicedb63b9c2019-01-17 09:47:04 +0000317 }
318 while(window.slide_window_slice_3D(slice));
Michele Di Giorgiof9179d32019-11-27 16:17:30 +0000319}
Sheri Zhang28287af2020-02-25 14:13:54 +0000320} // namespace arm_compute