blob: 5e02dda9e3594d53813aebb5ce27fe7379c3aa8a [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"
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
43using namespace arm_compute;
Gian Marco36a0a462018-01-12 10:21:40 +000044using namespace arm_compute::misc::shape_calculator;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045
Georgios Pinitas358ca202017-12-07 16:47:52 +000046namespace
47{
48using ElementsProcessed = Steps;
49
Gian Marco36a0a462018-01-12 10:21:40 +000050inline 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 +000051{
Georgios Pinitas78c00902018-01-09 17:33:11 +000052 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input0, input1, output);
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010053 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input0);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010054 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::F16, DataType::F32);
Gian Marco36a0a462018-01-12 10:21:40 +000055 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1);
Isabella Gottardi8e74f442018-03-01 16:42:00 +000056 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 +000057 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 +010058 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 +010059 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 +000060
Georgios Pinitas358ca202017-12-07 16:47:52 +000061 if(!is_interleaved_transposed)
62 {
63 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(0) != input1->dimension(1));
Gian Marco36a0a462018-01-12 10:21:40 +000064 }
65 else
66 {
67 const int m = reshape_info.m();
68 const int n = reshape_info.n();
69 const int k = reshape_info.k();
70 const int mult_transpose1xW_width = reshape_info.mult_transpose1xW_width();
71 const int mult_interleave4x4_height = reshape_info.mult_interleave4x4_height();
72
73 TensorShape tensor_shape0{ input0->tensor_shape() };
74 tensor_shape0.set(0, k);
75 tensor_shape0.set(1, m);
76
77 TensorShape tensor_shape1{ input1->tensor_shape() };
78 tensor_shape1.set(0, n);
79 tensor_shape1.set(1, k);
80
81 const TensorInfo tensor_info0 = input0->clone()->set_tensor_shape(tensor_shape0);
82 const TensorInfo tensor_info1 = input1->clone()->set_tensor_shape(tensor_shape1);
83
84 const TensorInfo tensor_info_reshaped0 = input0->clone()->set_tensor_shape(compute_interleaved_shape(tensor_info0, mult_interleave4x4_height));
85 const TensorInfo tensor_info_reshaped1 = input1->clone()->set_tensor_shape(compute_transpose1xW_with_element_size_shape(tensor_info1, mult_transpose1xW_width));
86
87 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input0, &tensor_info_reshaped0);
88 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input1, &tensor_info_reshaped1);
Isabella Gottardi8e74f442018-03-01 16:42:00 +000089 }
Gian Marco36a0a462018-01-12 10:21:40 +000090
Isabella Gottardi8e74f442018-03-01 16:42:00 +000091 if(output->total_size() != 0)
92 {
93 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(compute_mm_shape(*input0, *input1, is_interleaved_transposed, reshape_info));
94 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
95 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, output);
Georgios Pinitas358ca202017-12-07 16:47:52 +000096 }
97
98 return Status{};
99}
100
101inline std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *output,
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100102 bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info, GPUTarget gpu_target,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000103 ElementsProcessed &num_elements_processed)
104{
105 bool window_changed = false;
106 Window win{};
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000107 Window win_out{};
Georgios Pinitas358ca202017-12-07 16:47:52 +0000108
109 const DataType data_type = input0->data_type();
110 unsigned int &num_elems_processed_per_iteration_x = num_elements_processed[0];
111 unsigned int &num_elems_processed_per_iteration_y = num_elements_processed[1];
Gian Marco Iodiced39e2b12018-08-06 14:31:15 +0100112 bool reinterpret_input_as_3d = reshape_info.reinterpret_input_as_3d();
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000113 bool reinterpret_output_as_3d = (reshape_info.depth_output_gemm3d() != 0);
Gian Marco Iodiced39e2b12018-08-06 14:31:15 +0100114
115 // In case both input and output have to be reinterpreted as 3D tensors,
116 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
117 if(reinterpret_input_as_3d == reinterpret_output_as_3d)
118 {
119 reinterpret_input_as_3d = false;
120 reinterpret_output_as_3d = false;
121 }
Georgios Pinitas358ca202017-12-07 16:47:52 +0000122
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100123 // Output tensor auto inizialitation if not yet initialized
Isabella Gottardic4f582e2018-10-11 19:14:55 +0100124 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 +0100125
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000126 TensorInfo tmp_info(*output);
127
Gian Marco Iodiced39e2b12018-08-06 14:31:15 +0100128 if(reinterpret_output_as_3d)
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000129 {
130 // Since the output tensor has to be reinterpreted as 3D and the execute window is based on a 2D GEMM,
131 // the window needs to be constructed on the 2D collapsed version of the tensor
132 TensorShape tmp_shape(output->tensor_shape());
133 tmp_shape.collapse(2U, 1U);
134 tmp_info.set_tensor_shape(tmp_shape);
135 }
136
Georgios Pinitas358ca202017-12-07 16:47:52 +0000137 if(is_interleaved_transposed)
138 {
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100139 // reinterpret_input_as_3d is not supported if is_interleaved_transposed is set
Isabella Gottardic4f582e2018-10-11 19:14:55 +0100140 ARM_COMPUTE_ERROR_ON(reshape_info.reinterpret_input_as_3d());
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100141
Georgios Pinitas358ca202017-12-07 16:47:52 +0000142 // Configure kernel window
143 num_elems_processed_per_iteration_x = max_cl_vector_width / data_size_from_type(data_type);
144 num_elems_processed_per_iteration_y = 4;
145
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000146 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
147 // The only way to set properly the paddings, it is to set those explicitly through the AccessWindowStatic
148 const int m = reshape_info.m();
149 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
150
151 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
152 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 +0000153
154 AccessWindowRectangle input0_access(input0, 0, 0, num_elems_processed_per_iteration_y, 1, 1.f, 0.25f);
Georgios Pinitas535fedd2018-05-04 18:52:25 +0100155 AccessWindowStatic input1_access(input1, 0, 0,
156 ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x),
157 ceil_to_multiple(input1->dimension(1), num_elems_processed_per_iteration_y));
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000158 AccessWindowStatic output_access(output, 0, 0,
159 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
160 output->dimension(1) + bottom_pad);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000161
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000162 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
163 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 +0000164
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000165 output_access.set_valid_region(win_out, ValidRegion(Coordinates(0, 0), output->tensor_shape()));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000166 }
167 else // The input tensors have not been reshaped
168 {
169 // Special case for 1xN, 2xN, 3xN and 4xN input0 tensor. num_elems_processed_per_iteration_x is set up for the default case.
170 num_elems_processed_per_iteration_x = max_cl_vector_width / data_size_from_type(data_type);
171 num_elems_processed_per_iteration_y = std::min(static_cast<int>(output->dimension(1)), 4);
172
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000173 // Note: bottom paddings are calculated manually as the output can be reinterpreted as 3D tensor
174 // 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 +0100175 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 +0000176 const int bottom_pad = (num_elems_processed_per_iteration_y - (m % num_elems_processed_per_iteration_y)) % num_elems_processed_per_iteration_y;
177
Georgios Pinitas358ca202017-12-07 16:47:52 +0000178 // Create kernels according to the architecture, data type and input size.
Michalis Spyroua9676112018-02-22 18:07:43 +0000179 GPUTarget arch_target = get_arch_from_target(gpu_target);
180 if(arch_target == GPUTarget::BIFROST && data_type == DataType::F32)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000181 {
Gian Marco1d25ed52017-12-16 19:33:50 +0000182 num_elems_processed_per_iteration_x = (input1->dimension(0) <= 1000 && input0->num_dimensions() == 1) ? 2 : 4;
Georgios Pinitas358ca202017-12-07 16:47:52 +0000183 }
184
185 // Configure window
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000186 win = calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
187 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 +0000188
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100189 AccessWindowStatic input0_access(input0, 0, 0, input0->dimension(0), input0->dimension(1) + bottom_pad);
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000190 AccessWindowStatic input1_access(input1, 0, 0, ceil_to_multiple(input1->dimension(0), num_elems_processed_per_iteration_x), input1->dimension(1));
191 AccessWindowStatic output_access(output, 0, 0,
192 ceil_to_multiple(output->dimension(0), num_elems_processed_per_iteration_x),
193 output->dimension(1) + bottom_pad);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000194
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000195 window_changed = update_window_and_padding(win, input0_access, input1_access) || // window used by the execute_window_loop
196 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 +0000197
198 Coordinates coord;
199 coord.set_num_dimensions(output->num_dimensions());
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000200 output_access.set_valid_region(win_out, ValidRegion(coord, output->tensor_shape()));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000201 }
202
Gian Marcoae2af742018-02-15 12:35:44 +0000203 // Collapse along the Z direction
204 // This collapse needs to be here in order to tune the Z dimension of LWS
Gian Marco Iodice81b28c42018-03-29 10:29:36 +0100205 Window collapsed = win;
206 const unsigned int dimension_to_collapse = std::min(static_cast<unsigned int>(output->num_dimensions()), 2u);
207 collapsed = win.collapse(win, dimension_to_collapse);
Gian Marcoae2af742018-02-15 12:35:44 +0000208
Georgios Pinitas358ca202017-12-07 16:47:52 +0000209 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Gian Marcoae2af742018-02-15 12:35:44 +0000210 return std::make_pair(err, collapsed);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000211}
212} // namespace
213
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100214CLGEMMMatrixMultiplyKernel::CLGEMMMatrixMultiplyKernel()
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100215 : _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 +0100216{
217}
218
Gian Marco36a0a462018-01-12 10:21:40 +0000219void 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 +0100220{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000221 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
222
223 // Perform validate step
Gian Marco36a0a462018-01-12 10:21:40 +0000224 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 +0100225
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100226 _input0 = input0;
227 _input1 = input1;
228 _output = output;
229 _reinterpret_input_as_3d = reshape_info.reinterpret_input_as_3d();
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000230 _reinterpret_output_as_3d = (reshape_info.depth_output_gemm3d() != 0);
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100231
Gian Marco Iodiced39e2b12018-08-06 14:31:15 +0100232 // In case both input and output have to be reinterpreted as 3D tensors,
233 // force reinterpret_input_as_3d and reinterpret_output_as_3d to be false.
234 if(_reinterpret_input_as_3d == _reinterpret_output_as_3d)
235 {
236 _reinterpret_input_as_3d = false;
237 _reinterpret_output_as_3d = false;
238 }
239
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100240 // Check if we need to slide the matrix B
241 const unsigned int num_dimensions_input0 = _reinterpret_input_as_3d ? _input0->info()->num_dimensions() - 1 : _input0->info()->num_dimensions();
242
243 _slide_matrix_b = (_input1->info()->num_dimensions() >= num_dimensions_input0);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100244
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000245 const DataType data_type = input0->info()->data_type();
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000246
247 // Get target architecture
248 GPUTarget gpu_target = get_target();
249
Georgios Pinitas358ca202017-12-07 16:47:52 +0000250 ElementsProcessed num_elements_processed{};
251
252 // Configure kernel window
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100253 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 +0000254 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100255 ICLKernel::configure_internal(win_config.second);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000256
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000257 // Create build options
258 CLBuildOptions build_opts;
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000259
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000260 // Only define ALPHA when alpha is not 1.0f. This avoids performing unnecessary multiplications.
Georgios Pinitas358ca202017-12-07 16:47:52 +0000261 if(std::abs(1.0f - alpha) > 0.00001f)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100262 {
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100263 build_opts.add_option("-DALPHA=" + float_to_string_with_full_precision(alpha));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100264 }
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100265 build_opts.add_option_if(_reinterpret_input_as_3d, "-DREINTERPRET_INPUT_AS_3D");
266 build_opts.add_option_if(_reinterpret_output_as_3d, "-DREINTERPRET_OUTPUT_AS_3D");
267 build_opts.add_option_if(_reinterpret_input_as_3d || _reinterpret_output_as_3d, "-DHEIGHT_GEMM3D=" + support::cpp11::to_string(output->info()->dimension(1)));
268 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 +0100269
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000270 // Do not slide matrix B if _slide_matrix_b = false
271 build_opts.add_option_if(!_slide_matrix_b, "-DMATRIX_B_DEPTH=" + support::cpp11::to_string(input1->info()->dimension(2)));
272
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100273 const bool is_bifrost = get_arch_from_target(gpu_target) == GPUTarget::BIFROST;
274
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000275 std::string kernel_name;
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100276 if(is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100277 {
Gian Marco36a0a462018-01-12 10:21:40 +0000278 const int mult_transpose1xW_width = reshape_info.mult_transpose1xW_width();
279 const int mult_interleave4x4_height = reshape_info.mult_interleave4x4_height();
280
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000281 build_opts.add_option("-DCOLS_B=" + support::cpp11::to_string(input1->info()->dimension(0)));
Gian Marco36a0a462018-01-12 10:21:40 +0000282 build_opts.add_option("-DMULT_TRANSPOSE1XW_WIDTH=" + support::cpp11::to_string(mult_transpose1xW_width));
283 build_opts.add_option("-DMULT_INTERLEAVE4X4_HEIGHT=" + support::cpp11::to_string(mult_interleave4x4_height));
284
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100285 if(is_data_type_float(data_type) && is_bifrost)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100286 {
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100287 kernel_name = "gemm_mm_interleaved_transposed_" + lower_string(string_from_data_type(data_type)) + "_bifrost";
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100288 }
289 else
290 {
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000291 kernel_name = "gemm_mm_interleaved_transposed_" + lower_string(string_from_data_type(data_type));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100292 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100293 }
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100294 else // The input tensors have not been reshaped
295 {
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000296 build_opts.add_option("-DCOLS_A=" + support::cpp11::to_string(input0->info()->dimension(0)));
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100297 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100298
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000299 // Create kernels according to the architecture, data type and input size.
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +0100300 if(is_data_type_float(data_type) && is_bifrost)
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100301 {
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100302 kernel_name = "gemm_mm_floating_point";
303
304 if(input0->info()->num_dimensions() != 1)
Gian Marco Iodicefd683112018-04-17 09:52:44 +0100305 {
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100306 kernel_name += "_" + lower_string(string_from_data_type(data_type)) + "_bifrost";
307 }
308 else if(input1->info()->dimension(0) <= 1000 && data_type == DataType::F32)
309 {
310 // The first kernel is optimized for the case of 1000 or less output elements (e.g. FC8 of AlexNet and VGG-16, and
311 // FC1 of Inception v3). The second kernel is optimized for the case of greater than 1000 output elements (e.g.
312 // FC6 and FC7 of AlexNet and VGG-16).
313 kernel_name += "_" + lower_string(string_from_data_type(data_type)) + "_bifrost_1000";
Gian Marco Iodicefd683112018-04-17 09:52:44 +0100314 }
Georgios Pinitas358ca202017-12-07 16:47:52 +0000315
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000316 // The work-group size equal to the Bifrost quad size has been proved to be optimal for these kernels
317 // via exhaustive autotuning over a range of representative layer configurations.
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100318 set_lws_hint(cl::NDRange(4));
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100319 }
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000320 else // (MIDGARD and F32) or (F16)
321 {
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000322 kernel_name = "gemm_mm_floating_point";
323 }
Georgios Pinitas358ca202017-12-07 16:47:52 +0000324 build_opts.add_option("-DNUM_ELEMS_PROCESSED_PER_THREAD_Y=" + support::cpp11::to_string(num_elements_processed.y()));
325 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 +0100326 }
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000327
328 // Create kernel
329 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
330
331 // Set config_id for enabling LWS tuning
332 _config_id = "gemm_";
333 _config_id += (is_interleaved_transposed ? "reshaped_" : "");
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100334 _config_id += (_reinterpret_input_as_3d ? "3di_" : "");
335 _config_id += (_reinterpret_output_as_3d ? "3do_" : "");
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000336 _config_id += lower_string(string_from_data_type(input0->info()->data_type()));
337 _config_id += "_";
338 _config_id += support::cpp11::to_string(output->info()->dimension(1));
339 _config_id += "_";
340 _config_id += support::cpp11::to_string(output->info()->dimension(0));
341 _config_id += "_";
Gian Marcoae2af742018-02-15 12:35:44 +0000342 _config_id += support::cpp11::to_string(output->info()->dimension(2));
343 _config_id += "_";
344 _config_id += support::cpp11::to_string(output->info()->dimension(3));
345 _config_id += "_";
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000346 _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 +0100347}
348
Gian Marco36a0a462018-01-12 10:21:40 +0000349Status CLGEMMMatrixMultiplyKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output, float alpha, bool is_interleaved_transposed,
350 const GEMMReshapeInfo &reshape_info, GPUTarget gpu_target)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000351{
Gian Marco36a0a462018-01-12 10:21:40 +0000352 // Note: num_elements_processed will be set in validate_and_configure_window()
Georgios Pinitas358ca202017-12-07 16:47:52 +0000353 ElementsProcessed num_elements_processed{};
354 ARM_COMPUTE_UNUSED(alpha);
Gian Marco36a0a462018-01-12 10:21:40 +0000355 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, output, is_interleaved_transposed, reshape_info));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000356 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input0->clone().get(),
357 input1->clone().get(),
358 output->clone().get(),
359 is_interleaved_transposed,
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100360 reshape_info,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000361 gpu_target,
362 num_elements_processed)
363 .first);
364
365 return Status{};
366}
367
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100368void CLGEMMMatrixMultiplyKernel::run(const Window &window, cl::CommandQueue &queue)
369{
370 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
371 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
372
Gian Marcoae2af742018-02-15 12:35:44 +0000373 if(_input1->info()->num_dimensions() < 3)
374 {
375 // The stride_z for matrix B must be zero if we do not slice
376 ARM_COMPUTE_ERROR_ON(_input1->info()->strides_in_bytes()[3] != 0);
377 }
378
379 Window slice = window.first_slice_window_3D();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100380 Window slice_matrix_b = slice;
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100381
382 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
383 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100384
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100385 if(_reinterpret_input_as_3d)
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000386 {
Isabella Gottardib92805b2018-09-28 18:24:27 +0100387 // Pass bottom paddings to the kernel if the input has to be reinterpreted as 3D tensor
Georgios Pinitase8bd2c72018-07-11 15:54:56 +0100388 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3;
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100389 const unsigned int total_cross_plane_pad = _input0->info()->padding().top + _input0->info()->padding().bottom;
390 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
391 }
392
393 if(_reinterpret_output_as_3d)
394 {
395 // Pass bottom paddings to the kernel if the output has to be reinterpreted as 3D tensor
396 const unsigned int idx0 = 3 * num_arguments_per_2D_tensor() + 3 + (_reinterpret_input_as_3d ? 1 : 0);
Georgios Pinitase8bd2c72018-07-11 15:54:56 +0100397 const unsigned int total_cross_plane_pad = _output->info()->padding().top + _output->info()->padding().bottom;
398 _kernel.setArg<cl_uint>(idx0, static_cast<unsigned int>(total_cross_plane_pad));
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000399 }
400
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100401 do
402 {
403 Window slice_b = slice;
404 // 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 +0000405 // This scenario can happen when the matrix multiplication is used to perform a convolution operation
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000406 if(!_slide_matrix_b)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100407 {
408 slice_b = slice_matrix_b;
409 }
410
411 unsigned int idx = 0;
412 add_2D_tensor_argument(idx, _input0, slice);
413 add_2D_tensor_argument(idx, _input1, slice_b);
414 add_2D_tensor_argument(idx, _output, slice);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000415 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input0->info()->strides_in_bytes()[2]));
416 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input1->info()->strides_in_bytes()[2]));
417 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[2]));
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100418 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100419 }
Gian Marcoae2af742018-02-15 12:35:44 +0000420 while(window.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100421}