blob: b184c507ff1d4d6a332109abdc86ecddfdba5b24 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2017 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 */
24#include "arm_compute/core/CL/kernels/CLGEMMMatrixMultiplyKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/AccessWindowTranspose.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028#include "arm_compute/core/CL/CLHelpers.h"
29#include "arm_compute/core/CL/CLKernelLibrary.h"
30#include "arm_compute/core/CL/ICLTensor.h"
31#include "arm_compute/core/CL/OpenCL.h"
32#include "arm_compute/core/Error.h"
Gian Marco Iodice3a3066b2017-06-23 13:38:14 +010033#include "arm_compute/core/FixedPoint.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034#include "arm_compute/core/Helpers.h"
35#include "arm_compute/core/Types.h"
36#include "arm_compute/core/Utils.h"
37#include "arm_compute/core/Validate.h"
38#include "arm_compute/core/Window.h"
39
40#include <set>
41#include <sstream>
42#include <string>
43
44using namespace arm_compute;
45
46CLGEMMMatrixMultiplyKernel::CLGEMMMatrixMultiplyKernel()
47 : _input0(nullptr), _input1(nullptr), _output(nullptr)
48{
49}
50
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010051void CLGEMMMatrixMultiplyKernel::configure(const ICLTensor *input0, const ICLTensor *input1, ICLTensor *output, float alpha, bool is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010052{
Gian Marco Iodice8a383692017-07-03 17:41:47 +010053 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::QS8, DataType::QS16, DataType::F16, DataType::F32);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010054 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1, output);
Gian Marco Iodice3a3066b2017-06-23 13:38:14 +010055 ARM_COMPUTE_ERROR_ON_MISMATCHING_FIXED_POINT(input0, input1, output);
56
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010057 if(!is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010058 {
59 ARM_COMPUTE_ERROR_ON(input0->info()->dimension(0) != input1->info()->dimension(1));
60 }
61
62 _input0 = input0;
63 _input1 = input1;
64 _output = output;
65
66 if(output->info()->dimension(1) == 196)
67 {
68 _lws_hint = cl::NDRange(1, 7);
69 }
70 else
71 {
72 _lws_hint = cl::NDRange(8, 8);
73 }
74
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010075 std::set<std::string> build_opts;
76 build_opts.emplace(("-DCOLS_A=" + support::cpp11::to_string(input0->info()->dimension(0))));
77 build_opts.emplace(("-DCOLS_B=" + support::cpp11::to_string(input1->info()->dimension(0))));
78
Gian Marco Iodice8a383692017-07-03 17:41:47 +010079 if(is_data_type_fixed_point(input0->info()->data_type()))
80 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010081 build_opts.emplace(("-DALPHA=" + support::cpp11::to_string((input0->info()->data_type() == DataType::QS8 ?
82 sqcvt_qs8_f32(alpha, input0->info()->fixed_point_position()) :
83 sqcvt_qs16_f32(alpha, input0->info()->fixed_point_position())))));
84
85 build_opts.emplace(("-DFIXED_POINT_POSITION=" + support::cpp11::to_string(input0->info()->fixed_point_position())));
Gian Marco Iodice8a383692017-07-03 17:41:47 +010086 }
87 else
88 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010089 build_opts.emplace(("-DALPHA=" + float_to_string_with_full_precision(alpha)));
Gian Marco Iodice8a383692017-07-03 17:41:47 +010090 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010091
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010092 if(is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010093 {
Anthony Barbier6ff3b192017-09-04 18:44:23 +010094 // Create kernel
95 std::string data_type_name = lower_string(string_from_data_type(input0->info()->data_type()));
96
97 if(data_type_name == "f32")
98 {
99 GPUTarget arch_target = get_arch_from_target(get_target());
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100100 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("gemm_mm_interleaved_transposed_f32_" + string_from_target(arch_target), build_opts));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101 }
102 else
103 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100104 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("gemm_mm_interleaved_transposed_" + data_type_name, build_opts));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100105 }
106
107 // Configure window kernel
108 const unsigned int num_elems_processed_per_iteration_x = max_cl_vector_width / data_size_from_type(input0->info()->data_type());
109 constexpr unsigned int num_elems_processed_per_iteration_y = 4;
110
111 Window win = calculate_max_window(*output->info(), Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
112
113 AccessWindowRectangle input0_access(input0->info(), 0, 0, num_elems_processed_per_iteration_y, 1, 1.f, 0.25f);
114 AccessWindowTranspose input1_access(input1->info(), 0, 0, num_elems_processed_per_iteration_x, 1, 0.f, 0.25f);
115 AccessWindowRectangle output_access(output->info(), 0, 0, num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y);
116
117 update_window_and_padding(win, input0_access, input1_access, output_access);
118
119 output_access.set_valid_region(win, ValidRegion(Coordinates(0, 0), output->info()->tensor_shape()));
120
121 ICLKernel::configure(win);
122 }
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100123 else // The input tensors have not been reshaped
124 {
125 ARM_COMPUTE_ERROR_ON(input0->info()->dimension(0) != input1->info()->dimension(1));
126
127 // Special case for 1xN, 2xN, 3xN and 4xN input0 tensor
128 const unsigned int num_elems_processed_per_iteration_x = max_cl_vector_width / data_size_from_type(input0->info()->data_type());
129 const unsigned int num_elems_processed_per_iteration_y = std::min(static_cast<int>(output->info()->dimension(1)), 4);
130
131 build_opts.emplace(("-DDATA_TYPE=" + get_cl_type_from_data_type(input0->info()->data_type())));
132 build_opts.emplace(("-DNUM_ELEMS_PROCESSED_PER_THREAD_X=" + support::cpp11::to_string(num_elems_processed_per_iteration_x)));
133 build_opts.emplace(("-DNUM_ELEMS_PROCESSED_PER_THREAD_Y=" + support::cpp11::to_string(num_elems_processed_per_iteration_y)));
134
135 // Create kernel
136 if(is_data_type_fixed_point(input0->info()->data_type()))
137 {
138 std::string kernel_name = "gemm_mm_" + lower_string(string_from_data_type(input0->info()->data_type()));
139 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel((kernel_name), build_opts));
140 }
141 else
142 {
143 std::string kernel_name = "gemm_mm_floating_point";
144 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel((kernel_name), build_opts));
145 }
146
147 Window win = calculate_max_window(*output->info(), Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
148
149 AccessWindowStatic input0_access(input0->info(), 0, 0, input0->info()->dimension(0), ceil_to_multiple(input0->info()->dimension(1), num_elems_processed_per_iteration_y));
150 AccessWindowStatic input1_access(input1->info(), 0, 0, ceil_to_multiple(input1->info()->dimension(0), num_elems_processed_per_iteration_x), input1->info()->dimension(1));
151 AccessWindowRectangle output_access(output->info(), 0, 0, num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y);
152
153 update_window_and_padding(win, input0_access, input1_access, output_access);
154
155 Coordinates coord;
156 coord.set_num_dimensions(output->info()->num_dimensions());
157 output_access.set_valid_region(win, ValidRegion(coord, output->info()->tensor_shape()));
158
159 ICLKernel::configure(win);
Gian Marcode691f02017-09-08 16:13:11 +0100160
161 // Set config_id for enabling LWS tuning
162 _config_id = "gemm_";
163 _config_id += (is_interleaved_transposed ? "reshaped_" : "");
164 _config_id += lower_string(string_from_data_type(input0->info()->data_type()));
165 _config_id += "_";
166 _config_id += support::cpp11::to_string(output->info()->dimension(1));
167 _config_id += "_";
168 _config_id += support::cpp11::to_string(output->info()->dimension(0));
169 _config_id += "_";
170 _config_id += (is_interleaved_transposed ? support::cpp11::to_string(input1->info()->dimension(0)) : support::cpp11::to_string(input1->info()->dimension(1)));
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100171 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100172}
173
174void CLGEMMMatrixMultiplyKernel::run(const Window &window, cl::CommandQueue &queue)
175{
176 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
177 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
178
179 Window slice = window.first_slice_window_2D();
180 Window slice_matrix_b = slice;
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100181
182 slice_matrix_b.set(Window::DimX, Window::Dimension(0, 1, 1));
183 slice_matrix_b.set(Window::DimY, Window::Dimension(0, 1, 1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100184
185 do
186 {
187 Window slice_b = slice;
188 // Don't slice matrix B along the z dimension if matrix B has just 2 dimensions and matrix A more than 2
189 // This scenario can happen when the the matrix multiplication is used to perform a convolution operation
190 if(_input1->info()->num_dimensions() < 3)
191 {
192 slice_b = slice_matrix_b;
193 }
194
195 unsigned int idx = 0;
196 add_2D_tensor_argument(idx, _input0, slice);
197 add_2D_tensor_argument(idx, _input1, slice_b);
198 add_2D_tensor_argument(idx, _output, slice);
199 enqueue(queue, *this, slice, _lws_hint);
200 }
201 while(window.slide_window_slice_2D(slice));
202}