blob: eca24169b91335c4d297971bfa3efb9079ea6354 [file] [log] [blame]
Gian Marco Iodice62251f72019-03-11 16:07:12 +00001/*
2 * Copyright (c) 2019 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/CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel.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"
39#include "support/ToolchainSupport.h"
40
41#include <cstddef>
42#include <cstdint>
43#include <tuple>
44
45using namespace arm_compute::misc::shape_calculator;
46
47namespace arm_compute
48{
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);
57 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::QASYMM8);
58 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_MSG((((rhs_info.k0 & (rhs_info.k0 - 1)) && rhs_info.k0 != 3) || (rhs_info.k0 > 16)), "Only 2,3,4,8,16 are supported for k0");
62 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.m0 < 1 || lhs_info.m0 > 8);
63 ARM_COMPUTE_RETURN_ERROR_ON_MSG((((rhs_info.n0 & (rhs_info.n0 - 1)) && rhs_info.n0 != 3) || rhs_info.n0 > 16), "Only 2,3,4,8,16 are supported for n0");
64
65 const int m = gemm_info.m();
66 const int n = gemm_info.n();
67 const int k = gemm_info.k();
68
Gian Marco Iodice62251f72019-03-11 16:07:12 +000069 TensorShape tensor_shape1{ input1->tensor_shape() };
70 tensor_shape1.set(0, n);
71 tensor_shape1.set(1, k);
72
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +010073 const TensorInfo tensor_info1 = input1->clone()->set_tensor_shape(tensor_shape1);
Gian Marco Iodice62251f72019-03-11 16:07:12 +000074 const TensorInfo tensor_info_reshaped1 = input1->clone()->set_tensor_shape(compute_rhs_reshaped_shape(tensor_info1, rhs_info));
75
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +010076 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(0) != static_cast<unsigned int>(k));
77 if(gemm_info.reinterpret_input_as_3d())
78 {
79 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(1) * input0->dimension(2) != static_cast<unsigned int>(m));
80 }
81 else
82 {
83 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(1) != static_cast<unsigned int>(m));
84 }
Gian Marco Iodice62251f72019-03-11 16:07:12 +000085 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input1, &tensor_info_reshaped1);
86
87 if(output->total_size() != 0)
88 {
89 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info));
90 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
91 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32);
92 }
93
94 return Status{};
95}
96
97std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *output, const GEMMLHSMatrixInfo &lhs_info, const GEMMRHSMatrixInfo &rhs_info,
98 const GEMMReshapeInfo &gemm_info, ElementsProcessed &num_elements_processed)
99{
100 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
101 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +0100102 bool reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d();
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000103 bool reinterpret_output_as_3d = (gemm_info.depth_output_gemm3d() != 0);
104
105 Window win{};
106 Window win_out{};
107 bool window_changed = false;
108
109 // In case both input and output have to be reinterpreted as 3D tensors,
110 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +0100111 if(reinterpret_input_as_3d == reinterpret_output_as_3d)
112 {
113 reinterpret_output_as_3d = false;
114 }
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000115
116 // Output tensor auto initialization if not yet initialized
117 auto_init_if_empty(*output, input0->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info)).set_data_type(DataType::S32));
118
119 TensorInfo tmp_info(*output);
120
121 if(reinterpret_output_as_3d)
122 {
123 // Since the output tensor has to be reinterpreted as 3D and the execute window is based on a 2D GEMM,
124 // the window needs to be constructed on the 2D collapsed version of the tensor
125 TensorShape tmp_shape(output->tensor_shape());
126 tmp_shape.collapse(2U, 1U);
127 tmp_info.set_tensor_shape(tmp_shape);
128 }
129
130 // Configure kernel window
131 num_elems_processed_per_iteration_x = rhs_info.n0;
132 num_elems_processed_per_iteration_y = lhs_info.m0;
133
134 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
135 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
136 const int m = gemm_info.m();
137 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
138
139 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
140 win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
141
142 AccessWindowStatic input0_access(input0, 0, 0,
143 ceil_to_multiple(input0->dimension(0), lhs_info.k0),
144 input0->dimension(1) + bottom_pad);
145 AccessWindowStatic input1_access(input1, 0, 0,
146 input1->dimension(0),
147 input1->dimension(1));
148 AccessWindowStatic output_access(output, 0, 0,
149 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
150 output->dimension(1) + bottom_pad);
151
152 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
153 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
154
Gian Marco Iodice2ec6c1e2019-04-09 12:03:05 +0100155 output_access.set_valid_region(win_out, ValidRegion(Coordinates(), output->tensor_shape()));
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000156
157 // Collapse along the Z direction
158 // This collapse needs to be here in order to tune the Z dimension of LWS
159 Window collapsed = win;
160 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(output->num_dimensions()), 2u);
161 collapsed = win.collapse(win, dimension_to_collapse);
162
163 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
164 return std::make_pair(err, collapsed);
165}
166} // namespace
167
168CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel::CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel()
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +0100169 : _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)
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000170{
171}
172
173void CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel::configure(const ICLTensor *input0, const ICLTensor *input1, ICLTensor *output, const GEMMLHSMatrixInfo &lhs_info, const GEMMRHSMatrixInfo &rhs_info,
174 const GEMMReshapeInfo &gemm_info)
175{
176 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
177
178 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input0->info(), input1->info(), output->info(), lhs_info, rhs_info, gemm_info));
179
180 _input0 = input0;
181 _input1 = input1;
182 _output = output;
183 _reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d();
184 _reinterpret_output_as_3d = (gemm_info.depth_output_gemm3d() != 0);
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +0100185 _use_dummy_work_items = preferred_dummy_work_items_support(CLKernelLibrary::get().get_device());
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000186
187 // In case both input and output have to be reinterpreted as 3D tensors,
188 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +0100189 if(_reinterpret_input_as_3d == _reinterpret_output_as_3d)
190 {
191 _reinterpret_input_as_3d = false;
192 _reinterpret_output_as_3d = false;
193 }
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000194
195 // Check if we need to slide the matrix B
196 const unsigned int num_dimensions_input0 = _input0->info()->num_dimensions();
197 _slide_matrix_b = (_input1->info()->num_dimensions() >= num_dimensions_input0);
198
199 ElementsProcessed num_elements_processed{};
200
201 // Configure kernel window
202 auto win_config = validate_and_configure_window(input0->info(), input1->info(), output->info(), lhs_info, rhs_info, gemm_info, num_elements_processed);
203 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
204 ICLKernel::configure_internal(win_config.second);
205
206 // Create build options
207 CLBuildOptions build_opts;
208 build_opts.add_option_if(_reinterpret_input_as_3d, "-DREINTERPRET_INPUT_AS_3D");
209 build_opts.add_option_if(_reinterpret_output_as_3d, "-DREINTERPRET_OUTPUT_AS_3D");
210 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(1)));
211 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DDEPTH_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(2)));
212 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
213 build_opts.add_option_if(rhs_info.interleave, "-DRHS_INTERLEAVE");
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +0100214 build_opts.add_option_if(_use_dummy_work_items, "-DDUMMY_WORK_ITEMS");
215 build_opts.add_option("-DM=" + support::cpp11::to_string(input0->info()->dimension(1)));
216 build_opts.add_option("-DN=" + support::cpp11::to_string(gemm_info.n()));
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000217 build_opts.add_option("-DK=" + support::cpp11::to_string(gemm_info.k()));
218 build_opts.add_option("-DM0=" + support::cpp11::to_string(lhs_info.m0));
219 build_opts.add_option("-DN0=" + support::cpp11::to_string(rhs_info.n0));
220 build_opts.add_option("-DK0=" + support::cpp11::to_string(rhs_info.k0));
221 build_opts.add_option("-DH0=" + support::cpp11::to_string(rhs_info.h0));
222
223 std::string kernel_name("gemmlowp_mm_reshaped_only_rhs_");
224 kernel_name += rhs_info.transpose ? "t" : "nt";
225
226 // Create kernel
227 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
228
229 // Set config_id for enabling LWS tuning
230 _config_id = kernel_name;
231 _config_id += "_";
232 _config_id += (_reinterpret_input_as_3d ? "3di_" : "");
233 _config_id += (_reinterpret_output_as_3d ? "3do_" : "");
234 _config_id += support::cpp11::to_string(output->info()->dimension(1));
235 _config_id += "_";
236 _config_id += support::cpp11::to_string(output->info()->dimension(0));
237 _config_id += "_";
238 _config_id += support::cpp11::to_string(gemm_info.k());
239 _config_id += "_";
240 _config_id += support::cpp11::to_string(output->info()->dimension(2));
241 _config_id += "_";
242 _config_id += support::cpp11::to_string(lhs_info.m0);
243 _config_id += "_";
244 _config_id += support::cpp11::to_string(rhs_info.n0);
245 _config_id += "_";
246 _config_id += support::cpp11::to_string(rhs_info.k0);
247 _config_id += "_";
248 _config_id += support::cpp11::to_string(rhs_info.h0);
249 _config_id += "_";
250 _config_id += support::cpp11::to_string(rhs_info.interleave);
251}
252
253Status CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output, const GEMMLHSMatrixInfo &lhs_info,
254 const GEMMRHSMatrixInfo &rhs_info, const GEMMReshapeInfo &gemm_info)
255{
256 ElementsProcessed num_elements_processed{};
257 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, output, lhs_info, rhs_info, gemm_info));
258 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input0->clone().get(),
259 input1->clone().get(),
260 output->clone().get(),
261 lhs_info,
262 rhs_info,
263 gemm_info,
264 num_elements_processed)
265 .first);
266
267 return Status{};
268}
269
270void CLGEMMLowpMatrixMultiplyReshapedOnlyRHSKernel::run(const Window &window, cl::CommandQueue &queue)
271{
272 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
273 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
274
275 if(_input1->info()->num_dimensions() < 3)
276 {
277 // The stride_z for matrix B must be zero if we do not slice
278 ARM_COMPUTE_ERROR_ON(_input1->info()->strides_in_bytes()[3] != 0);
279 }
280
281 Window slice = window.first_slice_window_3D();
282 Window slice_matrix_b = slice;
283
284 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
285 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
286
287 if(_reinterpret_input_as_3d)
288 {
289 // Pass bottom paddings to the kernel if the input has to be reinterpreted as 3D tensor
290 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3;
291 const unsigned int total_cross_plane_pad = _input0->info()->padding().top + _input0->info()->padding().bottom;
292 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
293 }
294
295 if(_reinterpret_output_as_3d)
296 {
297 // Pass bottom paddings to the kernel if the output has to be reinterpreted as 3D tensor
298 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3 + (_reinterpret_input_as_3d ? 1 : 0);
299 const unsigned int total_cross_plane_pad = _output->info()->padding().top + _output->info()->padding().bottom;
300 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
301 }
302
303 do
304 {
305 Window slice_b = slice;
306 // Don't slice matrix B along the z dimension if matrix B has just 2 dimensions and matrix A more than 2
307 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
308 if(!_slide_matrix_b)
309 {
310 slice_b = slice_matrix_b;
311 }
312
313 unsigned int idx = 0;
314 add_2D_tensor_argument(idx, _input0, slice);
315 add_2D_tensor_argument(idx, _input1, slice_b);
316 add_2D_tensor_argument(idx, _output, slice);
317 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input0->info()->strides_in_bytes()[2]));
318 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input1->info()->strides_in_bytes()[2]));
319 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[2]));
Gian Marco Iodice86cfffe2019-04-02 11:02:20 +0100320 enqueue(queue, *this, slice, lws_hint(), _use_dummy_work_items);
Gian Marco Iodice62251f72019-03-11 16:07:12 +0000321 }
322 while(window.slide_window_slice_3D(slice));
323}
324} // namespace arm_compute