blob: eea2a169a33e5273f2b8b20019255be18d49103c [file] [log] [blame]
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2018-2021, 2023 Arm Limited.
Georgios Pinitas856f66e2021-04-22 21:13:21 +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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/gpu/cl/kernels/ClGemmReshapeLhsMatrixKernel.h"
Georgios Pinitas856f66e2021-04-22 21:13:21 +010025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/CL/OpenCL.h"
30#include "arm_compute/core/Helpers.h"
31#include "arm_compute/core/TensorInfo.h"
Georgios Pinitas856f66e2021-04-22 21:13:21 +010032#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000033#include "arm_compute/core/utils/StringUtils.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010034
Georgios Pinitas856f66e2021-04-22 21:13:21 +010035#include "src/core/AccessWindowStatic.h"
36#include "src/core/CL/CLValidate.h"
37#include "src/core/helpers/AutoConfiguration.h"
38#include "src/core/helpers/WindowHelpers.h"
39#include "support/Cast.h"
40#include "support/StringSupport.h"
41
42namespace arm_compute
43{
44namespace opencl
45{
46namespace kernels
47{
48namespace
49{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010050Status validate_arguments(const ITensorInfo *src,
51 const ITensorInfo *dst,
52 const GEMMLHSMatrixInfo &lhs_info,
53 bool reinterpret_input_as_3d)
Georgios Pinitas856f66e2021-04-22 21:13:21 +010054{
55 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
56 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.m0 == 0);
57 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.k0 == 0);
58 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.v0 == 0);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010059 ARM_COMPUTE_RETURN_ERROR_ON_MSG(((lhs_info.k0 & (lhs_info.k0 - 1)) && lhs_info.k0 != 3),
60 "Only 2,3,4,8,16 are supported for k0");
Georgios Pinitas856f66e2021-04-22 21:13:21 +010061 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.k0 > 16);
62 ARM_COMPUTE_RETURN_ERROR_ON(lhs_info.m0 < 2 || lhs_info.m0 > 8);
Adnan AlSinan3e155a52021-12-10 12:34:02 +000063 ARM_COMPUTE_RETURN_ERROR_ON((lhs_info.m0 > 4 && lhs_info.m0 < 8) && lhs_info.transpose);
Georgios Pinitas856f66e2021-04-22 21:13:21 +010064
65 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(src);
66 ARM_COMPUTE_RETURN_ERROR_ON(src->data_type() == DataType::UNKNOWN);
67
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010068 if (dst->total_size() != 0)
Georgios Pinitas856f66e2021-04-22 21:13:21 +010069 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010070 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(
71 dst->tensor_shape(),
72 misc::shape_calculator::compute_lhs_reshaped_shape(*src, lhs_info, reinterpret_input_as_3d));
Georgios Pinitas856f66e2021-04-22 21:13:21 +010073 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, dst);
74 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(src, dst);
75 }
76
77 return Status{};
78}
79
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010080Window
81configure_window(ITensorInfo *src, ITensorInfo *dst, const GEMMLHSMatrixInfo &lhs_info, bool reinterpret_input_as_3d)
Georgios Pinitas856f66e2021-04-22 21:13:21 +010082{
83 const unsigned int num_elems_processed_per_iteration_x = lhs_info.k0;
84 const unsigned int num_elems_processed_per_iteration_y = lhs_info.m0;
Georgios Pinitas856f66e2021-04-22 21:13:21 +010085
86 TensorInfo tmp_info(*src);
87
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010088 if (reinterpret_input_as_3d)
Georgios Pinitas856f66e2021-04-22 21:13:21 +010089 {
90 // Since the src tensor has to be reinterpreted as 3D and the execute window is based on a 2D interleave,
91 // the window needs to be constructed on the 2D collapsed version of the tensor
92 TensorShape tmp_shape(src->tensor_shape());
93 tmp_shape.collapse(2U, 1U);
94 tmp_info.set_tensor_shape(tmp_shape);
95 }
96
97 // dst auto inizialitation if not yet initialized
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010098 auto_init_if_empty(*dst, src->clone()->set_tensor_shape(misc::shape_calculator::compute_lhs_reshaped_shape(
99 *src, lhs_info, reinterpret_input_as_3d)));
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100100
101 // Configure window
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100102 Window win =
103 calculate_max_window(tmp_info, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100104
105 // Collapse along the Z direction
106 // This collapse needs to be here in order to tune the Z dimension of LWS
107 Window collapsed = win.collapse(win, Window::DimZ);
108
Adnan AlSinan3e155a52021-12-10 12:34:02 +0000109 return collapsed;
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100110}
111} // namespace
112
Giorgio Arena4a95bba2021-06-28 11:00:27 +0100113ClGemmReshapeLhsMatrixKernel::ClGemmReshapeLhsMatrixKernel()
114{
115 _type = CLKernelType::ELEMENTWISE;
116}
117
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100118void ClGemmReshapeLhsMatrixKernel::configure(const CLCompileContext &compile_context,
119 ITensorInfo *src,
120 ITensorInfo *dst,
121 const GEMMLHSMatrixInfo &lhs_info,
122 bool reinterpret_input_as_3d)
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100123{
124 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
125
126 // Perform validate step
127 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, dst, lhs_info, reinterpret_input_as_3d));
128
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100129 auto padding_info = get_padding_info({src});
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100130
Adnan AlSinan3e155a52021-12-10 12:34:02 +0000131 const unsigned int src_w = src->dimension(0);
132 const unsigned int m = reinterpret_input_as_3d ? src->dimension(1) * src->dimension(2) : src->dimension(1);
133 const unsigned int partial_m0 = m % lhs_info.m0;
134 const unsigned int partial_k0 = src_w % lhs_info.k0;
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100135
136 // Create build options
137 CLBuildOptions build_opts;
138 build_opts.add_option("-DM0=" + support::cpp11::to_string(lhs_info.m0));
139 build_opts.add_option("-DK0=" + support::cpp11::to_string(lhs_info.k0));
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100140 build_opts.add_option_if(lhs_info.interleave, "-DINTERLEAVE");
Adnan AlSinan3e155a52021-12-10 12:34:02 +0000141 build_opts.add_option_if_else(lhs_info.transpose, "-DRESHAPE_LHS_T", "-DRESHAPE_LHS_NT");
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100142 build_opts.add_option("-DDATA_TYPE=" + get_cl_unsigned_type_from_element_size(src->element_size()));
Adnan AlSinan3e155a52021-12-10 12:34:02 +0000143 build_opts.add_option("-DPARTIAL_M0=" + support::cpp11::to_string(partial_m0));
144 build_opts.add_option("-DPARTIAL_K0=" + support::cpp11::to_string(partial_k0));
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100145
146 std::string kernel_name("gemm_reshape_lhs_matrix_");
147 kernel_name += lhs_info.transpose ? "t" : "nt";
148
149 // Create kernel
150 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
151
152 // Configure kernel window
Adnan AlSinan3e155a52021-12-10 12:34:02 +0000153 auto win_config = configure_window(src, dst, lhs_info, reinterpret_input_as_3d);
154 ICLKernel::configure_internal(win_config);
155
156 unsigned int idx = 2 * num_arguments_per_3d_tensor_nhw();
157 _kernel.setArg<cl_int>(idx++, m);
158 _kernel.setArg<cl_int>(idx++, lhs_info.v0);
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100159
160 // Set config_id for enabling LWS tuning
161 _config_id = "gemm_reshape_lhs_matrix_";
Adnan AlSinan3e155a52021-12-10 12:34:02 +0000162 _config_id += (reinterpret_input_as_3d ? "3d_" : "");
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100163 _config_id += lower_string(string_from_data_type(src->data_type()));
164 _config_id += "_";
165 _config_id += support::cpp11::to_string(dst->dimension(0));
166 _config_id += "_";
167 _config_id += support::cpp11::to_string(dst->dimension(1));
168 _config_id += "_";
169 _config_id += support::cpp11::to_string(dst->dimension(2));
170 _config_id += "_";
171 _config_id += support::cpp11::to_string(lhs_info.m0);
172 _config_id += "_";
173 _config_id += support::cpp11::to_string(lhs_info.k0);
174 _config_id += "_";
175 _config_id += support::cpp11::to_string(lhs_info.v0);
176 _config_id += "_";
177 _config_id += support::cpp11::to_string(lhs_info.interleave);
178 _config_id += "_";
179 _config_id += support::cpp11::to_string(lhs_info.transpose);
180
181 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
182}
183
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100184Status ClGemmReshapeLhsMatrixKernel::validate(const ITensorInfo *src,
185 const ITensorInfo *dst,
186 const GEMMLHSMatrixInfo &lhs_info,
187 bool reinterpret_input_as_3d)
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100188{
189 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, dst, lhs_info, reinterpret_input_as_3d));
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100190 return Status{};
191}
192
193void ClGemmReshapeLhsMatrixKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
194{
195 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
196 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
197
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100198 const auto src =
199 utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
200 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100201
202 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
203
204 Window slice = window.first_slice_window_3D();
205
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100206 do
207 {
208 unsigned int idx = 0;
Adnan AlSinan3e155a52021-12-10 12:34:02 +0000209 add_3d_tensor_nhw_argument(idx, src);
210 add_3d_tensor_nhw_argument(idx, dst);
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100211 enqueue(queue, *this, slice, lws_hint());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100212 } while (window.slide_window_slice_3D(slice));
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100213}
214} // namespace kernels
215} // namespace opencl
216} // namespace arm_compute