blob: e0d925dfb2981b36faa232bf1c193c6320ea4b31 [file] [log] [blame]
Gian Marco Iodicee7510622019-06-03 17:28:17 +01001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2019-2023 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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/gpu/cl/kernels/ClGemmLowpMatrixMultiplyNativeKernel.h"
Gian Marco Iodicee7510622019-06-03 17:28:17 +010025
Gian Marco Iodicee7510622019-06-03 17:28:17 +010026#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/CL/OpenCL.h"
Gian Marco Iodicee7510622019-06-03 17:28:17 +010030#include "arm_compute/core/Helpers.h"
31#include "arm_compute/core/TensorInfo.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010032#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000033#include "arm_compute/core/utils/StringUtils.h"
Gian Marco Iodicee7510622019-06-03 17:28:17 +010034#include "arm_compute/core/Validate.h"
Georgios Pinitas4a578b92021-06-25 12:13:49 +010035
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010036#include "src/core/AccessWindowStatic.h"
37#include "src/core/helpers/AutoConfiguration.h"
38#include "src/core/helpers/WindowHelpers.h"
Georgios Pinitas4a578b92021-06-25 12:13:49 +010039#include "support/Cast.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000040#include "support/StringSupport.h"
Gian Marco Iodicee7510622019-06-03 17:28:17 +010041
Gian Marco Iodicee7510622019-06-03 17:28:17 +010042namespace arm_compute
43{
Georgios Pinitas4a578b92021-06-25 12:13:49 +010044namespace opencl
45{
46namespace kernels
47{
Gian Marco Iodicee7510622019-06-03 17:28:17 +010048namespace
49{
50using ElementsProcessed = Steps;
51
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010052Status validate_arguments(const ITensorInfo *src0,
53 const ITensorInfo *src1,
54 const ITensorInfo *dst,
55 const GEMMLHSMatrixInfo &lhs_info,
56 const GEMMRHSMatrixInfo &rhs_info,
57 const GEMMReshapeInfo &gemm_info)
Gian Marco Iodicee7510622019-06-03 17:28:17 +010058{
Georgios Pinitas4a578b92021-06-25 12:13:49 +010059 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src0, src1, dst);
60 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(src0, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010061 if (src0->data_type() == DataType::QASYMM8)
SiCong Lia208a802020-05-12 15:46:29 +010062 {
Georgios Pinitas4a578b92021-06-25 12:13:49 +010063 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src0, src1);
SiCong Lia208a802020-05-12 15:46:29 +010064 }
65 else
66 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010067 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(src1, 1, DataType::QASYMM8, DataType::QSYMM8,
68 DataType::QASYMM8_SIGNED, DataType::QSYMM8_PER_CHANNEL);
SiCong Lia208a802020-05-12 15:46:29 +010069 }
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010070 ARM_COMPUTE_RETURN_ERROR_ON_MSG(src0->num_dimensions() > 4,
71 "The number of dimensions for the LHS matrix must be <= 4");
72 ARM_COMPUTE_RETURN_ERROR_ON_MSG(src1->num_dimensions() > 3,
73 "The number of dimensions for the RHS matrix must be <= 3");
Gian Marco Iodicee7510622019-06-03 17:28:17 +010074 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.k0 != rhs_info.k0);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010075 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((lhs_info.k0 & (lhs_info.k0 - 1)) && lhs_info.k0 != 3),
76 "Only 2,3,4,8,16 are supported for k0");
Gian Marco Iodicee7510622019-06-03 17:28:17 +010077 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.k0 > 16);
Gian Marco Iodice06be6f82019-06-24 17:47:51 +010078 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.m0 < 1 || lhs_info.m0 > 8);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010079 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((rhs_info.n0 & (rhs_info.n0 - 1)) && rhs_info.n0 != 3),
80 "Only 2,3,4,8,16 are supported for n0");
Gian Marco Iodicedd717c32020-05-28 10:22:03 +010081 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 +010082
83 const int m = gemm_info.m();
84 const int n = gemm_info.n();
85 const int k = gemm_info.k();
86
87 ARM_COMPUTE_UNUSED(m);
88 ARM_COMPUTE_UNUSED(n);
89 ARM_COMPUTE_UNUSED(k);
90
Georgios Pinitas4a578b92021-06-25 12:13:49 +010091 ARM_COMPUTE_RETURN_ERROR_ON(src0->dimension(0) != static_cast<unsigned int>(k));
92 ARM_COMPUTE_RETURN_ERROR_ON(src1->dimension(0) != static_cast<unsigned int>(n));
93 ARM_COMPUTE_RETURN_ERROR_ON(src1->dimension(1) != static_cast<unsigned int>(k));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010094 if (gemm_info.reinterpret_input_as_3d())
Gian Marco Iodicee7510622019-06-03 17:28:17 +010095 {
Georgios Pinitas4a578b92021-06-25 12:13:49 +010096 ARM_COMPUTE_RETURN_ERROR_ON(src0->dimension(1) * src0->dimension(2) != static_cast<unsigned int>(m));
Gian Marco Iodicee7510622019-06-03 17:28:17 +010097 }
98 else
99 {
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100100 ARM_COMPUTE_RETURN_ERROR_ON(src0->dimension(1) != static_cast<unsigned int>(m));
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100101 }
102
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100103 if (dst->total_size() != 0)
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100104 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100105 const TensorInfo tensor_info_dst =
106 dst->clone()->set_tensor_shape(misc::shape_calculator::compute_mm_shape(*src0, *src1, gemm_info));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100107 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(dst, &tensor_info_dst);
108 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(dst, 1, DataType::S32);
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100109 }
110
111 return Status{};
112}
113
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100114std::pair<Status, Window> validate_and_configure_window(const ITensorInfo *src0,
115 ITensorInfo *src1,
116 ITensorInfo *dst,
117 const GEMMLHSMatrixInfo &lhs_info,
118 const GEMMRHSMatrixInfo &rhs_info,
119 const GEMMReshapeInfo &gemm_info,
120 ElementsProcessed &num_elements_processed)
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100121{
122 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
123 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
124 bool reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d();
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100125 bool reinterpret_dst_as_3d = (gemm_info.depth_output_gemm3d() != 0);
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100126
127 Window win{};
Michele Di Giorgio27d92fd2020-10-27 12:44:17 +0000128 bool window_changed = false;
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100129
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100130 // In case both input and dst have to be reinterpreted as 3D tensors,
131 // force reinterpret_dst_as_3d to be false.
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100132 if (reinterpret_input_as_3d == reinterpret_dst_as_3d)
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100133 {
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100134 reinterpret_dst_as_3d = false;
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100135 }
136
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100137 // dst tensor auto initialization if not yet initialized
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100138 auto_init_if_empty(*dst, src0->clone()
139 ->set_tensor_shape(misc::shape_calculator::compute_mm_shape(*src0, *src1, gemm_info))
140 .set_data_type(DataType::S32));
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100141
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100142 TensorInfo tmp_info(*dst);
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100143
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100144 if (reinterpret_dst_as_3d)
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100145 {
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100146 // Since the dst tensor has to be reinterpreted as 3D and the execute window is based on a 2D GEMM,
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100147 // the window needs to be constructed on the 2D collapsed version of the tensor
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100148 TensorShape tmp_shape(dst->tensor_shape());
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100149 tmp_shape.collapse(2U, 1U);
150 tmp_info.set_tensor_shape(tmp_shape);
151 }
152
153 // Configure kernel window
154 num_elems_processed_per_iteration_x = rhs_info.n0;
155 num_elems_processed_per_iteration_y = lhs_info.m0;
156
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100157 win =
158 calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
Michele Di Giorgio27d92fd2020-10-27 12:44:17 +0000159
160 // RHS matrix still needs padding on the X
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100161 AccessWindowStatic src1_access(
162 src1, 0, 0, ceil_to_multiple(src1->dimension(0), num_elems_processed_per_iteration_x), src1->dimension(1));
Michele Di Giorgio27d92fd2020-10-27 12:44:17 +0000163
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100164 window_changed = update_window_and_padding(win, src1_access); // window used by the execute_window_loop
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100165
166 // Collapse along the Z direction
167 // This collapse needs to be here in order to tune the Z dimension of LWS
168 Window collapsed = win;
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100169 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(dst->num_dimensions()), 2u);
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100170 collapsed = win.collapse(win, dimension_to_collapse);
171
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100172 Status err =
173 (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Michele Di Giorgio27d92fd2020-10-27 12:44:17 +0000174 return std::make_pair(err, collapsed);
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100175}
176} // namespace
177
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100178ClGemmLowpMatrixMultiplyNativeKernel::ClGemmLowpMatrixMultiplyNativeKernel()
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100179{
Giorgio Arena4a95bba2021-06-28 11:00:27 +0100180 _type = CLKernelType::GEMM;
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100181}
182
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100183void ClGemmLowpMatrixMultiplyNativeKernel::configure(const CLCompileContext &compile_context,
184 const ITensorInfo *src0,
185 ITensorInfo *src1,
186 ITensorInfo *dst,
187 const GEMMLHSMatrixInfo &lhs_info,
188 const GEMMRHSMatrixInfo &rhs_info,
189 const GEMMReshapeInfo &gemm_info)
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100190{
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100191 ARM_COMPUTE_ERROR_ON_NULLPTR(src0, src1, dst);
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100192
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100193 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src0, src1, dst, lhs_info, rhs_info, gemm_info));
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100194
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100195 _reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d();
196 _reinterpret_output_as_3d = (gemm_info.depth_output_gemm3d() != 0);
197 _use_dummy_work_items = preferred_dummy_work_items_support(CLKernelLibrary::get().get_device());
198
Michele Di Giorgio27d92fd2020-10-27 12:44:17 +0000199 // We still need padding on the X dimension for the RHS matrix
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100200 auto padding_info = get_padding_info({src0, dst});
Michele Di Giorgio27d92fd2020-10-27 12:44:17 +0000201
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100202 // In case both input and dst have to be reinterpreted as 3D tensors,
203 // force reinterpret_input_as_3d and reinterpret_dst_as_3d to be false.
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100204 if (_reinterpret_input_as_3d == _reinterpret_output_as_3d)
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100205 {
206 _reinterpret_input_as_3d = false;
207 _reinterpret_output_as_3d = false;
208 }
209
210 // Check if we need to slide the matrix B
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100211 const unsigned int num_dimensions_src0 = src0->num_dimensions();
212 _slide_matrix_b = (src1->num_dimensions() >= num_dimensions_src0);
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100213
214 ElementsProcessed num_elements_processed{};
215
216 // Configure kernel window
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100217 auto win_config =
218 validate_and_configure_window(src0, src1, dst, lhs_info, rhs_info, gemm_info, num_elements_processed);
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100219 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
220 ICLKernel::configure_internal(win_config.second);
221
morgolockcf343e32020-10-12 14:00:43 +0100222 // If _reinterpret_input_as_3d = _reinterpret_output_as_3d = true,
223 // we will dispatch a batched-GEMM to reduce the complexity of the address calculation within the OpenCL kernel.
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100224 // This means that the actual m used by the kernel is given by dst->info()->dimension(1) and not by gemm_info.m
225 const unsigned int internal_m = _reinterpret_output_as_3d ? gemm_info.m() : dst->dimension(1);
morgolockcf343e32020-10-12 14:00:43 +0100226 // Calculate partial (store instead of load) M0 and partial N0 for the partial blocks at the end of a row/column if any. This is to avoid padding.
227 const unsigned int partial_store_m0 = internal_m % lhs_info.m0;
228 const unsigned int partial_store_n0 = gemm_info.n() % rhs_info.n0;
229
Michele Di Giorgio27d92fd2020-10-27 12:44:17 +0000230 // Shrink M0 to be always <= M (internal_m) to prevent out-of-bounds reads.
231 // NOTE: This might have implications on heuristics and performance
232 const unsigned int internal_m0 = std::min(internal_m, lhs_info.m0);
233
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100234 // Create build options
235 CLBuildOptions build_opts;
236 build_opts.add_option_if(_reinterpret_input_as_3d, "-DREINTERPRET_INPUT_AS_3D");
237 build_opts.add_option_if(_reinterpret_output_as_3d, "-DREINTERPRET_OUTPUT_AS_3D");
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100238 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d,
239 "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(dst->dimension(1)));
240 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d,
241 "-DDEPTH_GEMM3D=" + support::cpp11::to_string(dst->dimension(2)));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100242 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(src1->dimension(2)));
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100243 build_opts.add_option_if(_use_dummy_work_items, "-DDUMMY_WORK_ITEMS");
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100244 build_opts.add_option("-DM=" + support::cpp11::to_string(src0->dimension(1)));
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100245 build_opts.add_option("-DN=" + support::cpp11::to_string(gemm_info.n()));
246 build_opts.add_option("-DK=" + support::cpp11::to_string(gemm_info.k()));
Michele Di Giorgio27d92fd2020-10-27 12:44:17 +0000247 build_opts.add_option("-DM0=" + support::cpp11::to_string(internal_m0));
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100248 build_opts.add_option("-DN0=" + support::cpp11::to_string(rhs_info.n0));
249 build_opts.add_option("-DK0=" + support::cpp11::to_string(rhs_info.k0));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100250 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(src0->data_type()));
251 build_opts.add_option("-DACC_DATA_TYPE=" + get_cl_dot8_acc_type_from_data_type(src0->data_type()));
morgolockcf343e32020-10-12 14:00:43 +0100252 build_opts.add_option("-DPARTIAL_STORE_M0=" + support::cpp11::to_string(partial_store_m0));
253 build_opts.add_option("-DPARTIAL_STORE_N0=" + support::cpp11::to_string(partial_store_n0));
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100254 std::string kernel_name("gemmlowp_mm_native");
255
Gian Marco Iodiced11de982022-09-05 15:35:35 +0100256 // A macro guard to compile ONLY the kernel of interest
257 build_opts.add_option("-D" + upper_string(kernel_name));
258
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100259 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100260 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100261
262 // Set config_id for enabling LWS tuning
263 _config_id = kernel_name;
264 _config_id += "_";
265 _config_id += dot8_supported(CLKernelLibrary::get().get_device()) ? "_dot8" : "";
266 _config_id += "_";
267 _config_id += (_reinterpret_input_as_3d ? "3di_" : "");
268 _config_id += (_reinterpret_output_as_3d ? "3do_" : "");
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100269 _config_id += support::cpp11::to_string(dst->dimension(1));
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100270 _config_id += "_";
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100271 _config_id += support::cpp11::to_string(dst->dimension(0));
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100272 _config_id += "_";
273 _config_id += support::cpp11::to_string(gemm_info.k());
274 _config_id += "_";
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100275 _config_id += support::cpp11::to_string(dst->dimension(2));
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100276 _config_id += "_";
277 _config_id += support::cpp11::to_string(lhs_info.m0);
278 _config_id += "_";
279 _config_id += support::cpp11::to_string(rhs_info.n0);
280 _config_id += "_";
281 _config_id += support::cpp11::to_string(lhs_info.k0);
Michele Di Giorgio27d92fd2020-10-27 12:44:17 +0000282
283 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100284}
285
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100286Status ClGemmLowpMatrixMultiplyNativeKernel::validate(const ITensorInfo *src0,
287 const ITensorInfo *src1,
288 const ITensorInfo *dst,
289 const GEMMLHSMatrixInfo &lhs_info,
290 const GEMMRHSMatrixInfo &rhs_info,
291 const GEMMReshapeInfo &gemm_info)
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100292{
293 ElementsProcessed num_elements_processed{};
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100294 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src0, src1, dst, lhs_info, rhs_info, gemm_info));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100295 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(src0->clone().get(), src1->clone().get(),
296 dst->clone().get(), lhs_info, rhs_info, gemm_info,
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100297 num_elements_processed)
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100298 .first);
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100299
300 return Status{};
301}
302
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100303void ClGemmLowpMatrixMultiplyNativeKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100304{
305 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
306 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
307
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100308 const auto src0 =
309 utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_0));
310 const auto src1 =
311 utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_1));
312 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100313
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100314 if (src1->info()->num_dimensions() < 3)
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100315 {
Giorgio Arenaedc524e2021-02-10 11:54:47 +0000316 // The stride_z for matrix B must be zero if we do not slice
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100317 ARM_COMPUTE_ERROR_ON(src1->info()->strides_in_bytes()[3] != 0);
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100318 }
319
320 Window slice = window.first_slice_window_3D();
321 Window slice_matrix_b = slice;
322
323 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
324 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
325
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100326 if (_reinterpret_input_as_3d)
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100327 {
328 // Pass bottom paddings to the kernel if the input has to be reinterpreted as 3D tensor
329 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3;
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100330 const unsigned int total_cross_plane_pad = src0->info()->padding().top + src0->info()->padding().bottom;
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100331 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
332 }
333
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100334 if (_reinterpret_output_as_3d)
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100335 {
336 // Pass bottom paddings to the kernel if the output has to be reinterpreted as 3D tensor
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100337 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3 + (_reinterpret_input_as_3d ? 1 : 0);
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100338 const unsigned int total_cross_plane_pad = dst->info()->padding().top + dst->info()->padding().bottom;
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100339 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
340 }
341
342 do
343 {
344 Window slice_b = slice;
345 // Don't slice matrix B along the z dimension if matrix B has just 2 dimensions and matrix A more than 2
346 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100347 if (!_slide_matrix_b)
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100348 {
349 slice_b = slice_matrix_b;
350 }
351
352 unsigned int idx = 0;
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100353 add_2D_tensor_argument(idx, src0, slice);
354 add_2D_tensor_argument(idx, src1, slice_b);
355 add_2D_tensor_argument(idx, dst, slice);
356 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(src0->info()->strides_in_bytes()[2]));
357 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(src1->info()->strides_in_bytes()[2]));
358 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(dst->info()->strides_in_bytes()[2]));
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100359 enqueue(queue, *this, slice, lws_hint(), _use_dummy_work_items);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100360 } while (window.slide_window_slice_3D(slice));
Gian Marco Iodicee7510622019-06-03 17:28:17 +0100361}
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100362} // namespace kernels
363} // namespace opencl
Matthew Bentham758b5ba2020-03-05 23:37:48 +0000364} // namespace arm_compute