blob: be73c857316d5ce3818938107faeaceaf50c22db [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"
32#include "arm_compute/core/Error.h"
33#include "arm_compute/core/Helpers.h"
34#include "arm_compute/core/TensorInfo.h"
35#include "arm_compute/core/Types.h"
36#include "arm_compute/core/Utils.h"
37#include "arm_compute/core/Validate.h"
38#include "arm_compute/core/Window.h"
Gian Marco Iodice82d9dd12019-06-10 16:45:40 +010039#include "arm_compute/core/utils/helpers/float_ops.h"
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000040#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Gian Marco Iodice781cba72020-06-19 16:56:57 +010041#include "src/core/CL/CLUtils.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000042#include "support/StringSupport.h"
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000043
44#include <cstddef>
45#include <cstdint>
46#include <tuple>
47
48using namespace arm_compute;
49using namespace arm_compute::misc::shape_calculator;
50
51namespace arm_compute
52{
53class Coordinates;
54} // namespace arm_compute
55
56namespace
57{
58using ElementsProcessed = Steps;
59
Gian Marco Iodicee16c8902019-06-14 16:11:10 +010060Status validate_arguments(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float alpha, float beta, const GEMMLHSMatrixInfo &lhs_info,
61 const GEMMRHSMatrixInfo &rhs_info,
Gian Marco Iodice7026b302019-06-26 17:18:11 +010062 const GEMMKernelInfo &gemm_info)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000063{
64 ARM_COMPUTE_UNUSED(alpha);
65 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input0, input1, output);
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000066 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input0);
Gian Marco Iodice05639f62019-09-24 12:05:06 +010067 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::F16, DataType::F32);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000068 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1);
69 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input0->num_dimensions() > 4, "The number of dimensions for the LHS matrix must be <= 4");
70 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 +000071 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.k0 != rhs_info.k0);
Giorgio Arenaae99b6e2019-08-01 14:22:12 +010072 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.transpose == rhs_info.transpose);
Gian Marco Iodicebacfec52019-01-11 11:30:55 +000073 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");
74 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.k0 > 16);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000075 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.m0 < 2 || lhs_info.m0 > 8);
Michele Di Giorgio2568c6b2019-09-17 12:08:46 +010076 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");
77 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 +010078 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 +010079 && (!gemm_info.broadcast_bias),
80 "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 +010081 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 Iodicebf9731e2018-12-12 10:18:04 +000082
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +010083 if(rhs_info.export_to_cl_image)
84 {
85 ARM_COMPUTE_RETURN_ERROR_ON_MSG((rhs_info.n0 == 2) || (rhs_info.n0 == 3), "Export to cl_image only supported with n0 = 4, 8 or 16");
86 ARM_COMPUTE_RETURN_ERROR_ON_MSG((rhs_info.k0 == 2) || (rhs_info.k0 == 3), "Export to cl_image only supported with k0 = 4, 8 or 16");
87 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input1->data_type() != DataType::F32, "Export to cl_image only supported with F32 data type");
88 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!image2d_from_buffer_supported(CLKernelLibrary::get().get_device()), "The extension cl_khr_image2d_from_buffer is not supported on the target platform");
89 ARM_COMPUTE_RETURN_ERROR_ON_MSG(get_cl_image_pitch_alignment(CLKernelLibrary::get().get_device()) == 0, "Impossible to retrieve the cl_image pitch alignment");
90
91 // Check the width and height of the output tensor.
92 // Since we cannot create a 3d image from a buffer, the third dimension is collapsed with the second dimension
93 size_t max_image_w = CLKernelLibrary::get().get_device().getInfo<CL_DEVICE_IMAGE2D_MAX_WIDTH>();
94 size_t max_image_h = CLKernelLibrary::get().get_device().getInfo<CL_DEVICE_IMAGE2D_MAX_HEIGHT>();
95
96 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input1->tensor_shape()[0] > max_image_w * 4, "Not supported width for cl_image");
97 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input1->tensor_shape()[1] * input1->tensor_shape()[2] > max_image_h, "Not supported height for cl_image");
98 }
99
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100100 const unsigned int m = gemm_info.m;
101 const unsigned int n = gemm_info.n;
102 const unsigned int k = gemm_info.k;
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000103
104 TensorShape tensor_shape0{ input0->tensor_shape() };
105 tensor_shape0.set(0, k);
106 tensor_shape0.set(1, m);
107
108 TensorShape tensor_shape1{ input1->tensor_shape() };
109 tensor_shape1.set(0, n);
110 tensor_shape1.set(1, k);
111
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100112 if(input2 != nullptr && !(helpers::float_ops::is_zero(beta)))
113 {
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100114 const unsigned int input2_dim0 = input2->dimension(0);
115 const unsigned int input2_dim1 = input2->dimension(1);
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100116
117 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input2, input1);
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100118 if(gemm_info.broadcast_bias)
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100119 {
120 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input2_dim1 != 1 || input2_dim0 != n), "Incorrect dimension of bias matrix which is to be broadcasted");
121 }
122 else
123 {
124 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input2_dim0 != n || input2_dim1 != m), "Incorrect dimension of bias matrix");
125 }
126 }
127
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000128 const TensorInfo tensor_info0 = input0->clone()->set_tensor_shape(tensor_shape0);
129 const TensorInfo tensor_info1 = input1->clone()->set_tensor_shape(tensor_shape1);
130
131 const TensorInfo tensor_info_reshaped0 = input0->clone()->set_tensor_shape(compute_lhs_reshaped_shape(tensor_info0, lhs_info));
132 const TensorInfo tensor_info_reshaped1 = input1->clone()->set_tensor_shape(compute_rhs_reshaped_shape(tensor_info1, rhs_info));
133
134 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input0, &tensor_info_reshaped0);
135 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input1, &tensor_info_reshaped1);
136
137 if(output->total_size() != 0)
138 {
139 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info));
140 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
141 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, output);
142 }
143
144 return Status{};
145}
146
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100147std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output, const GEMMLHSMatrixInfo &lhs_info,
148 const GEMMRHSMatrixInfo &rhs_info,
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100149 const GEMMKernelInfo &gemm_info, ElementsProcessed &num_elements_processed)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000150{
151 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
152 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100153 bool reinterpret_output_as_3d = gemm_info.depth_output_gemm3d != 0;
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000154
155 Window win{};
156 Window win_out{};
157 bool window_changed = false;
158
159 // Output tensor auto initialization if not yet initialized
160 auto_init_if_empty(*output, input0->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, gemm_info)));
161
162 TensorInfo tmp_info(*output);
163
164 if(reinterpret_output_as_3d)
165 {
166 // Since the output tensor has to be reinterpreted as 3D and the execute window is based on a 2D GEMM,
167 // the window needs to be constructed on the 2D collapsed version of the tensor
168 TensorShape tmp_shape(output->tensor_shape());
169 tmp_shape.collapse(2U, 1U);
170 tmp_info.set_tensor_shape(tmp_shape);
171 }
172
173 // Configure kernel window
174 num_elems_processed_per_iteration_x = rhs_info.n0;
175 num_elems_processed_per_iteration_y = lhs_info.m0;
176
177 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
178 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100179 const unsigned int m = gemm_info.m;
180 const unsigned int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000181
182 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
183 win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
184
185 AccessWindowStatic input0_access(input0, 0, 0,
186 ceil_to_multiple(input0->dimension(0), num_elems_processed_per_iteration_y),
187 input0->dimension(1));
188 AccessWindowStatic input1_access(input1, 0, 0,
189 ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x),
190 input1->dimension(1));
191 AccessWindowStatic output_access(output, 0, 0,
192 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
193 output->dimension(1) + bottom_pad);
194
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100195 if(input2 != nullptr)
196 {
197 const int bias_processed_per_iteration_x = num_elems_processed_per_iteration_x;
198
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100199 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 +0100200
201 AccessWindowStatic input2_access(input2, 0, 0,
202 ceil_to_multiple(input2->dimension(0), bias_processed_per_iteration_x),
203 ceil_to_multiple(input2->dimension(1), bias_processed_per_iteration_y));
204
205 window_changed = update_window_and_padding(win, input0_access, input1_access, input2_access) || // window used by the execute_window_loop
206 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
207 }
208 else
209 {
210 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
211 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
212 }
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000213
214 output_access.set_valid_region(win_out, ValidRegion(Coordinates(0, 0), output->tensor_shape()));
215
216 // Collapse along the Z direction
217 // This collapse needs to be here in order to tune the Z dimension of LWS
218 Window collapsed = win;
219 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(output->num_dimensions()), 2u);
220 collapsed = win.collapse(win, dimension_to_collapse);
221
222 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
223 return std::make_pair(err, collapsed);
224}
225} // namespace
226
227CLGEMMMatrixMultiplyReshapedKernel::CLGEMMMatrixMultiplyReshapedKernel()
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100228 : _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 +0100229 _broadcast_bias(false), _export_to_cl_image(false), _k(1)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000230{
231}
232
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100233void CLGEMMMatrixMultiplyReshapedKernel::configure(const ICLTensor *input0, const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, float alpha, float beta,
234 const GEMMLHSMatrixInfo &lhs_info,
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100235 const GEMMRHSMatrixInfo &rhs_info, const GEMMKernelInfo &gemm_info)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000236{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100237 configure(CLKernelLibrary::get().get_compile_context(), input0, input1, input2, output, alpha, beta, lhs_info, rhs_info, gemm_info);
238}
239
Manuel Bottini679fc962020-04-21 16:08:53 +0100240void 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 +0100241 float beta,
242 const GEMMLHSMatrixInfo &lhs_info,
243 const GEMMRHSMatrixInfo &rhs_info, const GEMMKernelInfo &gemm_info)
244{
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000245 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
246
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100247 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 +0000248
249 _input0 = input0;
250 _input1 = input1;
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100251 _input2 = helpers::float_ops::is_zero(beta) ? nullptr : input2;
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000252 _output = output;
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100253 _reinterpret_output_as_3d = gemm_info.depth_output_gemm3d != 0;
Gian Marco Iodiceb0c50372019-03-15 10:13:05 +0000254 _use_dummy_work_items = preferred_dummy_work_items_support(CLKernelLibrary::get().get_device());
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100255 _add_bias = _input2 != nullptr;
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100256 _broadcast_bias = gemm_info.broadcast_bias;
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100257 _export_to_cl_image = rhs_info.export_to_cl_image;
Gian Marco Iodicee5563d92020-06-25 17:18:36 +0100258 _k = gemm_info.k;
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000259
260 // Check if we need to slide the matrix B
261 const unsigned int num_dimensions_input0 = _input0->info()->num_dimensions();
262 _slide_matrix_b = (_input1->info()->num_dimensions() >= num_dimensions_input0);
263
264 ElementsProcessed num_elements_processed{};
265
266 // Configure kernel window
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100267 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 +0000268 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
269 ICLKernel::configure_internal(win_config.second);
270
Gian Marco Iodice0c17aa22019-09-27 09:23:15 +0100271 const bool enable_mixed_precision = gemm_info.fp_mixed_precision;
272 const DataType data_type = input0->info()->data_type();
273
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000274 // Create build options
275 CLBuildOptions build_opts;
Gian Marco Iodice82d9dd12019-06-10 16:45:40 +0100276 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 +0100277 build_opts.add_option_if(_input2 != nullptr, "-DBETA=" + float_to_string_with_full_precision(beta));
278 build_opts.add_option_if(helpers::float_ops::is_one(beta), "-DUNIT_BETA");
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000279 build_opts.add_option_if(_reinterpret_output_as_3d, "-DREINTERPRET_OUTPUT_AS_3D");
280 build_opts.add_option_if(_reinterpret_output_as_3d, "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(1)));
281 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 +0100282 build_opts.add_option_if(gemm_info.broadcast_bias, "-DBROADCAST_BIAS");
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000283 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
284 build_opts.add_option_if(lhs_info.interleave, "-DLHS_INTERLEAVE");
285 build_opts.add_option_if(rhs_info.interleave, "-DRHS_INTERLEAVE");
Giorgio Arenaae99b6e2019-08-01 14:22:12 +0100286 build_opts.add_option_if(lhs_info.transpose, "-DLHS_TRANSPOSE");
Gian Marco Iodiceb0c50372019-03-15 10:13:05 +0000287 build_opts.add_option_if(_use_dummy_work_items, "-DDUMMY_WORK_ITEMS");
Gian Marco Iodice0c17aa22019-09-27 09:23:15 +0100288 build_opts.add_option_if(gemm_info.activation_info.enabled(), "-DACTIVATION_TYPE=" + lower_string(string_from_activation_func(gemm_info.activation_info.activation())));
289 build_opts.add_option_if(gemm_info.activation_info.enabled(), "-DA_VAL=" + float_to_string_with_full_precision(gemm_info.activation_info.a()));
290 build_opts.add_option_if(gemm_info.activation_info.enabled(), "-DB_VAL=" + float_to_string_with_full_precision(gemm_info.activation_info.b()));
291 build_opts.add_option_if(enable_mixed_precision, "-DMIXED_PRECISION");
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100292 build_opts.add_option_if(rhs_info.export_to_cl_image, "-DOPENCL_IMAGE_SUPPORT");
293 build_opts.add_option("-DRHS_HEIGHT=" + support::cpp11::to_string(input1->info()->dimension(1)));
Gian Marco Iodice0c17aa22019-09-27 09:23:15 +0100294 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
295 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 +0100296 build_opts.add_option("-DM=" + support::cpp11::to_string(gemm_info.m));
297 build_opts.add_option("-DN=" + support::cpp11::to_string(gemm_info.n));
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100298 build_opts.add_option("-DK=" + support::cpp11::to_string(gemm_info.k));
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000299 build_opts.add_option("-DM0=" + support::cpp11::to_string(lhs_info.m0));
300 build_opts.add_option("-DN0=" + support::cpp11::to_string(rhs_info.n0));
301 build_opts.add_option("-DK0=" + support::cpp11::to_string(lhs_info.k0));
302 build_opts.add_option("-DV0=" + support::cpp11::to_string(lhs_info.v0));
303 build_opts.add_option("-DH0=" + support::cpp11::to_string(rhs_info.h0));
304
305 std::string kernel_name("gemm_mm_reshaped_");
306 kernel_name += lhs_info.transpose ? "lhs_t_" : "lhs_nt_";
307 kernel_name += rhs_info.transpose ? "rhs_t" : "rhs_nt";
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100308 kernel_name += rhs_info.export_to_cl_image ? "_texture" : "";
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000309
310 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100311 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000312
313 // Set config_id for enabling LWS tuning
314 _config_id = kernel_name;
315 _config_id += "_";
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100316 _config_id += (_add_bias ? "add_bias_" : "");
317 _config_id += (_broadcast_bias ? "broadcast_bias_" : "");
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000318 _config_id += (_reinterpret_output_as_3d ? "3do_" : "");
Gian Marco Iodiceca1f4602019-07-16 15:46:48 +0100319 _config_id += (gemm_info.activation_info.enabled() ? "fused_activation_" : "");
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000320 _config_id += lower_string(string_from_data_type(input0->info()->data_type()));
321 _config_id += "_";
Gian Marco Iodice0c17aa22019-09-27 09:23:15 +0100322 _config_id += (enable_mixed_precision ? "mixed_precision_" : "");
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000323 _config_id += support::cpp11::to_string(output->info()->dimension(1));
324 _config_id += "_";
325 _config_id += support::cpp11::to_string(output->info()->dimension(0));
326 _config_id += "_";
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100327 _config_id += support::cpp11::to_string(gemm_info.k);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000328 _config_id += "_";
329 _config_id += support::cpp11::to_string(output->info()->dimension(2));
330 _config_id += "_";
331 _config_id += support::cpp11::to_string(lhs_info.m0);
332 _config_id += "_";
333 _config_id += support::cpp11::to_string(rhs_info.n0);
334 _config_id += "_";
335 _config_id += support::cpp11::to_string(lhs_info.k0);
336 _config_id += "_";
337 _config_id += support::cpp11::to_string(lhs_info.v0);
338 _config_id += "_";
339 _config_id += support::cpp11::to_string(rhs_info.h0);
340 _config_id += "_";
341 _config_id += support::cpp11::to_string(lhs_info.interleave);
342 _config_id += "_";
343 _config_id += support::cpp11::to_string(rhs_info.interleave);
344}
345
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100346Status CLGEMMMatrixMultiplyReshapedKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float alpha, float beta,
347 const GEMMLHSMatrixInfo &lhs_info,
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100348 const GEMMRHSMatrixInfo &rhs_info, const GEMMKernelInfo &gemm_info)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000349{
350 ElementsProcessed num_elements_processed{};
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100351 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 +0000352 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input0->clone().get(),
353 input1->clone().get(),
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100354 input2 != nullptr ? input2->clone().get() : nullptr,
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000355 output->clone().get(),
356 lhs_info,
357 rhs_info,
358 gemm_info,
359 num_elements_processed)
360 .first);
361
362 return Status{};
363}
364
365void CLGEMMMatrixMultiplyReshapedKernel::run(const Window &window, cl::CommandQueue &queue)
366{
367 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
368 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
369
370 if(_input1->info()->num_dimensions() < 3)
371 {
372 // The stride_z for matrix B must be zero if we do not slice
373 ARM_COMPUTE_ERROR_ON(_input1->info()->strides_in_bytes()[3] != 0);
374 }
375
376 Window slice = window.first_slice_window_3D();
377 Window slice_matrix_b = slice;
378
379 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
380 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
381
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100382 const unsigned int total_cross_plane_pad = _output->info()->padding().top + _output->info()->padding().bottom;
383
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100384 cl::Image2D input1_image2d;
385
386 if(_export_to_cl_image)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000387 {
Gian Marco Iodice781cba72020-06-19 16:56:57 +0100388 const TensorShape shape2d(_input1->info()->dimension(0) / 4, _input1->info()->dimension(1) * _input1->info()->dimension(2));
389 const size_t image_row_pitch = _input1->info()->strides_in_bytes()[1];
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100390
Gian Marco Iodice781cba72020-06-19 16:56:57 +0100391 input1_image2d = create_image2d_from_buffer(CLKernelLibrary::get().context(), _input1->cl_buffer(), shape2d, CL_FLOAT, image_row_pitch);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000392 }
393
394 do
395 {
396 Window slice_b = slice;
397 // Don't slice matrix B along the z dimension if matrix B has just 2 dimensions and matrix A more than 2
398 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
399 if(!_slide_matrix_b)
400 {
401 slice_b = slice_matrix_b;
402 }
403
404 unsigned int idx = 0;
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100405
406 // LHS buffer
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000407 add_2D_tensor_argument(idx, _input0, slice);
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100408
409 // RHS buffer or RHS OpenCL image (_export_to_cl_image == true)
410 if(_export_to_cl_image)
411 {
412 _kernel.setArg(idx++, input1_image2d);
413 }
414 else
415 {
416 add_2D_tensor_argument(idx, _input1, slice_b);
417 }
418
419 // Bias buffer (_add_bias == true)
420 add_2D_tensor_argument_if(_add_bias, idx, _input2, slice);
421
422 // Output buffer
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000423 add_2D_tensor_argument(idx, _output, slice);
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100424
Gian Marco Iodicee5563d92020-06-25 17:18:36 +0100425 // K dimension (not used if _export_to_cl_image == true)
426 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_k));
427
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100428 // LHS stride_z
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000429 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input0->info()->strides_in_bytes()[2]));
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100430
431 // RHS stride_z (not used if _export_to_cl_image == true)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000432 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input1->info()->strides_in_bytes()[2]));
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100433
434 // Bias stride_z (if _add_bias == true)
Gian Marco Iodicee16c8902019-06-14 16:11:10 +0100435 if(_add_bias)
436 {
437 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input2->info()->strides_in_bytes()[2]));
438 }
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100439
440 // Output stride_z
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000441 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[2]));
Gian Marco Iodicee3a849a2020-06-10 17:59:30 +0100442
443 // Cross-plan padding (if _reinterpret_output_as_3d = true)
444 if(_reinterpret_output_as_3d)
445 {
446 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(total_cross_plane_pad));
447 }
448
449 // Dispatch kernel
Gian Marco Iodiceb0c50372019-03-15 10:13:05 +0000450 enqueue(queue, *this, slice, lws_hint(), _use_dummy_work_items);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000451 }
452 while(window.slide_window_slice_3D(slice));
Michele Di Giorgio2568c6b2019-09-17 12:08:46 +0100453}