blob: c64ed580ce083e74aaae5cf5436363fb2021d817 [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 Marco Iodice82d9dd12019-06-10 16:45:40 +010038#include "arm_compute/core/utils/helpers/float_ops.h"
Gian Marco36a0a462018-01-12 10:21:40 +000039#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040
41#include <set>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010042#include <string>
43
giuros011c9efeb2019-01-11 14:04:43 +000044namespace arm_compute
45{
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
Michele Di Giorgioebc3a902018-11-16 16:04:25 +000052inline Status validate_arguments(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float beta,
53 bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info, bool fp_mixed_precision)
Georgios Pinitas358ca202017-12-07 16:47:52 +000054{
Georgios Pinitas78c00902018-01-09 17:33:11 +000055 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input0, input1, output);
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010056 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input0);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010057 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::F16, DataType::F32);
Gian Marco36a0a462018-01-12 10:21:40 +000058 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1);
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +000059 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 +000060 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 Marco Iodice68a3f562018-07-26 11:44:03 +010062 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 +010063 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 Marco Iodiceb238f5f2019-08-02 09:09:53 +010064 ARM_COMPUTE_RETURN_ERROR_ON_MSG((reshape_info.reinterpret_input_as_3d() || reshape_info.depth_output_gemm3d() != 0) && (input2 != nullptr)
65 && (!reshape_info.broadcast_bias()), "Bias addition only supported with broadcast mode in case the input or output has to be reinterpreted as 3D");
Gian Marco36a0a462018-01-12 10:21:40 +000066
Georgios Pinitas358ca202017-12-07 16:47:52 +000067 if(!is_interleaved_transposed)
68 {
69 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(0) != input1->dimension(1));
Michele Di Giorgioebc3a902018-11-16 16:04:25 +000070
Gian Marco Iodiced1f54762019-07-19 09:54:47 +010071 if(input2 != nullptr && !(helpers::float_ops::is_zero(beta)))
Michele Di Giorgioebc3a902018-11-16 16:04:25 +000072 {
Gian Marco Iodiced1f54762019-07-19 09:54:47 +010073 const unsigned int m = reshape_info.reinterpret_input_as_3d() ? input0->dimension(1) * input0->dimension(2) : input0->dimension(1);
74 const unsigned int n = input1->dimension(0);
75 const unsigned int input2_dim0 = input2->dimension(0);
76 const unsigned int input2_dim1 = input2->dimension(1);
77
78 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input2, input1);
79 if(reshape_info.broadcast_bias())
80 {
81 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input2_dim1 != 1 || input2_dim0 != n), "Incorrect dimension of bias matrix which is to be broadcasted");
82 }
83 else
84 {
85 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input2_dim0 != n || input2_dim1 != m), "Incorrect dimension of bias matrix");
86 }
Michele Di Giorgioebc3a902018-11-16 16:04:25 +000087 }
Gian Marco36a0a462018-01-12 10:21:40 +000088 }
89 else
90 {
giuros018b6b4a92018-12-18 19:01:33 +000091 GEMMRHSMatrixInfo rhs_info;
giuros011c9efeb2019-01-11 14:04:43 +000092 GEMMLHSMatrixInfo lhs_info;
Gian Marco Iodiced1f54762019-07-19 09:54:47 +010093 const auto m = static_cast<unsigned int>(reshape_info.m());
94 const auto n = static_cast<unsigned int>(reshape_info.n());
giuros018b6b4a92018-12-18 19:01:33 +000095 const int k = reshape_info.k();
96 const int mult_transpose1xW_width = reshape_info.mult_transpose1xW_width();
97 const int mult_interleave4x4_height = reshape_info.mult_interleave4x4_height();
98 rhs_info.n0 = 16 / input1->element_size();
99 rhs_info.k0 = 1;
100 rhs_info.h0 = mult_transpose1xW_width;
101 rhs_info.interleave = false;
102 rhs_info.transpose = false;
giuros011c9efeb2019-01-11 14:04:43 +0000103 lhs_info.m0 = 4;
104 lhs_info.k0 = 4;
105 lhs_info.v0 = mult_interleave4x4_height;
106 lhs_info.interleave = true;
107 lhs_info.transpose = true;
Gian Marco36a0a462018-01-12 10:21:40 +0000108
109 TensorShape tensor_shape0{ input0->tensor_shape() };
110 tensor_shape0.set(0, k);
111 tensor_shape0.set(1, m);
112
113 TensorShape tensor_shape1{ input1->tensor_shape() };
114 tensor_shape1.set(0, n);
115 tensor_shape1.set(1, k);
116
117 const TensorInfo tensor_info0 = input0->clone()->set_tensor_shape(tensor_shape0);
118 const TensorInfo tensor_info1 = input1->clone()->set_tensor_shape(tensor_shape1);
119
giuros011c9efeb2019-01-11 14:04:43 +0000120 const TensorInfo tensor_info_reshaped0 = input0->clone()->set_tensor_shape(compute_lhs_reshaped_shape(tensor_info0, lhs_info));
giuros018b6b4a92018-12-18 19:01:33 +0000121 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 +0000122
123 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input0, &tensor_info_reshaped0);
124 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input1, &tensor_info_reshaped1);
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000125
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100126 if(input2 != nullptr && !(helpers::float_ops::is_zero(beta)))
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000127 {
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100128 const unsigned int input2_dim0 = input2->dimension(0);
129 const unsigned int input2_dim1 = input2->dimension(1);
130
131 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input2, input1);
132 if(reshape_info.broadcast_bias())
133 {
134 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input2_dim1 != 1 || input2_dim0 != n), "Incorrect dimension of bias matrix which is to be broadcasted");
135 }
136 else
137 {
138 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input2_dim0 != n || input2_dim1 != m), "Incorrect dimension of bias matrix");
139 }
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000140 }
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000141 }
Gian Marco36a0a462018-01-12 10:21:40 +0000142
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000143 if(output->total_size() != 0)
144 {
145 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, is_interleaved_transposed, reshape_info));
146 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
147 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, output);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000148 }
149
150 return Status{};
151}
152
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000153inline std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *input2, ITensorInfo *output,
154 float beta, bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info, GPUTarget gpu_target,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000155 ElementsProcessed &num_elements_processed)
156{
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000157 ARM_COMPUTE_UNUSED(beta);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000158 bool window_changed = false;
159 Window win{};
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000160 Window win_out{};
Georgios Pinitas358ca202017-12-07 16:47:52 +0000161
162 const DataType data_type = input0->data_type();
163 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
164 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
Gian Marco Iodiced39e2b12018-08-06 14:31:15 +0100165 bool reinterpret_input_as_3d = reshape_info.reinterpret_input_as_3d();
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000166 bool reinterpret_output_as_3d = (reshape_info.depth_output_gemm3d() != 0);
Gian Marco Iodiced39e2b12018-08-06 14:31:15 +0100167
168 // In case both input and output have to be reinterpreted as 3D tensors,
169 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
170 if(reinterpret_input_as_3d == reinterpret_output_as_3d)
171 {
172 reinterpret_input_as_3d = false;
173 reinterpret_output_as_3d = false;
174 }
Georgios Pinitas358ca202017-12-07 16:47:52 +0000175
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100176 // Output tensor auto inizialitation if not yet initialized
Isabella Gottardic4f582e2018-10-11 19:14:55 +0100177 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 +0100178
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000179 TensorInfo tmp_info(*output);
180
Gian Marco Iodiced39e2b12018-08-06 14:31:15 +0100181 if(reinterpret_output_as_3d)
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000182 {
183 // Since the output tensor has to be reinterpreted as 3D and the execute window is based on a 2D GEMM,
184 // the window needs to be constructed on the 2D collapsed version of the tensor
185 TensorShape tmp_shape(output->tensor_shape());
186 tmp_shape.collapse(2U, 1U);
187 tmp_info.set_tensor_shape(tmp_shape);
188 }
189
Georgios Pinitas358ca202017-12-07 16:47:52 +0000190 if(is_interleaved_transposed)
191 {
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100192 // reinterpret_input_as_3d is not supported if is_interleaved_transposed is set
Isabella Gottardic4f582e2018-10-11 19:14:55 +0100193 ARM_COMPUTE_ERROR_ON(reshape_info.reinterpret_input_as_3d());
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100194
Georgios Pinitas358ca202017-12-07 16:47:52 +0000195 // Configure kernel window
196 num_elems_processed_per_iteration_x = max_cl_vector_width / data_size_from_type(data_type);
197 num_elems_processed_per_iteration_y = 4;
198
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000199 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
200 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
201 const int m = reshape_info.m();
202 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
203
204 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
205 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 +0000206
Michele Di Giorgio17a01a32019-01-03 15:12:27 +0000207 AccessWindowStatic input0_access(input0, 0, 0, input0->dimension(0), input0->dimension(1));
208 AccessWindowStatic input1_access(input1, 0, 0,
209 ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x),
210 ceil_to_multiple(input1->dimension(1), num_elems_processed_per_iteration_y));
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000211 AccessWindowStatic output_access(output, 0, 0,
212 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
213 output->dimension(1) + bottom_pad);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000214
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100215 if(input2 != nullptr)
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000216 {
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100217 const int bias_processed_per_iteration_x = num_elems_processed_per_iteration_x;
218
219 const int bias_processed_per_iteration_y = reshape_info.broadcast_bias() ? 1 : num_elems_processed_per_iteration_y;
220
221 AccessWindowStatic input2_access(input2, 0, 0,
222 ceil_to_multiple(input2->dimension(0), bias_processed_per_iteration_x),
223 ceil_to_multiple(input2->dimension(1), bias_processed_per_iteration_y));
224
225 window_changed = update_window_and_padding(win, input0_access, input1_access, input2_access) || // window used by the execute_window_loop
226 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
227 }
228 else
229 {
230 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
231 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000232 }
Georgios Pinitas358ca202017-12-07 16:47:52 +0000233
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000234 output_access.set_valid_region(win_out, ValidRegion(Coordinates(0, 0), output->tensor_shape()));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000235 }
236 else // The input tensors have not been reshaped
237 {
238 // Special case for 1xN, 2xN, 3xN and 4xN input0 tensor. num_elems_processed_per_iteration_x is set up for the default case.
239 num_elems_processed_per_iteration_x = max_cl_vector_width / data_size_from_type(data_type);
240 num_elems_processed_per_iteration_y = std::min(static_cast<int>(output->dimension(1)), 4);
241
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000242 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
243 // 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 +0100244 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 +0000245 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
246
Georgios Pinitas358ca202017-12-07 16:47:52 +0000247 // Create kernels according to the architecture, data type and input size.
Michalis Spyroua9676112018-02-22 18:07:43 +0000248 GPUTarget arch_target = get_arch_from_target(gpu_target);
249 if(arch_target == GPUTarget::BIFROST && data_type == DataType::F32)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000250 {
Gian Marco1d25ed52017-12-16 19:33:50 +0000251 num_elems_processed_per_iteration_x = (input1->dimension(0) <= 1000 && input0->num_dimensions() == 1) ? 2 : 4;
Georgios Pinitas358ca202017-12-07 16:47:52 +0000252 }
253
254 // Configure window
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000255 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
256 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 +0000257
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100258 AccessWindowStatic input0_access(input0, 0, 0, input0->dimension(0), input0->dimension(1) + bottom_pad);
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000259 AccessWindowStatic input1_access(input1, 0, 0, ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x), input1->dimension(1));
260 AccessWindowStatic output_access(output, 0, 0,
261 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
262 output->dimension(1) + bottom_pad);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000263
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100264 if(input2 != nullptr)
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000265 {
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100266 const int bias_processed_per_iteration_x = num_elems_processed_per_iteration_x;
267
268 const int bias_processed_per_iteration_y = reshape_info.broadcast_bias() ? 1 : num_elems_processed_per_iteration_y;
269
270 AccessWindowStatic input2_access(input2, 0, 0,
271 ceil_to_multiple(input2->dimension(0), bias_processed_per_iteration_x),
272 ceil_to_multiple(input2->dimension(1), bias_processed_per_iteration_y));
273
274 window_changed = update_window_and_padding(win, input0_access, input1_access, input2_access) || // window used by the execute_window_loop
275 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
276 }
277 else
278 {
279 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
280 update_window_and_padding(win_out, output_access); // window used to update the padding requirements of output tensor
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000281 }
Georgios Pinitas358ca202017-12-07 16:47:52 +0000282
283 Coordinates coord;
284 coord.set_num_dimensions(output->num_dimensions());
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000285 output_access.set_valid_region(win_out, ValidRegion(coord, output->tensor_shape()));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000286 }
287
Gian Marcoae2af742018-02-15 12:35:44 +0000288 // Collapse along the Z direction
289 // This collapse needs to be here in order to tune the Z dimension of LWS
Gian Marco Iodice81b28c42018-03-29 10:29:36 +0100290 Window collapsed = win;
291 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(output->num_dimensions()), 2u);
292 collapsed = win.collapse(win, dimension_to_collapse);
Gian Marcoae2af742018-02-15 12:35:44 +0000293
Georgios Pinitas358ca202017-12-07 16:47:52 +0000294 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Gian Marcoae2af742018-02-15 12:35:44 +0000295 return std::make_pair(err, collapsed);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000296}
297} // namespace
298
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100299CLGEMMMatrixMultiplyKernel::CLGEMMMatrixMultiplyKernel()
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100300 : _input0(nullptr), _input1(nullptr), _input2(nullptr), _output(nullptr), _slide_matrix_b(true), _reinterpret_input_as_3d(false), _reinterpret_output_as_3d(false), _add_bias(false),
301 _broadcast_bias(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100302{
303}
304
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000305void CLGEMMMatrixMultiplyKernel::configure(const ICLTensor *input0, const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, float alpha, float beta,
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100306 bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info, bool fp_mixed_precision, const ActivationLayerInfo &activation_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100307{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000308 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
309
310 // Perform validate step
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000311 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input0->info(), input1->info(), (input2 != nullptr) ? input2->info() : nullptr, output->info(), beta,
312 is_interleaved_transposed, reshape_info, fp_mixed_precision));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100313
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100314 _input0 = input0;
315 _input1 = input1;
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100316 _input2 = helpers::float_ops::is_zero(beta) ? nullptr : input2;
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100317 _output = output;
318 _reinterpret_input_as_3d = reshape_info.reinterpret_input_as_3d();
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000319 _reinterpret_output_as_3d = (reshape_info.depth_output_gemm3d() != 0);
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100320 _add_bias = _input2 != nullptr;
321 _broadcast_bias = reshape_info.broadcast_bias();
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100322
Gian Marco Iodiced39e2b12018-08-06 14:31:15 +0100323 // In case both input and output have to be reinterpreted as 3D tensors,
324 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
325 if(_reinterpret_input_as_3d == _reinterpret_output_as_3d)
326 {
327 _reinterpret_input_as_3d = false;
328 _reinterpret_output_as_3d = false;
329 }
330
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100331 // Check if we need to slide the matrix B
332 const unsigned int num_dimensions_input0 = _reinterpret_input_as_3d ? _input0->info()->num_dimensions() - 1 : _input0->info()->num_dimensions();
333
334 _slide_matrix_b = (_input1->info()->num_dimensions() >= num_dimensions_input0);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100335
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000336 const DataType data_type = input0->info()->data_type();
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000337
338 // Get target architecture
339 GPUTarget gpu_target = get_target();
340
Georgios Pinitas358ca202017-12-07 16:47:52 +0000341 ElementsProcessed num_elements_processed{};
342
343 // Configure kernel window
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000344 auto win_config = validate_and_configure_window(input0->info(), input1->info(), (input2 != nullptr) ? input2->info() : nullptr, output->info(), beta, is_interleaved_transposed, reshape_info,
345 gpu_target, num_elements_processed);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000346 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100347 ICLKernel::configure_internal(win_config.second);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000348
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000349 // Create build options
350 CLBuildOptions build_opts;
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000351
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100352 build_opts.add_option_if(!(helpers::float_ops::is_one(alpha)), "-DALPHA=" + float_to_string_with_full_precision(alpha));
353 build_opts.add_option_if(_input2 != nullptr, "-DBETA=" + float_to_string_with_full_precision(beta));
354 build_opts.add_option_if(helpers::float_ops::is_one(beta), "-DUNIT_BETA");
355 build_opts.add_option_if(reshape_info.broadcast_bias(), "-DBROADCAST_BIAS");
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100356 build_opts.add_option_if(_reinterpret_input_as_3d, "-DREINTERPRET_INPUT_AS_3D");
357 build_opts.add_option_if(_reinterpret_output_as_3d, "-DREINTERPRET_OUTPUT_AS_3D");
358 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(1)));
359 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DDEPTH_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(2)));
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000360 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100361 build_opts.add_option_if(activation_info.enabled(), "-DACTIVATION_TYPE=" + lower_string(string_from_activation_func(activation_info.activation())));
362 build_opts.add_option_if(activation_info.enabled(), "-DA_VAL=" + float_to_string_with_full_precision(activation_info.a()));
363 build_opts.add_option_if(activation_info.enabled(), "-DB_VAL=" + float_to_string_with_full_precision(activation_info.b()));
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000364
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100365 const bool is_bifrost = get_arch_from_target(gpu_target) == GPUTarget::BIFROST;
366
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000367 std::string kernel_name;
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100368 if(is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100369 {
Gian Marco36a0a462018-01-12 10:21:40 +0000370 const int mult_transpose1xW_width = reshape_info.mult_transpose1xW_width();
371 const int mult_interleave4x4_height = reshape_info.mult_interleave4x4_height();
372
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000373 build_opts.add_option("-DCOLS_B=" + support::cpp11::to_string(input1->info()->dimension(0)));
Gian Marco36a0a462018-01-12 10:21:40 +0000374 build_opts.add_option("-DMULT_TRANSPOSE1XW_WIDTH=" + support::cpp11::to_string(mult_transpose1xW_width));
375 build_opts.add_option("-DMULT_INTERLEAVE4X4_HEIGHT=" + support::cpp11::to_string(mult_interleave4x4_height));
376
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100377 if(is_data_type_float(data_type) && is_bifrost)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100378 {
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100379 kernel_name = "gemm_mm_interleaved_transposed_" + lower_string(string_from_data_type(data_type)) + "_bifrost";
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100380 }
381 else
382 {
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000383 kernel_name = "gemm_mm_interleaved_transposed_" + lower_string(string_from_data_type(data_type));
Vidhya Sudhan Loganathan38d93bd2018-11-20 15:38:13 +0000384 if(fp_mixed_precision && data_type == DataType::F16)
385 {
386 // currently wider accumulator is only supported for fp16 kernels.
387 kernel_name += "_acc32";
388 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100389 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100390 }
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100391 else // The input tensors have not been reshaped
392 {
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000393 build_opts.add_option("-DCOLS_A=" + support::cpp11::to_string(input0->info()->dimension(0)));
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100394 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100395
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000396 // Create kernels according to the architecture, data type and input size.
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100397 if(is_data_type_float(data_type) && is_bifrost)
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100398 {
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100399 kernel_name = "gemm_mm_floating_point";
400
401 if(input0->info()->num_dimensions() != 1)
Gian Marco Iodicefd683112018-04-17 09:52:44 +0100402 {
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100403 kernel_name += "_" + lower_string(string_from_data_type(data_type)) + "_bifrost";
Vidhya Sudhan Loganathan38d93bd2018-11-20 15:38:13 +0000404 if(fp_mixed_precision && data_type == DataType::F16)
405 {
406 // currently wider accumulator is only supported for fp16 kernels.
407 kernel_name += "_acc32";
408 }
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100409 }
410 else if(input1->info()->dimension(0) <= 1000 && data_type == DataType::F32)
411 {
412 // The first kernel is optimized for the case of 1000 or less output elements (e.g. FC8 of AlexNet and VGG-16, and
413 // FC1 of Inception v3). The second kernel is optimized for the case of greater than 1000 output elements (e.g.
414 // FC6 and FC7 of AlexNet and VGG-16).
415 kernel_name += "_" + lower_string(string_from_data_type(data_type)) + "_bifrost_1000";
Gian Marco Iodicefd683112018-04-17 09:52:44 +0100416 }
Georgios Pinitas358ca202017-12-07 16:47:52 +0000417
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000418 // The work-group size equal to the Bifrost quad size has been proved to be optimal for these kernels
419 // via exhaustive autotuning over a range of representative layer configurations.
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100420 set_lws_hint(cl::NDRange(4));
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100421 }
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000422 else // (MIDGARD and F32) or (F16)
423 {
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000424 kernel_name = "gemm_mm_floating_point";
425 }
Georgios Pinitas358ca202017-12-07 16:47:52 +0000426 build_opts.add_option("-DNUM_ELEMS_PROCESSED_PER_THREAD_Y=" + support::cpp11::to_string(num_elements_processed.y()));
427 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 +0100428 }
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000429
430 // Create kernel
431 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
432
433 // Set config_id for enabling LWS tuning
434 _config_id = "gemm_";
435 _config_id += (is_interleaved_transposed ? "reshaped_" : "");
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100436 _config_id += (_add_bias ? "add_bias_" : "");
437 _config_id += (_broadcast_bias ? "broadcast_bias_" : "");
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000438 _config_id += (fp_mixed_precision ? "fp_mixed_" : "");
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100439 _config_id += (_reinterpret_input_as_3d ? "3di_" : "");
440 _config_id += (_reinterpret_output_as_3d ? "3do_" : "");
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000441 _config_id += lower_string(string_from_data_type(input0->info()->data_type()));
442 _config_id += "_";
443 _config_id += support::cpp11::to_string(output->info()->dimension(1));
444 _config_id += "_";
445 _config_id += support::cpp11::to_string(output->info()->dimension(0));
446 _config_id += "_";
Gian Marcoae2af742018-02-15 12:35:44 +0000447 _config_id += support::cpp11::to_string(output->info()->dimension(2));
448 _config_id += "_";
449 _config_id += support::cpp11::to_string(output->info()->dimension(3));
450 _config_id += "_";
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000451 _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 +0100452}
453
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000454Status CLGEMMMatrixMultiplyKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, float alpha, float beta,
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100455 bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info, GPUTarget gpu_target, bool fp_mixed_precision, const ActivationLayerInfo &activation_info)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000456{
Gian Marco36a0a462018-01-12 10:21:40 +0000457 // Note: num_elements_processed will be set in validate_and_configure_window()
Georgios Pinitas358ca202017-12-07 16:47:52 +0000458 ElementsProcessed num_elements_processed{};
459 ARM_COMPUTE_UNUSED(alpha);
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100460 ARM_COMPUTE_UNUSED(activation_info);
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000461 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, input2, output, beta, is_interleaved_transposed, reshape_info, fp_mixed_precision));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000462 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input0->clone().get(),
463 input1->clone().get(),
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000464 (input2 != nullptr) ? input2->clone().get() : nullptr,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000465 output->clone().get(),
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000466 beta,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000467 is_interleaved_transposed,
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100468 reshape_info,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000469 gpu_target,
470 num_elements_processed)
471 .first);
472
473 return Status{};
474}
475
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100476void CLGEMMMatrixMultiplyKernel::run(const Window &window, cl::CommandQueue &queue)
477{
478 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
479 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
480
Gian Marcoae2af742018-02-15 12:35:44 +0000481 if(_input1->info()->num_dimensions() < 3)
482 {
483 // The stride_z for matrix B must be zero if we do not slice
484 ARM_COMPUTE_ERROR_ON(_input1->info()->strides_in_bytes()[3] != 0);
485 }
486
487 Window slice = window.first_slice_window_3D();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100488 Window slice_matrix_b = slice;
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100489
490 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
491 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100492
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100493 const unsigned int num_arguments_bias = _add_bias ? num_arguments_per_2D_tensor() + 1 : 0;
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000494
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100495 if(_reinterpret_input_as_3d)
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000496 {
Isabella Gottardib92805b2018-09-28 18:24:27 +0100497 // Pass bottom paddings to the kernel if the input has to be reinterpreted as 3D tensor
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100498 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3 + num_arguments_bias;
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100499 const unsigned int total_cross_plane_pad = _input0->info()->padding().top + _input0->info()->padding().bottom;
500 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
501 }
502
503 if(_reinterpret_output_as_3d)
504 {
505 // Pass bottom paddings to the kernel if the output has to be reinterpreted as 3D tensor
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100506 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3 + (_reinterpret_input_as_3d ? 1 : 0) + num_arguments_bias;
Georgios Pinitase8bd2c72018-07-11 15:54:56 +0100507 const unsigned int total_cross_plane_pad = _output->info()->padding().top + _output->info()->padding().bottom;
508 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000509 }
510
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100511 do
512 {
513 Window slice_b = slice;
514 // 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 +0000515 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000516 if(!_slide_matrix_b)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100517 {
518 slice_b = slice_matrix_b;
519 }
520
521 unsigned int idx = 0;
522 add_2D_tensor_argument(idx, _input0, slice);
523 add_2D_tensor_argument(idx, _input1, slice_b);
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100524 if(_add_bias)
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000525 {
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100526 add_2D_tensor_argument(idx, _input2, slice);
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000527 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100528 add_2D_tensor_argument(idx, _output, slice);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000529 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input0->info()->strides_in_bytes()[2]));
530 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input1->info()->strides_in_bytes()[2]));
Gian Marco Iodiced1f54762019-07-19 09:54:47 +0100531 if(_add_bias)
532 {
533 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input2->info()->strides_in_bytes()[2]));
534 }
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000535 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[2]));
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100536 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100537 }
Gian Marcoae2af742018-02-15 12:35:44 +0000538 while(window.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100539}
giuros011c9efeb2019-01-11 14:04:43 +0000540} // namespace arm_compute