blob: 2c2a92d0703b53d02441738eda63d6c686ab1554 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Gian Marco36a0a462018-01-12 10:21:40 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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 */
24#include "arm_compute/core/CL/kernels/CLGEMMMatrixMultiplyKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/AccessWindowTranspose.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028#include "arm_compute/core/CL/CLHelpers.h"
29#include "arm_compute/core/CL/CLKernelLibrary.h"
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010030#include "arm_compute/core/CL/CLValidate.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031#include "arm_compute/core/CL/ICLTensor.h"
32#include "arm_compute/core/CL/OpenCL.h"
33#include "arm_compute/core/Error.h"
Gian Marco Iodice3a3066b2017-06-23 13:38:14 +010034#include "arm_compute/core/FixedPoint.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010035#include "arm_compute/core/Helpers.h"
Isabella Gottardid56e7702018-02-28 14:29:36 +000036#include "arm_compute/core/TensorInfo.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037#include "arm_compute/core/Types.h"
38#include "arm_compute/core/Utils.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039#include "arm_compute/core/Window.h"
Gian Marco36a0a462018-01-12 10:21:40 +000040#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041
42#include <set>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043#include <string>
44
45using namespace arm_compute;
Gian Marco36a0a462018-01-12 10:21:40 +000046using namespace arm_compute::misc::shape_calculator;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047
Georgios Pinitas358ca202017-12-07 16:47:52 +000048namespace
49{
50using ElementsProcessed = Steps;
51
Gian Marco36a0a462018-01-12 10:21:40 +000052inline Status validate_arguments(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output, bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info)
Georgios Pinitas358ca202017-12-07 16:47:52 +000053{
Georgios Pinitas78c00902018-01-09 17:33:11 +000054 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input0, input1, output);
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010055 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input0);
Georgios Pinitas358ca202017-12-07 16:47:52 +000056 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::QS8, DataType::QS16, DataType::F16, DataType::F32);
Gian Marco36a0a462018-01-12 10:21:40 +000057 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1);
58 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT(input0, input1);
Isabella Gottardi8e74f442018-03-01 16:42:00 +000059 ARM_COMPUTE_RETURN_ERROR_ON_MSG(is_data_type_fixed_point(input0->data_type()) && (reshape_info.depth_output_gemm3d() != 1), "GEMM3D only supports floating point data types");
60 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input0->num_dimensions() > 4, "The number of dimensions for the matrix A must be <= 4");
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000061 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input1->num_dimensions() > 3, "The number of dimensions for the matrix B must be <= 3");
Gian Marco36a0a462018-01-12 10:21:40 +000062
Georgios Pinitas358ca202017-12-07 16:47:52 +000063 if(!is_interleaved_transposed)
64 {
65 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(0) != input1->dimension(1));
Gian Marco36a0a462018-01-12 10:21:40 +000066 }
67 else
68 {
69 const int m = reshape_info.m();
70 const int n = reshape_info.n();
71 const int k = reshape_info.k();
72 const int mult_transpose1xW_width = reshape_info.mult_transpose1xW_width();
73 const int mult_interleave4x4_height = reshape_info.mult_interleave4x4_height();
74
75 TensorShape tensor_shape0{ input0->tensor_shape() };
76 tensor_shape0.set(0, k);
77 tensor_shape0.set(1, m);
78
79 TensorShape tensor_shape1{ input1->tensor_shape() };
80 tensor_shape1.set(0, n);
81 tensor_shape1.set(1, k);
82
83 const TensorInfo tensor_info0 = input0->clone()->set_tensor_shape(tensor_shape0);
84 const TensorInfo tensor_info1 = input1->clone()->set_tensor_shape(tensor_shape1);
85
86 const TensorInfo tensor_info_reshaped0 = input0->clone()->set_tensor_shape(compute_interleaved_shape(tensor_info0, mult_interleave4x4_height));
87 const TensorInfo tensor_info_reshaped1 = input1->clone()->set_tensor_shape(compute_transpose1xW_with_element_size_shape(tensor_info1, mult_transpose1xW_width));
88
89 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input0, &tensor_info_reshaped0);
90 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input1, &tensor_info_reshaped1);
Isabella Gottardi8e74f442018-03-01 16:42:00 +000091 }
Gian Marco36a0a462018-01-12 10:21:40 +000092
Isabella Gottardi8e74f442018-03-01 16:42:00 +000093 if(output->total_size() != 0)
94 {
95 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, is_interleaved_transposed, reshape_info));
96 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
97 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, output);
98 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT(input0, output);
Georgios Pinitas358ca202017-12-07 16:47:52 +000099 }
100
101 return Status{};
102}
103
104inline std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *output,
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100105 bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info, GPUTarget gpu_target,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000106 ElementsProcessed &num_elements_processed)
107{
108 bool window_changed = false;
109 Window win{};
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000110 Window win_out{};
Georgios Pinitas358ca202017-12-07 16:47:52 +0000111
112 const DataType data_type = input0->data_type();
113 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
114 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
115
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100116 // Output tensor auto inizialitation if not yet initialized
117 auto_init_if_empty(*output, input0->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, is_interleaved_transposed, reshape_info)));
118
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000119 TensorInfo tmp_info(*output);
120
121 if(reshape_info.depth_output_gemm3d() != 1)
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
Georgios Pinitas358ca202017-12-07 16:47:52 +0000130 if(is_interleaved_transposed)
131 {
132 // Configure kernel window
133 num_elems_processed_per_iteration_x = max_cl_vector_width / data_size_from_type(data_type);
134 num_elems_processed_per_iteration_y = 4;
135
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000136 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
137 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
138 const int m = reshape_info.m();
139 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
140
141 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
142 win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000143
144 AccessWindowRectangle input0_access(input0, 0, 0, num_elems_processed_per_iteration_y, 1, 1.f, 0.25f);
Georgios Pinitas535fedd2018-05-04 18:52:25 +0100145 AccessWindowStatic input1_access(input1, 0, 0,
146 ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x),
147 ceil_to_multiple(input1->dimension(1), num_elems_processed_per_iteration_y));
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000148 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);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000151
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000152 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
Georgios Pinitas358ca202017-12-07 16:47:52 +0000154
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000155 output_access.set_valid_region(win_out, ValidRegion(Coordinates(0, 0), output->tensor_shape()));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000156 }
157 else // The input tensors have not been reshaped
158 {
159 // Special case for 1xN, 2xN, 3xN and 4xN input0 tensor. num_elems_processed_per_iteration_x is set up for the default case.
160 num_elems_processed_per_iteration_x = max_cl_vector_width / data_size_from_type(data_type);
161 num_elems_processed_per_iteration_y = std::min(static_cast<int>(output->dimension(1)), 4);
162
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000163 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
164 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
165 const int m = input0->tensor_shape()[1];
166 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
167
Georgios Pinitas358ca202017-12-07 16:47:52 +0000168 // Create kernels according to the architecture, data type and input size.
Michalis Spyroua9676112018-02-22 18:07:43 +0000169 GPUTarget arch_target = get_arch_from_target(gpu_target);
170 if(arch_target == GPUTarget::BIFROST && data_type == DataType::F32)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000171 {
Gian Marco1d25ed52017-12-16 19:33:50 +0000172 num_elems_processed_per_iteration_x = (input1->dimension(0) <= 1000 && input0->num_dimensions() == 1) ? 2 : 4;
Georgios Pinitas358ca202017-12-07 16:47:52 +0000173 }
174
175 // Configure window
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000176 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
177 win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000178
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000179 AccessWindowStatic input0_access(input0, 0, 0, input0->dimension(0), ceil_to_multiple(input0->dimension(1), num_elems_processed_per_iteration_y));
180 AccessWindowStatic input1_access(input1, 0, 0, ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x), input1->dimension(1));
181 AccessWindowStatic output_access(output, 0, 0,
182 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
183 output->dimension(1) + bottom_pad);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000184
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000185 window_changed = update_window_and_padding(win, input0_access, input1_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
Georgios Pinitas358ca202017-12-07 16:47:52 +0000187
188 Coordinates coord;
189 coord.set_num_dimensions(output->num_dimensions());
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000190 output_access.set_valid_region(win_out, ValidRegion(coord, output->tensor_shape()));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000191 }
192
Gian Marcoae2af742018-02-15 12:35:44 +0000193 // Collapse along the Z direction
194 // This collapse needs to be here in order to tune the Z dimension of LWS
Gian Marco Iodice81b28c42018-03-29 10:29:36 +0100195 Window collapsed = win;
196 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(output->num_dimensions()), 2u);
197 collapsed = win.collapse(win, dimension_to_collapse);
Gian Marcoae2af742018-02-15 12:35:44 +0000198
Georgios Pinitas358ca202017-12-07 16:47:52 +0000199 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Gian Marcoae2af742018-02-15 12:35:44 +0000200 return std::make_pair(err, collapsed);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000201}
202} // namespace
203
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100204CLGEMMMatrixMultiplyKernel::CLGEMMMatrixMultiplyKernel()
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000205 : _input0(nullptr), _input1(nullptr), _output(nullptr), _slide_matrix_b(true), _is_gemm3d(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100206{
207}
208
Gian Marco36a0a462018-01-12 10:21:40 +0000209void CLGEMMMatrixMultiplyKernel::configure(const ICLTensor *input0, const ICLTensor *input1, ICLTensor *output, float alpha, bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100210{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000211 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
212
213 // Perform validate step
Gian Marco36a0a462018-01-12 10:21:40 +0000214 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input0->info(), input1->info(), output->info(), is_interleaved_transposed, reshape_info));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100215
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000216 _input0 = input0;
217 _input1 = input1;
218 _output = output;
219 _slide_matrix_b = _input1->info()->num_dimensions() >= _input0->info()->num_dimensions();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100220
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000221 const DataType data_type = input0->info()->data_type();
222 const int fp_pos = input0->info()->fixed_point_position();
223
224 // Get target architecture
225 GPUTarget gpu_target = get_target();
226
227 // Check if the output has to be reinterpreted as 3D
228 _is_gemm3d = (reshape_info.depth_output_gemm3d() != 1) && is_data_type_float(data_type);
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000229
Georgios Pinitas358ca202017-12-07 16:47:52 +0000230 ElementsProcessed num_elements_processed{};
231
232 // Configure kernel window
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100233 auto win_config = validate_and_configure_window(input0->info(), input1->info(), output->info(), is_interleaved_transposed, reshape_info, gpu_target, num_elements_processed);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000234 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
235 ICLKernel::configure(win_config.second);
236
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000237 // Create build options
238 CLBuildOptions build_opts;
239 build_opts.add_option_if(is_data_type_fixed_point(data_type), "-DFIXED_POINT_POSITION=" + support::cpp11::to_string(fp_pos));
240
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000241 // Only define ALPHA when alpha is not 1.0f. This avoids performing unnecessary multiplications.
Georgios Pinitas358ca202017-12-07 16:47:52 +0000242 if(std::abs(1.0f - alpha) > 0.00001f)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100243 {
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000244 build_opts.add_option_if_else(is_data_type_fixed_point(data_type),
245 "-DALPHA=" + support::cpp11::to_string((data_type == DataType::QS8 ? sqcvt_qs8_f32(alpha, fp_pos) : sqcvt_qs16_f32(alpha, fp_pos))),
246 "-DALPHA=" + float_to_string_with_full_precision(alpha));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100247 }
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000248 build_opts.add_option_if(_is_gemm3d, "-DREINTERPRET_OUTPUT_AS_3D");
249 build_opts.add_option_if(_is_gemm3d, "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(1)));
250 build_opts.add_option_if(_is_gemm3d, "-DDEPTH_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(2)));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100251
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000252 // Do not slide matrix B if _slide_matrix_b = false
253 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
254
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100255 const bool is_bifrost = get_arch_from_target(gpu_target) == GPUTarget::BIFROST;
256
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000257 std::string kernel_name;
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100258 if(is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100259 {
Gian Marco36a0a462018-01-12 10:21:40 +0000260 const int mult_transpose1xW_width = reshape_info.mult_transpose1xW_width();
261 const int mult_interleave4x4_height = reshape_info.mult_interleave4x4_height();
262
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000263 build_opts.add_option("-DCOLS_B=" + support::cpp11::to_string(input1->info()->dimension(0)));
Gian Marco36a0a462018-01-12 10:21:40 +0000264 build_opts.add_option("-DMULT_TRANSPOSE1XW_WIDTH=" + support::cpp11::to_string(mult_transpose1xW_width));
265 build_opts.add_option("-DMULT_INTERLEAVE4X4_HEIGHT=" + support::cpp11::to_string(mult_interleave4x4_height));
266
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100267 if(is_data_type_float(data_type) && is_bifrost)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100268 {
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100269 kernel_name = "gemm_mm_interleaved_transposed_" + lower_string(string_from_data_type(data_type)) + "_bifrost";
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100270 }
271 else
272 {
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000273 kernel_name = "gemm_mm_interleaved_transposed_" + lower_string(string_from_data_type(data_type));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100274 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100275 }
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100276 else // The input tensors have not been reshaped
277 {
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000278 build_opts.add_option("-DCOLS_A=" + support::cpp11::to_string(input0->info()->dimension(0)));
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100279 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100280
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000281 // Create kernels according to the architecture, data type and input size.
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100282 if(is_data_type_float(data_type) && is_bifrost)
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100283 {
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100284 kernel_name = "gemm_mm_floating_point";
285
286 if(input0->info()->num_dimensions() != 1)
Gian Marco Iodicefd683112018-04-17 09:52:44 +0100287 {
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100288 kernel_name += "_" + lower_string(string_from_data_type(data_type)) + "_bifrost";
289 }
290 else if(input1->info()->dimension(0) <= 1000 && data_type == DataType::F32)
291 {
292 // The first kernel is optimized for the case of 1000 or less output elements (e.g. FC8 of AlexNet and VGG-16, and
293 // FC1 of Inception v3). The second kernel is optimized for the case of greater than 1000 output elements (e.g.
294 // FC6 and FC7 of AlexNet and VGG-16).
295 kernel_name += "_" + lower_string(string_from_data_type(data_type)) + "_bifrost_1000";
Gian Marco Iodicefd683112018-04-17 09:52:44 +0100296 }
Georgios Pinitas358ca202017-12-07 16:47:52 +0000297
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000298 // The work-group size equal to the Bifrost quad size has been proved to be optimal for these kernels
299 // via exhaustive autotuning over a range of representative layer configurations.
300 _lws_hint = cl::NDRange(4);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100301 }
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000302 else if(is_data_type_fixed_point(data_type))
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100303 {
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000304 kernel_name = "gemm_mm_" + lower_string(string_from_data_type(data_type));
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100305 }
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000306 else // (MIDGARD and F32) or (F16)
307 {
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000308 kernel_name = "gemm_mm_floating_point";
309 }
Georgios Pinitas358ca202017-12-07 16:47:52 +0000310 build_opts.add_option("-DNUM_ELEMS_PROCESSED_PER_THREAD_Y=" + support::cpp11::to_string(num_elements_processed.y()));
311 build_opts.add_option("-DNUM_ELEMS_PROCESSED_PER_THREAD_X=" + support::cpp11::to_string(num_elements_processed.x()));
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100312 }
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000313
314 // Create kernel
315 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
316
317 // Set config_id for enabling LWS tuning
318 _config_id = "gemm_";
319 _config_id += (is_interleaved_transposed ? "reshaped_" : "");
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000320 _config_id += (_is_gemm3d ? "3d_" : "");
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000321 _config_id += lower_string(string_from_data_type(input0->info()->data_type()));
322 _config_id += "_";
323 _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 Marcoae2af742018-02-15 12:35:44 +0000327 _config_id += support::cpp11::to_string(output->info()->dimension(2));
328 _config_id += "_";
329 _config_id += support::cpp11::to_string(output->info()->dimension(3));
330 _config_id += "_";
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000331 _config_id += (is_interleaved_transposed ? support::cpp11::to_string(input1->info()->dimension(0)) : support::cpp11::to_string(input1->info()->dimension(1)));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100332}
333
Gian Marco36a0a462018-01-12 10:21:40 +0000334Status CLGEMMMatrixMultiplyKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output, float alpha, bool is_interleaved_transposed,
335 const GEMMReshapeInfo &reshape_info, GPUTarget gpu_target)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000336{
Gian Marco36a0a462018-01-12 10:21:40 +0000337 // Note: num_elements_processed will be set in validate_and_configure_window()
Georgios Pinitas358ca202017-12-07 16:47:52 +0000338 ElementsProcessed num_elements_processed{};
339 ARM_COMPUTE_UNUSED(alpha);
Gian Marco36a0a462018-01-12 10:21:40 +0000340 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, output, is_interleaved_transposed, reshape_info));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000341 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input0->clone().get(),
342 input1->clone().get(),
343 output->clone().get(),
344 is_interleaved_transposed,
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100345 reshape_info,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000346 gpu_target,
347 num_elements_processed)
348 .first);
349
350 return Status{};
351}
352
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100353void CLGEMMMatrixMultiplyKernel::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
Gian Marcoae2af742018-02-15 12:35:44 +0000358 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();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100365 Window slice_matrix_b = slice;
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100366
367 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
368 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100369
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000370 if(_is_gemm3d)
371 {
372 // Pass bottom paddings to the kernel if the output has to be reinterpreted as 3D tensor
373 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3;
374 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(_output->info()->padding().bottom));
375 }
376
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100377 do
378 {
379 Window slice_b = slice;
380 // Don't slice matrix B along the z dimension if matrix B has just 2 dimensions and matrix A more than 2
Gian Marcoae2af742018-02-15 12:35:44 +0000381 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000382 if(!_slide_matrix_b)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100383 {
384 slice_b = slice_matrix_b;
385 }
386
387 unsigned int idx = 0;
388 add_2D_tensor_argument(idx, _input0, slice);
389 add_2D_tensor_argument(idx, _input1, slice_b);
390 add_2D_tensor_argument(idx, _output, slice);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000391 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input0->info()->strides_in_bytes()[2]));
392 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input1->info()->strides_in_bytes()[2]));
393 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[2]));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100394 enqueue(queue, *this, slice, _lws_hint);
395 }
Gian Marcoae2af742018-02-15 12:35:44 +0000396 while(window.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100397}