blob: 545a5b2f62b329106cfd92a7377d579f42ebbda0 [file] [log] [blame]
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +00001/*
2 * Copyright (c) 2023 Arm Limited.
3 *
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 */
Jakub Sujak1ed6a142023-04-13 21:14:42 +010024#include "src/gpu/cl/kernels/ClMatMulNativeKernel.h"
Gunes Bayirbbeef722023-03-20 10:19:10 +000025
26#include "arm_compute/core/CL/CLHelpers.h"
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +000027#include "arm_compute/core/CL/ICLTensor.h"
Gunes Bayirbbeef722023-03-20 10:19:10 +000028#include "arm_compute/core/ITensorPack.h"
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +000029#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +000031
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +000032#include "src/common/utils/Log.h"
Gunes Bayirbbeef722023-03-20 10:19:10 +000033#include "src/core/CL/CLUtils.h"
34#include "src/core/helpers/AutoConfiguration.h"
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +000035#include "src/core/helpers/WindowHelpers.h"
Gunes Bayirbbeef722023-03-20 10:19:10 +000036#include "src/gpu/cl/kernels/gemm/ClGemmHelpers.h"
37
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +000038#include "support/Cast.h"
Gunes Bayirbbeef722023-03-20 10:19:10 +000039#include "support/StringSupport.h"
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +000040
41namespace arm_compute
42{
43namespace opencl
44{
45namespace kernels
46{
47namespace
48{
49Status validate_matmul_kernel_info(const MatMulKernelInfo &matmul_kernel_info)
50{
51 const bool adj_lhs = matmul_kernel_info.adj_lhs;
52 const bool adj_rhs = matmul_kernel_info.adj_rhs;
53 const int m0 = matmul_kernel_info.m0;
54 const int n0 = matmul_kernel_info.n0;
55 const int k0 = matmul_kernel_info.k0;
56
57 // Validate M0
Gunes Bayir8918b232023-03-17 13:52:21 +000058 ARM_COMPUTE_RETURN_ERROR_ON_MSG(m0 < 1, "Only positive integers are supported for M0");
59
60 if(adj_lhs)
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +000061 {
Gunes Bayirbbeef722023-03-20 10:19:10 +000062 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((m0 & (m0 - 1)) && (m0 != 3)) || (m0 > 16), "Only 1,2,3,4,8,16 are supported for M0 for Lhs transposed");
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +000063 }
64
65 // Validate N0
Gunes Bayir8918b232023-03-17 13:52:21 +000066 ARM_COMPUTE_RETURN_ERROR_ON_MSG(n0 < 1, "Only positive integers are supported for N0");
67 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((n0 & (n0 - 1)) && (n0 != 3)) || (n0 > 16), "Only 1,2,3,4,8,16 are supported for N0");
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +000068
69 // Validate K0
Gunes Bayir8918b232023-03-17 13:52:21 +000070 ARM_COMPUTE_RETURN_ERROR_ON_MSG(k0 < 1, "Only positive integers are supported for K0");
71 if(!adj_lhs || adj_rhs)
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +000072 {
Gunes Bayir8918b232023-03-17 13:52:21 +000073 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((k0 & (k0 - 1)) && (k0 != 3)) || (k0 > 16), "Only 1,2,3,4,8,16 are supported for K0");
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +000074 }
Gunes Bayir8918b232023-03-17 13:52:21 +000075
76 return Status{};
77}
78
79Status validate_input_shapes(const TensorShape &lhs_shape, const TensorShape &rhs_shape, const MatMulKernelInfo &matmul_kernel_info)
80{
81 const size_t lhs_k = matmul_kernel_info.adj_lhs ? lhs_shape.y() : lhs_shape.x();
82 const size_t rhs_k = matmul_kernel_info.adj_rhs ? rhs_shape.x() : rhs_shape.y();
83
84 ARM_COMPUTE_RETURN_ERROR_ON_MSG(lhs_k != rhs_k, "K dimension in Lhs and Rhs matrices must match.");
85 ARM_COMPUTE_RETURN_ERROR_ON_MSG(lhs_shape.total_size() == 0, "Lhs tensor can't be empty");
86 ARM_COMPUTE_RETURN_ERROR_ON_MSG(rhs_shape.total_size() == 0, "Rhs tensor can't be empty");
87
88 constexpr size_t batch_dim_start = 2;
89 for(size_t i = batch_dim_start; i < Coordinates::num_max_dimensions; ++i)
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +000090 {
Gunes Bayir8918b232023-03-17 13:52:21 +000091 ARM_COMPUTE_RETURN_ERROR_ON_MSG(lhs_shape[i] != rhs_shape[i], "Batch dimension broadcasting is not supported");
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +000092 }
93
94 return Status{};
95}
Gunes Bayirbbeef722023-03-20 10:19:10 +000096
97Status validate_export_to_cl_image(const ITensorInfo *rhs, const MatMulKernelInfo &matmul_kernel_info)
98{
99 ARM_COMPUTE_RETURN_ERROR_ON(matmul_kernel_info.export_rhs_to_cl_image && rhs->lock_paddings());
100 if(matmul_kernel_info.export_rhs_to_cl_image)
101 {
102 if(matmul_kernel_info.adj_rhs)
103 {
104 const int k0 = matmul_kernel_info.k0;
105 ARM_COMPUTE_RETURN_ERROR_ON_MSG(k0 != 4 && k0 != 8 && k0 != 16, "K0 can only be: 4, 8, and 16 for Rhs transposed");
106 }
107 else
108 {
109 const int n0 = matmul_kernel_info.n0;
110 ARM_COMPUTE_RETURN_ERROR_ON_MSG(n0 != 4 && n0 != 8 && n0 != 16, "N0 can only be: 4, 8, and 16 for Rhs non-transposed");
111 }
112 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!export_to_cl_image(rhs), "Export to CLImage is not supported for this device/configuration");
113 }
114
Mohammed Suhail Munshi94abde42023-05-25 16:48:43 +0100115 return Status{};
Gunes Bayirbbeef722023-03-20 10:19:10 +0000116}
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000117}
Jakub Sujak1ed6a142023-04-13 21:14:42 +0100118ClMatMulNativeKernel::ClMatMulNativeKernel()
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000119{
120 _type = CLKernelType::GEMM;
121}
Jakub Sujake9b3ee22023-04-17 12:08:48 +0100122
Mohammed Suhail Munshi8e2dede2023-06-27 14:25:58 +0100123Status ClMatMulNativeKernel::validate(const ITensorInfo *lhs, const ITensorInfo *rhs, const ITensorInfo *bias, const ITensorInfo *dst, const MatMulKernelInfo &matmul_kernel_info,
124 const ActivationLayerInfo &act_info)
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000125{
Mohammed Suhail Munshi94abde42023-05-25 16:48:43 +0100126 ARM_COMPUTE_UNUSED(act_info);
Jakub Sujake9b3ee22023-04-17 12:08:48 +0100127 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(lhs, rhs, dst);
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000128 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(lhs, 1, DataType::F32, DataType::F16);
129 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(lhs, rhs);
130 ARM_COMPUTE_RETURN_ON_ERROR(validate_matmul_kernel_info(matmul_kernel_info));
Gunes Bayir8918b232023-03-17 13:52:21 +0000131 ARM_COMPUTE_RETURN_ON_ERROR(validate_input_shapes(lhs->tensor_shape(), rhs->tensor_shape(), matmul_kernel_info));
Gunes Bayirbbeef722023-03-20 10:19:10 +0000132 ARM_COMPUTE_RETURN_ON_ERROR(validate_export_to_cl_image(rhs, matmul_kernel_info));
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000133
Mohammed Suhail Munshi8e2dede2023-06-27 14:25:58 +0100134 const TensorShape expected_output_shape = misc::shape_calculator::compute_matmul_shape(lhs->tensor_shape(), rhs->tensor_shape(), matmul_kernel_info);
135
Jakub Sujake9b3ee22023-04-17 12:08:48 +0100136 if(dst->total_size() != 0)
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000137 {
Mohammed Suhail Munshi8e2dede2023-06-27 14:25:58 +0100138 const TensorInfo tensor_info_dst = dst->clone()->set_tensor_shape(expected_output_shape);
Jakub Sujake9b3ee22023-04-17 12:08:48 +0100139 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(dst, &tensor_info_dst);
140 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(lhs, dst);
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000141 }
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000142
Mohammed Suhail Munshi8e2dede2023-06-27 14:25:58 +0100143 if(bias != nullptr)
144 {
145 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(bias, lhs);
146 ARM_COMPUTE_RETURN_ERROR_ON_MSG((bias->num_dimensions() > 1), "Multi dimensional bias is unsupported.");
147 ARM_COMPUTE_RETURN_ERROR_ON_MSG(bias->dimension(0) != expected_output_shape[0], "First dimension of bias and output tensors must match.");
148 }
149
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000150 return Status{};
151}
Mohammed Suhail Munshi8e2dede2023-06-27 14:25:58 +0100152void ClMatMulNativeKernel::configure(const ClCompileContext &compile_context, ITensorInfo *lhs, ITensorInfo *rhs, ITensorInfo *bias, ITensorInfo *dst, const MatMulKernelInfo &matmul_kernel_info,
Mohammed Suhail Munshi94abde42023-05-25 16:48:43 +0100153 const ActivationLayerInfo &act_info)
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000154{
Jakub Sujake9b3ee22023-04-17 12:08:48 +0100155 ARM_COMPUTE_ERROR_ON_NULLPTR(lhs, rhs, dst, &compile_context, &matmul_kernel_info);
Mohammed Suhail Munshi8e2dede2023-06-27 14:25:58 +0100156 ARM_COMPUTE_LOG_PARAMS(lhs, rhs, bias, dst, matmul_kernel_info);
157 ARM_COMPUTE_ERROR_THROW_ON(validate(lhs, rhs, bias, dst, matmul_kernel_info));
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000158
Jakub Sujake9b3ee22023-04-17 12:08:48 +0100159 // dst tensor auto initialization if not yet initialized
160 auto_init_if_empty(*dst, lhs->clone()->set_tensor_shape(misc::shape_calculator::compute_matmul_shape(lhs->tensor_shape(), rhs->tensor_shape(), matmul_kernel_info)));
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000161
Jakub Sujake9b3ee22023-04-17 12:08:48 +0100162 const int m = dst->dimension(1);
163 const int n = dst->dimension(0);
Gunes Bayir8918b232023-03-17 13:52:21 +0000164 const int k = matmul_kernel_info.adj_lhs ? lhs->tensor_shape().y() : lhs->tensor_shape().x();
165 const bool adj_lhs = matmul_kernel_info.adj_lhs;
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000166
Gunes Bayir8918b232023-03-17 13:52:21 +0000167 int m0 = adj_lhs ? adjust_vec_size(matmul_kernel_info.m0, m) : std::min(matmul_kernel_info.m0, m);
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000168 int n0 = adjust_vec_size(matmul_kernel_info.n0, n);
169
Gunes Bayirbbeef722023-03-20 10:19:10 +0000170 _export_rhs_to_cl_image = matmul_kernel_info.export_rhs_to_cl_image && !rhs->lock_paddings();
171
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000172 // Configure kernel window
Jakub Sujake9b3ee22023-04-17 12:08:48 +0100173 Window win = calculate_max_window(*dst, Steps(n0, m0));
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000174 win = win.collapse(win, Window::DimZ);
175 IClKernel::configure_internal(win);
176
177 // Calculate partial (store instead of load) M0 and partial N0 for the partial blocks at the end of a row/column if any. This is to avoid padding.
Gunes Bayirbbeef722023-03-20 10:19:10 +0000178 const unsigned int partial_store_m0 = m % m0;
179 const unsigned int partial_store_n0 = n % n0;
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000180
181 CLBuildOptions build_opts;
182 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(lhs->data_type()));
183 build_opts.add_option("-DM0=" + support::cpp11::to_string(m0));
184 build_opts.add_option("-DN0=" + support::cpp11::to_string(n0));
185 build_opts.add_option("-DK0=" + support::cpp11::to_string(matmul_kernel_info.k0));
186 build_opts.add_option("-DPARTIAL_STORE_M0=" + support::cpp11::to_string(partial_store_m0));
187 build_opts.add_option("-DPARTIAL_STORE_N0=" + support::cpp11::to_string(partial_store_n0));
188 build_opts.add_option("-DK=" + support::cpp11::to_string(k));
Mohammed Suhail Munshi8e2dede2023-06-27 14:25:58 +0100189 build_opts.add_option_if(bias != nullptr, "-DBIAS");
Gunes Bayirbbeef722023-03-20 10:19:10 +0000190 build_opts.add_option_if_else(_export_rhs_to_cl_image, "-DRHS_TENSOR_TYPE=IMAGE", "-DRHS_TENSOR_TYPE=BUFFER");
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000191
Mohammed Suhail Munshi94abde42023-05-25 16:48:43 +0100192 // Define values for activation function
193 build_opts.add_option(("-DA_VAL=" + float_to_string_with_full_precision(act_info.a())));
194 build_opts.add_option(("-DB_VAL=" + float_to_string_with_full_precision(act_info.b())));
195 build_opts.add_option("-DACTIVATION_TYPE=" + lower_string(string_from_activation_func(act_info.activation())));
196
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000197 std::string kernel_name("mat_mul_native");
198 kernel_name += matmul_kernel_info.adj_lhs ? "_t" : "_nt";
199 kernel_name += matmul_kernel_info.adj_rhs ? "_t" : "_nt";
200
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000201 // A macro guard to compile ONLY the kernel of interest
202 build_opts.add_option("-D" + upper_string(kernel_name));
203
Gunes Bayirbbeef722023-03-20 10:19:10 +0000204 if(_export_rhs_to_cl_image)
205 {
206 gemm::update_padding_for_cl_image(rhs);
207 }
208
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000209 // Create kernel
210 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
211
212 // Set config_id for enabling LWS tuning
213 _config_id = kernel_name;
214 _config_id += "_";
215 _config_id += lower_string(string_from_data_type(lhs->data_type()));
216 _config_id += "_";
Gunes Bayirbbeef722023-03-20 10:19:10 +0000217 _config_id += support::cpp11::to_string(m);
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000218 _config_id += "_";
Gunes Bayirbbeef722023-03-20 10:19:10 +0000219 _config_id += support::cpp11::to_string(n);
220 _config_id += "_";
221 _config_id += support::cpp11::to_string(k);
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000222 _config_id += "_";
Jakub Sujake9b3ee22023-04-17 12:08:48 +0100223 _config_id += support::cpp11::to_string(dst->dimension(2));
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000224 _config_id += "_";
Gunes Bayirbbeef722023-03-20 10:19:10 +0000225 _config_id += support::cpp11::to_string(_export_rhs_to_cl_image);
226 _config_id += "_";
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000227 _config_id += support::cpp11::to_string(m0);
228 _config_id += "_";
229 _config_id += support::cpp11::to_string(n0);
230 _config_id += "_";
231 _config_id += support::cpp11::to_string(matmul_kernel_info.k0);
232}
233
Jakub Sujak1ed6a142023-04-13 21:14:42 +0100234void ClMatMulNativeKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000235{
236 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
237 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
238
Mohammed Suhail Munshi8e2dede2023-06-27 14:25:58 +0100239 const ICLTensor *lhs = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_0));
240 const ICLTensor *rhs = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_1));
241 const ICLTensor *bias = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC_2)); // nullptr if bias is not present
242 ICLTensor *dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Jakub Sujake9b3ee22023-04-17 12:08:48 +0100243 ARM_COMPUTE_ERROR_ON_NULLPTR(lhs, rhs, dst);
Mohammed Suhail Munshi8e2dede2023-06-27 14:25:58 +0100244 ARM_COMPUTE_LOG_PARAMS(lhs, rhs, bias, dst);
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000245
246 unsigned int idx = 0;
247 Window window_collapsed = window.collapse(ICLKernel::window(), Window::DimZ);
248
249 add_3d_tensor_nhw_argument(idx, lhs);
Gunes Bayirbbeef722023-03-20 10:19:10 +0000250
251 cl::Image2D rhs_cl_image;
252 if(_export_rhs_to_cl_image)
253 {
254 const size_t image_w = rhs->info()->dimension(0) / 4;
255 const size_t image_h = rhs->info()->tensor_shape().total_size() / rhs->info()->dimension(0);
256 const TensorShape shape2d(image_w, image_h);
257 const size_t image_row_pitch = rhs->info()->strides_in_bytes()[1];
258
259 // Export cl_buffer to cl_image
260 rhs_cl_image = create_image2d_from_buffer(CLKernelLibrary::get().context(), rhs->cl_buffer(), shape2d, rhs->info()->data_type(), image_row_pitch, CLImage2DType::ReadOnly);
261 _kernel.setArg(idx++, rhs_cl_image);
262 }
263
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000264 add_3d_tensor_nhw_argument(idx, rhs);
Mohammed Suhail Munshi8e2dede2023-06-27 14:25:58 +0100265 if(bias != nullptr)
266 {
267 add_3d_tensor_nhw_argument(idx, bias);
268 }
Jakub Sujake9b3ee22023-04-17 12:08:48 +0100269 add_3d_tensor_nhw_argument(idx, dst);
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +0000270
271 enqueue(queue, *this, window_collapsed, lws_hint());
272}
273
274} // namespace kernels
275} // namespace opencl
276} // namespace arm_compute