blob: b0f0e8a81fec3a9cfd5ee695eac4bab616c13659 [file] [log] [blame]
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Gian Marco Iodicebf9731e2018-12-12 10:18: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/CLGEMMMatrixMultiplyReshapedKernel.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"
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000029#include "arm_compute/core/CL/CLValidate.h"
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000030#include "arm_compute/core/CL/ICLTensor.h"
31#include "arm_compute/core/CL/OpenCL.h"
Gian Marco Iodiceed5fe692020-07-09 08:41:10 +010032#include "arm_compute/core/CL/gemm/CLGEMMHelpers.h"
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000033#include "arm_compute/core/Error.h"
34#include "arm_compute/core/Helpers.h"
35#include "arm_compute/core/TensorInfo.h"
36#include "arm_compute/core/Types.h"
37#include "arm_compute/core/Utils.h"
38#include "arm_compute/core/Validate.h"
39#include "arm_compute/core/Window.h"
Gian Marco Iodice82d9dd12019-06-10 16:45:40 +010040#include "arm_compute/core/utils/helpers/float_ops.h"
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000041#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Gian Marco Iodice781cba72020-06-19 16:56:57 +010042#include "src/core/CL/CLUtils.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000043#include "support/StringSupport.h"
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000044
45#include <cstddef>
46#include <cstdint>
47#include <tuple>
48
49using namespace arm_compute;
50using namespace arm_compute::misc::shape_calculator;
51
52namespace arm_compute
53{
54class Coordinates;
55} // namespace arm_compute
56
57namespace
58{
59using ElementsProcessed = Steps;
60
Gian Marco Iodicee16c8902019-06-14 16:11:10 +010061Status validate_arguments(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float alpha, float beta, const GEMMLHSMatrixInfo &lhs_info,
62 const GEMMRHSMatrixInfo &rhs_info,
Gian Marco Iodice7026b302019-06-26 17:18:11 +010063 const GEMMKernelInfo &gemm_info)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000064{
65 ARM_COMPUTE_UNUSED(alpha);
66 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input0, input1, output);
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000067 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input0);
Gian Marco Iodice05639f62019-09-24 12:05:06 +010068 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::F16, DataType::F32);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000069 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1);
70 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input0->num_dimensions() > 4, "The number of dimensions for the LHS matrix must be <= 4");
71 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input1->num_dimensions() > 3, "The number of dimensions for the RHS matrix must be <= 3");
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000072 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.k0 != rhs_info.k0);
Giorgio Arenaae99b6e2019-08-01 14:22:12 +010073 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.transpose == rhs_info.transpose);
Gian Marco Iodicebacfec52019-01-11 11:30:55 +000074 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");
75 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.k0 > 16);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000076 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.m0 < 2 || lhs_info.m0 > 8);
Michele Di Giorgio2568c6b2019-09-17 12:08:46 +010077 ARM_COMPUTE_RETURN_ERROR_ON_MSG((lhs_info.transpose) && ((lhs_info.m0 & (lhs_info.m0 - 1)) && lhs_info.m0 != 3), "Only 2,3,4,8,16 are supported for m0");
78 ARM_COMPUTE_RETURN_ERROR_ON_MSG((rhs_info.transpose) && ((rhs_info.n0 & (rhs_info.n0 - 1)) && rhs_info.n0 != 3), "Only 2,3,4,8,16 are supported for n0");
Gian Marco Iodiceb238f5f2019-08-02 09:09:53 +010079 ARM_COMPUTE_RETURN_ERROR_ON_MSG((gemm_info.reinterpret_input_as_3d || gemm_info.depth_output_gemm3d != 0) && (input2 != nullptr)
Gian Marco Iodiced820db62019-08-05 14:23:23 +010080 && (!gemm_info.broadcast_bias),
81 "Bias addition only supported with broadcast mode in case the input or output has to be reinterpreted as 3D");
Gian Marco Iodice0c17aa22019-09-27 09:23:15 +010082 ARM_COMPUTE_RETURN_ERROR_ON_MSG(gemm_info.fp_mixed_precision && (input0->data_type() == DataType::F32), "Mixed precision only supported for F16 data type");
Gian Marco Iodiceed5fe692020-07-09 08:41:10 +010083 ARM_COMPUTE_RETURN_ON_ERROR(cl_gemm::validate_image2d_support_on_rhs(*input1, rhs_info));
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +010084
Gian Marco Iodice7026b302019-06-26 17:18:11 +010085 const unsigned int m = gemm_info.m;
86 const unsigned int n = gemm_info.n;
87 const unsigned int k = gemm_info.k;
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000088
89 TensorShape tensor_shape0{ input0->tensor_shape() };
90 tensor_shape0.set(0, k);
91 tensor_shape0.set(1, m);
92
93 TensorShape tensor_shape1{ input1->tensor_shape() };
94 tensor_shape1.set(0, n);
95 tensor_shape1.set(1, k);
96
Gian Marco Iodicee16c8902019-06-14 16:11:10 +010097 if(input2 != nullptr && !(helpers::float_ops::is_zero(beta)))
98 {
Gian Marco Iodice7026b302019-06-26 17:18:11 +010099 const unsigned int input2_dim0 = input2->dimension(0);
100 const unsigned int input2_dim1 = input2->dimension(1);
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100101
102 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input2, input1);
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100103 if(gemm_info.broadcast_bias)
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100104 {
105 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input2_dim1 != 1 || input2_dim0 != n), "Incorrect dimension of bias matrix which is to be broadcasted");
106 }
107 else
108 {
109 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input2_dim0 != n || input2_dim1 != m), "Incorrect dimension of bias matrix");
110 }
111 }
112
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000113 const TensorInfo tensor_info0 = input0->clone()->set_tensor_shape(tensor_shape0);
114 const TensorInfo tensor_info1 = input1->clone()->set_tensor_shape(tensor_shape1);
115
116 const TensorInfo tensor_info_reshaped0 = input0->clone()->set_tensor_shape(compute_lhs_reshaped_shape(tensor_info0, lhs_info));
117 const TensorInfo tensor_info_reshaped1 = input1->clone()->set_tensor_shape(compute_rhs_reshaped_shape(tensor_info1, rhs_info));
118
119 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input0, &tensor_info_reshaped0);
120 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input1, &tensor_info_reshaped1);
121
122 if(output->total_size() != 0)
123 {
124 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info));
125 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
126 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, output);
127 }
128
129 return Status{};
130}
131
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100132std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output, const GEMMLHSMatrixInfo &lhs_info,
133 const GEMMRHSMatrixInfo &rhs_info,
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100134 const GEMMKernelInfo &gemm_info, ElementsProcessed &num_elements_processed)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000135{
136 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
137 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100138 bool reinterpret_output_as_3d = gemm_info.depth_output_gemm3d != 0;
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000139
140 Window win{};
141 Window win_out{};
142 bool window_changed = false;
143
144 // Output tensor auto initialization if not yet initialized
145 auto_init_if_empty(*output, input0->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info)));
146
147 TensorInfo tmp_info(*output);
148
149 if(reinterpret_output_as_3d)
150 {
151 // Since the output tensor has to be reinterpreted as 3D and the execute window is based on a 2D GEMM,
152 // the window needs to be constructed on the 2D collapsed version of the tensor
153 TensorShape tmp_shape(output->tensor_shape());
154 tmp_shape.collapse(2U, 1U);
155 tmp_info.set_tensor_shape(tmp_shape);
156 }
157
158 // Configure kernel window
159 num_elems_processed_per_iteration_x = rhs_info.n0;
160 num_elems_processed_per_iteration_y = lhs_info.m0;
161
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000162 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
163 win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
164
165 AccessWindowStatic input0_access(input0, 0, 0,
Gian Marco Iodice088d63a2020-08-11 14:14:06 +0100166 input0->dimension(0),
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000167 input0->dimension(1));
168 AccessWindowStatic input1_access(input1, 0, 0,
Gian Marco Iodice088d63a2020-08-11 14:14:06 +0100169 input1->dimension(0),
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000170 input1->dimension(1));
171 AccessWindowStatic output_access(output, 0, 0,
Gian Marco Iodice088d63a2020-08-11 14:14:06 +0100172 output->dimension(0),
173 output->dimension(1));
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000174
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100175 if(input2 != nullptr)
176 {
177 const int bias_processed_per_iteration_x = num_elems_processed_per_iteration_x;
178
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100179 const int bias_processed_per_iteration_y = gemm_info.broadcast_bias ? 1 : num_elems_processed_per_iteration_y;
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100180
181 AccessWindowStatic input2_access(input2, 0, 0,
182 ceil_to_multiple(input2->dimension(0), bias_processed_per_iteration_x),
183 ceil_to_multiple(input2->dimension(1), bias_processed_per_iteration_y));
184
185 window_changed = update_window_and_padding(win, input0_access, input1_access, input2_access) || // window used by the execute_window_loop
186 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
187 }
188 else
189 {
190 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
191 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
192 }
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000193
194 output_access.set_valid_region(win_out, ValidRegion(Coordinates(0, 0), output->tensor_shape()));
195
196 // Collapse along the Z direction
197 // This collapse needs to be here in order to tune the Z dimension of LWS
198 Window collapsed = win;
199 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(output->num_dimensions()), 2u);
200 collapsed = win.collapse(win, dimension_to_collapse);
201
202 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
203 return std::make_pair(err, collapsed);
204}
205} // namespace
206
207CLGEMMMatrixMultiplyReshapedKernel::CLGEMMMatrixMultiplyReshapedKernel()
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100208 : _input0(nullptr), _input1(nullptr), _input2(nullptr), _output(nullptr), _slide_matrix_b(true), _reinterpret_output_as_3d(false), _use_dummy_work_items(false), _add_bias(false),
Gian Marco Iodicee5563d92020-06-25 17:18:36 +0100209 _broadcast_bias(false), _export_to_cl_image(false), _k(1)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000210{
211}
212
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100213void CLGEMMMatrixMultiplyReshapedKernel::configure(const ICLTensor *input0, const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, float alpha, float beta,
214 const GEMMLHSMatrixInfo &lhs_info,
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100215 const GEMMRHSMatrixInfo &rhs_info, const GEMMKernelInfo &gemm_info)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000216{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100217 configure(CLKernelLibrary::get().get_compile_context(), input0, input1, input2, output, alpha, beta, lhs_info, rhs_info, gemm_info);
218}
219
Manuel Bottini679fc962020-04-21 16:08:53 +0100220void CLGEMMMatrixMultiplyReshapedKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input0, const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, float alpha,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100221 float beta,
222 const GEMMLHSMatrixInfo &lhs_info,
223 const GEMMRHSMatrixInfo &rhs_info, const GEMMKernelInfo &gemm_info)
224{
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000225 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
226
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100227 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input0->info(), input1->info(), (input2 != nullptr ? input2->info() : nullptr), output->info(), alpha, beta, lhs_info, rhs_info, gemm_info));
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000228
229 _input0 = input0;
230 _input1 = input1;
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100231 _input2 = helpers::float_ops::is_zero(beta) ? nullptr : input2;
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000232 _output = output;
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100233 _reinterpret_output_as_3d = gemm_info.depth_output_gemm3d != 0;
Gian Marco Iodiceb0c50372019-03-15 10:13:05 +0000234 _use_dummy_work_items = preferred_dummy_work_items_support(CLKernelLibrary::get().get_device());
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100235 _add_bias = _input2 != nullptr;
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100236 _broadcast_bias = gemm_info.broadcast_bias;
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100237 _export_to_cl_image = rhs_info.export_to_cl_image;
Gian Marco Iodicee5563d92020-06-25 17:18:36 +0100238 _k = gemm_info.k;
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000239
240 // Check if we need to slide the matrix B
241 const unsigned int num_dimensions_input0 = _input0->info()->num_dimensions();
242 _slide_matrix_b = (_input1->info()->num_dimensions() >= num_dimensions_input0);
243
244 ElementsProcessed num_elements_processed{};
245
246 // Configure kernel window
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100247 auto win_config = validate_and_configure_window(input0->info(), input1->info(), input2 != nullptr ? input2->info() : nullptr, output->info(), lhs_info, rhs_info, gemm_info, num_elements_processed);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000248 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
249 ICLKernel::configure_internal(win_config.second);
250
Gian Marco Iodice0c17aa22019-09-27 09:23:15 +0100251 const bool enable_mixed_precision = gemm_info.fp_mixed_precision;
252 const DataType data_type = input0->info()->data_type();
253
Gian Marco Iodice088d63a2020-08-11 14:14:06 +0100254 // 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.
255 const unsigned int internal_m = _reinterpret_output_as_3d ? gemm_info.m : output->info()->dimension(1);
256
257 const unsigned int partial_store_m0 = internal_m % lhs_info.m0;
258 const unsigned int partial_store_n0 = gemm_info.n % rhs_info.n0;
259
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000260 // Create build options
261 CLBuildOptions build_opts;
Gian Marco Iodice82d9dd12019-06-10 16:45:40 +0100262 build_opts.add_option_if(!(helpers::float_ops::is_one(alpha)), "-DALPHA=" + float_to_string_with_full_precision(alpha));
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100263 build_opts.add_option_if(_input2 != nullptr, "-DBETA=" + float_to_string_with_full_precision(beta));
264 build_opts.add_option_if(helpers::float_ops::is_one(beta), "-DUNIT_BETA");
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000265 build_opts.add_option_if(_reinterpret_output_as_3d, "-DREINTERPRET_OUTPUT_AS_3D");
266 build_opts.add_option_if(_reinterpret_output_as_3d, "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(1)));
267 build_opts.add_option_if(_reinterpret_output_as_3d, "-DDEPTH_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(2)));
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100268 build_opts.add_option_if(gemm_info.broadcast_bias, "-DBROADCAST_BIAS");
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000269 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
270 build_opts.add_option_if(lhs_info.interleave, "-DLHS_INTERLEAVE");
271 build_opts.add_option_if(rhs_info.interleave, "-DRHS_INTERLEAVE");
Giorgio Arenaae99b6e2019-08-01 14:22:12 +0100272 build_opts.add_option_if(lhs_info.transpose, "-DLHS_TRANSPOSE");
Gian Marco Iodiceb0c50372019-03-15 10:13:05 +0000273 build_opts.add_option_if(_use_dummy_work_items, "-DDUMMY_WORK_ITEMS");
Gian Marco Iodice0c17aa22019-09-27 09:23:15 +0100274 build_opts.add_option_if(gemm_info.activation_info.enabled(), "-DACTIVATION_TYPE=" + lower_string(string_from_activation_func(gemm_info.activation_info.activation())));
275 build_opts.add_option_if(gemm_info.activation_info.enabled(), "-DA_VAL=" + float_to_string_with_full_precision(gemm_info.activation_info.a()));
276 build_opts.add_option_if(gemm_info.activation_info.enabled(), "-DB_VAL=" + float_to_string_with_full_precision(gemm_info.activation_info.b()));
277 build_opts.add_option_if(enable_mixed_precision, "-DMIXED_PRECISION");
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100278 build_opts.add_option_if(rhs_info.export_to_cl_image, "-DOPENCL_IMAGE_SUPPORT");
279 build_opts.add_option("-DRHS_HEIGHT=" + support::cpp11::to_string(input1->info()->dimension(1)));
Gian Marco Iodice0c17aa22019-09-27 09:23:15 +0100280 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
281 build_opts.add_option("-DDATA_TYPE_ACCUMULATOR=" + (enable_mixed_precision ? get_cl_type_from_data_type(DataType::F32) : get_cl_type_from_data_type(data_type)));
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100282 build_opts.add_option("-DM=" + support::cpp11::to_string(gemm_info.m));
283 build_opts.add_option("-DN=" + support::cpp11::to_string(gemm_info.n));
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100284 build_opts.add_option("-DK=" + support::cpp11::to_string(gemm_info.k));
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000285 build_opts.add_option("-DM0=" + support::cpp11::to_string(lhs_info.m0));
286 build_opts.add_option("-DN0=" + support::cpp11::to_string(rhs_info.n0));
287 build_opts.add_option("-DK0=" + support::cpp11::to_string(lhs_info.k0));
288 build_opts.add_option("-DV0=" + support::cpp11::to_string(lhs_info.v0));
289 build_opts.add_option("-DH0=" + support::cpp11::to_string(rhs_info.h0));
Gian Marco Iodice088d63a2020-08-11 14:14:06 +0100290 build_opts.add_option("-DPARTIAL_STORE_M0=" + support::cpp11::to_string(partial_store_m0));
291 build_opts.add_option("-DPARTIAL_STORE_N0=" + support::cpp11::to_string(partial_store_n0));
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000292
293 std::string kernel_name("gemm_mm_reshaped_");
294 kernel_name += lhs_info.transpose ? "lhs_t_" : "lhs_nt_";
295 kernel_name += rhs_info.transpose ? "rhs_t" : "rhs_nt";
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100296 kernel_name += rhs_info.export_to_cl_image ? "_texture" : "";
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000297
298 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100299 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000300
301 // Set config_id for enabling LWS tuning
302 _config_id = kernel_name;
303 _config_id += "_";
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100304 _config_id += (_add_bias ? "add_bias_" : "");
305 _config_id += (_broadcast_bias ? "broadcast_bias_" : "");
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000306 _config_id += (_reinterpret_output_as_3d ? "3do_" : "");
Gian Marco Iodiceca1f4602019-07-16 15:46:48 +0100307 _config_id += (gemm_info.activation_info.enabled() ? "fused_activation_" : "");
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000308 _config_id += lower_string(string_from_data_type(input0->info()->data_type()));
309 _config_id += "_";
Gian Marco Iodice0c17aa22019-09-27 09:23:15 +0100310 _config_id += (enable_mixed_precision ? "mixed_precision_" : "");
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000311 _config_id += support::cpp11::to_string(output->info()->dimension(1));
312 _config_id += "_";
313 _config_id += support::cpp11::to_string(output->info()->dimension(0));
314 _config_id += "_";
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100315 _config_id += support::cpp11::to_string(gemm_info.k);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000316 _config_id += "_";
317 _config_id += support::cpp11::to_string(output->info()->dimension(2));
318 _config_id += "_";
319 _config_id += support::cpp11::to_string(lhs_info.m0);
320 _config_id += "_";
321 _config_id += support::cpp11::to_string(rhs_info.n0);
322 _config_id += "_";
323 _config_id += support::cpp11::to_string(lhs_info.k0);
324 _config_id += "_";
325 _config_id += support::cpp11::to_string(lhs_info.v0);
326 _config_id += "_";
327 _config_id += support::cpp11::to_string(rhs_info.h0);
328 _config_id += "_";
329 _config_id += support::cpp11::to_string(lhs_info.interleave);
330 _config_id += "_";
331 _config_id += support::cpp11::to_string(rhs_info.interleave);
332}
333
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100334Status CLGEMMMatrixMultiplyReshapedKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float alpha, float beta,
335 const GEMMLHSMatrixInfo &lhs_info,
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100336 const GEMMRHSMatrixInfo &rhs_info, const GEMMKernelInfo &gemm_info)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000337{
338 ElementsProcessed num_elements_processed{};
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100339 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, input2, output, alpha, beta, lhs_info, rhs_info, gemm_info));
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000340 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input0->clone().get(),
341 input1->clone().get(),
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100342 input2 != nullptr ? input2->clone().get() : nullptr,
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000343 output->clone().get(),
344 lhs_info,
345 rhs_info,
346 gemm_info,
347 num_elements_processed)
348 .first);
349
350 return Status{};
351}
352
353void CLGEMMMatrixMultiplyReshapedKernel::run(const Window &window, cl::CommandQueue &queue)
354{
355 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
356 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
357
358 if(_input1->info()->num_dimensions() < 3)
359 {
360 // The stride_z for matrix B must be zero if we do not slice
361 ARM_COMPUTE_ERROR_ON(_input1->info()->strides_in_bytes()[3] != 0);
362 }
363
364 Window slice = window.first_slice_window_3D();
365 Window slice_matrix_b = slice;
366
367 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
368 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
369
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100370 const unsigned int total_cross_plane_pad = _output->info()->padding().top + _output->info()->padding().bottom;
371
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100372 cl::Image2D input1_image2d;
373
374 if(_export_to_cl_image)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000375 {
Gian Marco Iodice781cba72020-06-19 16:56:57 +0100376 const TensorShape shape2d(_input1->info()->dimension(0) / 4, _input1->info()->dimension(1) * _input1->info()->dimension(2));
377 const size_t image_row_pitch = _input1->info()->strides_in_bytes()[1];
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100378
Gian Marco Iodice6f931342020-09-15 14:17:41 +0100379 input1_image2d = create_image2d_from_buffer(CLKernelLibrary::get().context(), _input1->cl_buffer(), shape2d, _input1->info()->data_type(), image_row_pitch);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000380 }
381
382 do
383 {
384 Window slice_b = slice;
385 // Don't slice matrix B along the z dimension if matrix B has just 2 dimensions and matrix A more than 2
386 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
387 if(!_slide_matrix_b)
388 {
389 slice_b = slice_matrix_b;
390 }
391
392 unsigned int idx = 0;
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100393
394 // LHS buffer
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000395 add_2D_tensor_argument(idx, _input0, slice);
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100396
397 // RHS buffer or RHS OpenCL image (_export_to_cl_image == true)
398 if(_export_to_cl_image)
399 {
400 _kernel.setArg(idx++, input1_image2d);
401 }
402 else
403 {
404 add_2D_tensor_argument(idx, _input1, slice_b);
405 }
406
407 // Bias buffer (_add_bias == true)
408 add_2D_tensor_argument_if(_add_bias, idx, _input2, slice);
409
410 // Output buffer
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000411 add_2D_tensor_argument(idx, _output, slice);
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100412
Gian Marco Iodicee5563d92020-06-25 17:18:36 +0100413 // K dimension (not used if _export_to_cl_image == true)
414 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_k));
415
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100416 // LHS stride_z
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000417 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input0->info()->strides_in_bytes()[2]));
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100418
419 // RHS stride_z (not used if _export_to_cl_image == true)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000420 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input1->info()->strides_in_bytes()[2]));
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100421
422 // Bias stride_z (if _add_bias == true)
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100423 if(_add_bias)
424 {
425 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input2->info()->strides_in_bytes()[2]));
426 }
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100427
428 // Output stride_z
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000429 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[2]));
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100430
431 // Cross-plan padding (if _reinterpret_output_as_3d = true)
432 if(_reinterpret_output_as_3d)
433 {
434 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(total_cross_plane_pad));
435 }
436
437 // Dispatch kernel
Gian Marco Iodiceb0c50372019-03-15 10:13:05 +0000438 enqueue(queue, *this, slice, lws_hint(), _use_dummy_work_items);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000439 }
440 while(window.slide_window_slice_3D(slice));
Michele Di Giorgio2568c6b2019-09-17 12:08:46 +0100441}