blob: 89fe7a4650e229a373fef408322f74d6d1246bb1 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
giuros011c9efeb2019-01-11 14:04:43 +00002 * Copyright (c) 2017-2019 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"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/CL/CLKernelLibrary.h"
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010029#include "arm_compute/core/CL/CLValidate.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#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"
Isabella Gottardid56e7702018-02-28 14:29:36 +000034#include "arm_compute/core/TensorInfo.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010035#include "arm_compute/core/Types.h"
36#include "arm_compute/core/Utils.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037#include "arm_compute/core/Window.h"
Gian Marco36a0a462018-01-12 10:21:40 +000038#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039
40#include <set>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041#include <string>
42
giuros011c9efeb2019-01-11 14:04:43 +000043namespace arm_compute
44{
Gian Marco36a0a462018-01-12 10:21:40 +000045using namespace arm_compute::misc::shape_calculator;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010046
Georgios Pinitas358ca202017-12-07 16:47:52 +000047namespace
48{
49using ElementsProcessed = Steps;
50
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +000051inline Status validate_arguments(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output, bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info,
52 bool fp_mixed_precision)
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);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010056 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::F16, DataType::F32);
Gian Marco36a0a462018-01-12 10:21:40 +000057 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1);
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +000058 ARM_COMPUTE_RETURN_ERROR_ON_MSG((fp_mixed_precision && (input0->data_type() != DataType::F16)), "Mixed precision floating point is supported only for F16 data");
Isabella Gottardi8e74f442018-03-01 16:42:00 +000059 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 +000060 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input1->num_dimensions() > 3, "The number of dimensions for the matrix B must be <= 3");
Gian Marco Iodice68a3f562018-07-26 11:44:03 +010061 ARM_COMPUTE_RETURN_ERROR_ON_MSG(is_interleaved_transposed && reshape_info.reinterpret_input_as_3d(), "The input tensor cannot be reinterpreted as 3D if is_interleaved_transposed is true");
Gian Marco Iodiced39e2b12018-08-06 14:31:15 +010062 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input1->num_dimensions() > 2 && reshape_info.reinterpret_input_as_3d(), "The input1 tensor cannot have more than 2 dimensions if input0 has to be reinterpreted as 3D");
Gian Marco36a0a462018-01-12 10:21:40 +000063
Georgios Pinitas358ca202017-12-07 16:47:52 +000064 if(!is_interleaved_transposed)
65 {
66 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(0) != input1->dimension(1));
Gian Marco36a0a462018-01-12 10:21:40 +000067 }
68 else
69 {
giuros018b6b4a92018-12-18 19:01:33 +000070 GEMMRHSMatrixInfo rhs_info;
giuros011c9efeb2019-01-11 14:04:43 +000071 GEMMLHSMatrixInfo lhs_info;
giuros018b6b4a92018-12-18 19:01:33 +000072 const int m = reshape_info.m();
73 const int n = reshape_info.n();
74 const int k = reshape_info.k();
75 const int mult_transpose1xW_width = reshape_info.mult_transpose1xW_width();
76 const int mult_interleave4x4_height = reshape_info.mult_interleave4x4_height();
77 rhs_info.n0 = 16 / input1->element_size();
78 rhs_info.k0 = 1;
79 rhs_info.h0 = mult_transpose1xW_width;
80 rhs_info.interleave = false;
81 rhs_info.transpose = false;
giuros011c9efeb2019-01-11 14:04:43 +000082 lhs_info.m0 = 4;
83 lhs_info.k0 = 4;
84 lhs_info.v0 = mult_interleave4x4_height;
85 lhs_info.interleave = true;
86 lhs_info.transpose = true;
Gian Marco36a0a462018-01-12 10:21:40 +000087
88 TensorShape tensor_shape0{ input0->tensor_shape() };
89 tensor_shape0.set(0, k);
90 tensor_shape0.set(1, m);
91
92 TensorShape tensor_shape1{ input1->tensor_shape() };
93 tensor_shape1.set(0, n);
94 tensor_shape1.set(1, k);
95
96 const TensorInfo tensor_info0 = input0->clone()->set_tensor_shape(tensor_shape0);
97 const TensorInfo tensor_info1 = input1->clone()->set_tensor_shape(tensor_shape1);
98
giuros011c9efeb2019-01-11 14:04:43 +000099 const TensorInfo tensor_info_reshaped0 = input0->clone()->set_tensor_shape(compute_lhs_reshaped_shape(tensor_info0, lhs_info));
giuros018b6b4a92018-12-18 19:01:33 +0000100 const TensorInfo tensor_info_reshaped1 = input1->clone()->set_tensor_shape(compute_rhs_reshaped_shape(tensor_info1, rhs_info));
Gian Marco36a0a462018-01-12 10:21:40 +0000101
102 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input0, &tensor_info_reshaped0);
103 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input1, &tensor_info_reshaped1);
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000104 }
Gian Marco36a0a462018-01-12 10:21:40 +0000105
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000106 if(output->total_size() != 0)
107 {
108 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, is_interleaved_transposed, reshape_info));
109 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
110 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, output);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000111 }
112
113 return Status{};
114}
115
116inline std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *output,
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100117 bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info, GPUTarget gpu_target,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000118 ElementsProcessed &num_elements_processed)
119{
120 bool window_changed = false;
121 Window win{};
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000122 Window win_out{};
Georgios Pinitas358ca202017-12-07 16:47:52 +0000123
124 const DataType data_type = input0->data_type();
125 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
126 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
Gian Marco Iodiced39e2b12018-08-06 14:31:15 +0100127 bool reinterpret_input_as_3d = reshape_info.reinterpret_input_as_3d();
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000128 bool reinterpret_output_as_3d = (reshape_info.depth_output_gemm3d() != 0);
Gian Marco Iodiced39e2b12018-08-06 14:31:15 +0100129
130 // In case both input and output have to be reinterpreted as 3D tensors,
131 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
132 if(reinterpret_input_as_3d == reinterpret_output_as_3d)
133 {
134 reinterpret_input_as_3d = false;
135 reinterpret_output_as_3d = false;
136 }
Georgios Pinitas358ca202017-12-07 16:47:52 +0000137
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100138 // Output tensor auto inizialitation if not yet initialized
Isabella Gottardic4f582e2018-10-11 19:14:55 +0100139 auto_init_if_empty(*output, input0->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, is_interleaved_transposed, reshape_info)));
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100140
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000141 TensorInfo tmp_info(*output);
142
Gian Marco Iodiced39e2b12018-08-06 14:31:15 +0100143 if(reinterpret_output_as_3d)
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000144 {
145 // Since the output tensor has to be reinterpreted as 3D and the execute window is based on a 2D GEMM,
146 // the window needs to be constructed on the 2D collapsed version of the tensor
147 TensorShape tmp_shape(output->tensor_shape());
148 tmp_shape.collapse(2U, 1U);
149 tmp_info.set_tensor_shape(tmp_shape);
150 }
151
Georgios Pinitas358ca202017-12-07 16:47:52 +0000152 if(is_interleaved_transposed)
153 {
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100154 // reinterpret_input_as_3d is not supported if is_interleaved_transposed is set
Isabella Gottardic4f582e2018-10-11 19:14:55 +0100155 ARM_COMPUTE_ERROR_ON(reshape_info.reinterpret_input_as_3d());
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100156
Georgios Pinitas358ca202017-12-07 16:47:52 +0000157 // Configure kernel window
158 num_elems_processed_per_iteration_x = max_cl_vector_width / data_size_from_type(data_type);
159 num_elems_processed_per_iteration_y = 4;
160
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000161 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
162 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
163 const int m = reshape_info.m();
164 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
165
166 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
167 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 +0000168
169 AccessWindowRectangle input0_access(input0, 0, 0, num_elems_processed_per_iteration_y, 1, 1.f, 0.25f);
Georgios Pinitas535fedd2018-05-04 18:52:25 +0100170 AccessWindowStatic input1_access(input1, 0, 0,
171 ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x),
172 ceil_to_multiple(input1->dimension(1), num_elems_processed_per_iteration_y));
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000173 AccessWindowStatic output_access(output, 0, 0,
174 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
175 output->dimension(1) + bottom_pad);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000176
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000177 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
178 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 +0000179
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000180 output_access.set_valid_region(win_out, ValidRegion(Coordinates(0, 0), output->tensor_shape()));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000181 }
182 else // The input tensors have not been reshaped
183 {
184 // Special case for 1xN, 2xN, 3xN and 4xN input0 tensor. num_elems_processed_per_iteration_x is set up for the default case.
185 num_elems_processed_per_iteration_x = max_cl_vector_width / data_size_from_type(data_type);
186 num_elems_processed_per_iteration_y = std::min(static_cast<int>(output->dimension(1)), 4);
187
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000188 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
189 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
Gian Marco Iodiced39e2b12018-08-06 14:31:15 +0100190 const int m = reinterpret_input_as_3d ? input0->tensor_shape()[1] * input0->tensor_shape()[2] : input0->tensor_shape()[1];
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000191 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
192
Georgios Pinitas358ca202017-12-07 16:47:52 +0000193 // Create kernels according to the architecture, data type and input size.
Michalis Spyroua9676112018-02-22 18:07:43 +0000194 GPUTarget arch_target = get_arch_from_target(gpu_target);
195 if(arch_target == GPUTarget::BIFROST && data_type == DataType::F32)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000196 {
Gian Marco1d25ed52017-12-16 19:33:50 +0000197 num_elems_processed_per_iteration_x = (input1->dimension(0) <= 1000 && input0->num_dimensions() == 1) ? 2 : 4;
Georgios Pinitas358ca202017-12-07 16:47:52 +0000198 }
199
200 // Configure window
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000201 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
202 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 +0000203
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100204 AccessWindowStatic input0_access(input0, 0, 0, input0->dimension(0), input0->dimension(1) + bottom_pad);
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000205 AccessWindowStatic input1_access(input1, 0, 0, ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x), input1->dimension(1));
206 AccessWindowStatic output_access(output, 0, 0,
207 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
208 output->dimension(1) + bottom_pad);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000209
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000210 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
Georgios Pinitas358ca202017-12-07 16:47:52 +0000212
213 Coordinates coord;
214 coord.set_num_dimensions(output->num_dimensions());
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000215 output_access.set_valid_region(win_out, ValidRegion(coord, output->tensor_shape()));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000216 }
217
Gian Marcoae2af742018-02-15 12:35:44 +0000218 // Collapse along the Z direction
219 // This collapse needs to be here in order to tune the Z dimension of LWS
Gian Marco Iodice81b28c42018-03-29 10:29:36 +0100220 Window collapsed = win;
221 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(output->num_dimensions()), 2u);
222 collapsed = win.collapse(win, dimension_to_collapse);
Gian Marcoae2af742018-02-15 12:35:44 +0000223
Georgios Pinitas358ca202017-12-07 16:47:52 +0000224 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Gian Marcoae2af742018-02-15 12:35:44 +0000225 return std::make_pair(err, collapsed);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000226}
227} // namespace
228
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100229CLGEMMMatrixMultiplyKernel::CLGEMMMatrixMultiplyKernel()
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100230 : _input0(nullptr), _input1(nullptr), _output(nullptr), _slide_matrix_b(true), _reinterpret_input_as_3d(false), _reinterpret_output_as_3d(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100231{
232}
233
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000234void CLGEMMMatrixMultiplyKernel::configure(const ICLTensor *input0, const ICLTensor *input1, ICLTensor *output, float alpha, bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info,
235 bool fp_mixed_precision)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100236{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000237 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
238
239 // Perform validate step
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000240 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input0->info(), input1->info(), output->info(), is_interleaved_transposed, reshape_info, fp_mixed_precision));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100241
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100242 _input0 = input0;
243 _input1 = input1;
244 _output = output;
245 _reinterpret_input_as_3d = reshape_info.reinterpret_input_as_3d();
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000246 _reinterpret_output_as_3d = (reshape_info.depth_output_gemm3d() != 0);
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100247
Gian Marco Iodiced39e2b12018-08-06 14:31:15 +0100248 // In case both input and output have to be reinterpreted as 3D tensors,
249 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
250 if(_reinterpret_input_as_3d == _reinterpret_output_as_3d)
251 {
252 _reinterpret_input_as_3d = false;
253 _reinterpret_output_as_3d = false;
254 }
255
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100256 // Check if we need to slide the matrix B
257 const unsigned int num_dimensions_input0 = _reinterpret_input_as_3d ? _input0->info()->num_dimensions() - 1 : _input0->info()->num_dimensions();
258
259 _slide_matrix_b = (_input1->info()->num_dimensions() >= num_dimensions_input0);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100260
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000261 const DataType data_type = input0->info()->data_type();
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000262
263 // Get target architecture
264 GPUTarget gpu_target = get_target();
265
Georgios Pinitas358ca202017-12-07 16:47:52 +0000266 ElementsProcessed num_elements_processed{};
267
268 // Configure kernel window
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100269 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 +0000270 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100271 ICLKernel::configure_internal(win_config.second);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000272
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000273 // Create build options
274 CLBuildOptions build_opts;
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000275
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000276 // Only define ALPHA when alpha is not 1.0f. This avoids performing unnecessary multiplications.
Georgios Pinitas358ca202017-12-07 16:47:52 +0000277 if(std::abs(1.0f - alpha) > 0.00001f)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100278 {
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100279 build_opts.add_option("-DALPHA=" + float_to_string_with_full_precision(alpha));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100280 }
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100281 build_opts.add_option_if(_reinterpret_input_as_3d, "-DREINTERPRET_INPUT_AS_3D");
282 build_opts.add_option_if(_reinterpret_output_as_3d, "-DREINTERPRET_OUTPUT_AS_3D");
283 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(1)));
284 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DDEPTH_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(2)));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100285
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000286 // Do not slide matrix B if _slide_matrix_b = false
287 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
288
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100289 const bool is_bifrost = get_arch_from_target(gpu_target) == GPUTarget::BIFROST;
290
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000291 std::string kernel_name;
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100292 if(is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100293 {
Gian Marco36a0a462018-01-12 10:21:40 +0000294 const int mult_transpose1xW_width = reshape_info.mult_transpose1xW_width();
295 const int mult_interleave4x4_height = reshape_info.mult_interleave4x4_height();
296
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000297 build_opts.add_option("-DCOLS_B=" + support::cpp11::to_string(input1->info()->dimension(0)));
Gian Marco36a0a462018-01-12 10:21:40 +0000298 build_opts.add_option("-DMULT_TRANSPOSE1XW_WIDTH=" + support::cpp11::to_string(mult_transpose1xW_width));
299 build_opts.add_option("-DMULT_INTERLEAVE4X4_HEIGHT=" + support::cpp11::to_string(mult_interleave4x4_height));
300
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100301 if(is_data_type_float(data_type) && is_bifrost)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100302 {
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100303 kernel_name = "gemm_mm_interleaved_transposed_" + lower_string(string_from_data_type(data_type)) + "_bifrost";
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100304 }
305 else
306 {
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000307 kernel_name = "gemm_mm_interleaved_transposed_" + lower_string(string_from_data_type(data_type));
Vidhya Sudhan Loganathan38d93bd2018-11-20 15:38:13 +0000308 if(fp_mixed_precision && data_type == DataType::F16)
309 {
310 // currently wider accumulator is only supported for fp16 kernels.
311 kernel_name += "_acc32";
312 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100313 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100314 }
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100315 else // The input tensors have not been reshaped
316 {
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000317 build_opts.add_option("-DCOLS_A=" + support::cpp11::to_string(input0->info()->dimension(0)));
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100318 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100319
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000320 // Create kernels according to the architecture, data type and input size.
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100321 if(is_data_type_float(data_type) && is_bifrost)
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100322 {
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100323 kernel_name = "gemm_mm_floating_point";
324
325 if(input0->info()->num_dimensions() != 1)
Gian Marco Iodicefd683112018-04-17 09:52:44 +0100326 {
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100327 kernel_name += "_" + lower_string(string_from_data_type(data_type)) + "_bifrost";
Vidhya Sudhan Loganathan38d93bd2018-11-20 15:38:13 +0000328 if(fp_mixed_precision && data_type == DataType::F16)
329 {
330 // currently wider accumulator is only supported for fp16 kernels.
331 kernel_name += "_acc32";
332 }
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100333 }
334 else if(input1->info()->dimension(0) <= 1000 && data_type == DataType::F32)
335 {
336 // The first kernel is optimized for the case of 1000 or less output elements (e.g. FC8 of AlexNet and VGG-16, and
337 // FC1 of Inception v3). The second kernel is optimized for the case of greater than 1000 output elements (e.g.
338 // FC6 and FC7 of AlexNet and VGG-16).
339 kernel_name += "_" + lower_string(string_from_data_type(data_type)) + "_bifrost_1000";
Gian Marco Iodicefd683112018-04-17 09:52:44 +0100340 }
Georgios Pinitas358ca202017-12-07 16:47:52 +0000341
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000342 // The work-group size equal to the Bifrost quad size has been proved to be optimal for these kernels
343 // via exhaustive autotuning over a range of representative layer configurations.
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100344 set_lws_hint(cl::NDRange(4));
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100345 }
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000346 else // (MIDGARD and F32) or (F16)
347 {
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000348 kernel_name = "gemm_mm_floating_point";
349 }
Georgios Pinitas358ca202017-12-07 16:47:52 +0000350 build_opts.add_option("-DNUM_ELEMS_PROCESSED_PER_THREAD_Y=" + support::cpp11::to_string(num_elements_processed.y()));
351 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 +0100352 }
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000353
354 // Create kernel
355 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
356
357 // Set config_id for enabling LWS tuning
358 _config_id = "gemm_";
359 _config_id += (is_interleaved_transposed ? "reshaped_" : "");
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000360 _config_id += (fp_mixed_precision ? "fp_mixed_" : "");
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100361 _config_id += (_reinterpret_input_as_3d ? "3di_" : "");
362 _config_id += (_reinterpret_output_as_3d ? "3do_" : "");
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000363 _config_id += lower_string(string_from_data_type(input0->info()->data_type()));
364 _config_id += "_";
365 _config_id += support::cpp11::to_string(output->info()->dimension(1));
366 _config_id += "_";
367 _config_id += support::cpp11::to_string(output->info()->dimension(0));
368 _config_id += "_";
Gian Marcoae2af742018-02-15 12:35:44 +0000369 _config_id += support::cpp11::to_string(output->info()->dimension(2));
370 _config_id += "_";
371 _config_id += support::cpp11::to_string(output->info()->dimension(3));
372 _config_id += "_";
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000373 _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 +0100374}
375
Gian Marco36a0a462018-01-12 10:21:40 +0000376Status CLGEMMMatrixMultiplyKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output, float alpha, bool is_interleaved_transposed,
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000377 const GEMMReshapeInfo &reshape_info, GPUTarget gpu_target, bool fp_mixed_precision)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000378{
Gian Marco36a0a462018-01-12 10:21:40 +0000379 // Note: num_elements_processed will be set in validate_and_configure_window()
Georgios Pinitas358ca202017-12-07 16:47:52 +0000380 ElementsProcessed num_elements_processed{};
381 ARM_COMPUTE_UNUSED(alpha);
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000382 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, output, is_interleaved_transposed, reshape_info, fp_mixed_precision));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000383 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input0->clone().get(),
384 input1->clone().get(),
385 output->clone().get(),
386 is_interleaved_transposed,
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100387 reshape_info,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000388 gpu_target,
389 num_elements_processed)
390 .first);
391
392 return Status{};
393}
394
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100395void CLGEMMMatrixMultiplyKernel::run(const Window &window, cl::CommandQueue &queue)
396{
397 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
398 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
399
Gian Marcoae2af742018-02-15 12:35:44 +0000400 if(_input1->info()->num_dimensions() < 3)
401 {
402 // The stride_z for matrix B must be zero if we do not slice
403 ARM_COMPUTE_ERROR_ON(_input1->info()->strides_in_bytes()[3] != 0);
404 }
405
406 Window slice = window.first_slice_window_3D();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100407 Window slice_matrix_b = slice;
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100408
409 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
410 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100411
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100412 if(_reinterpret_input_as_3d)
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000413 {
Isabella Gottardib92805b2018-09-28 18:24:27 +0100414 // Pass bottom paddings to the kernel if the input has to be reinterpreted as 3D tensor
Georgios Pinitase8bd2c72018-07-11 15:54:56 +0100415 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3;
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100416 const unsigned int total_cross_plane_pad = _input0->info()->padding().top + _input0->info()->padding().bottom;
417 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
418 }
419
420 if(_reinterpret_output_as_3d)
421 {
422 // Pass bottom paddings to the kernel if the output has to be reinterpreted as 3D tensor
423 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3 + (_reinterpret_input_as_3d ? 1 : 0);
Georgios Pinitase8bd2c72018-07-11 15:54:56 +0100424 const unsigned int total_cross_plane_pad = _output->info()->padding().top + _output->info()->padding().bottom;
425 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000426 }
427
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100428 do
429 {
430 Window slice_b = slice;
431 // 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 +0000432 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000433 if(!_slide_matrix_b)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100434 {
435 slice_b = slice_matrix_b;
436 }
437
438 unsigned int idx = 0;
439 add_2D_tensor_argument(idx, _input0, slice);
440 add_2D_tensor_argument(idx, _input1, slice_b);
441 add_2D_tensor_argument(idx, _output, slice);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000442 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input0->info()->strides_in_bytes()[2]));
443 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input1->info()->strides_in_bytes()[2]));
444 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[2]));
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100445 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100446 }
Gian Marcoae2af742018-02-15 12:35:44 +0000447 while(window.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100448}
giuros011c9efeb2019-01-11 14:04:43 +0000449} // namespace arm_compute