blob: f9713bb58621abf599f1b3a43cf69c91ee86a906 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Gian Marco20d78482018-01-11 15:10:58 +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/runtime/CL/functions/CLGEMM.h"
25
26#include "arm_compute/core/CL/ICLTensor.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/Error.h"
Gian Marco Iodice750641d2018-05-08 12:01:57 +010028#include "arm_compute/core/GPUTarget.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Types.h"
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +010032#include "arm_compute/core/Utils.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033#include "arm_compute/core/Validate.h"
Gian Marco Iodice750641d2018-05-08 12:01:57 +010034#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010035#include "arm_compute/runtime/CL/CLScheduler.h"
36#include "arm_compute/runtime/ITensorAllocator.h"
37
38using namespace arm_compute;
Gian Marco Iodice750641d2018-05-08 12:01:57 +010039using namespace arm_compute::misc::shape_calculator;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040
Gian Marco36a0a462018-01-12 10:21:40 +000041namespace
42{
43inline bool is_interleaved_transposed(int m, int n, int k, DataType data_type, bool reshape_b_only_on_first_run, GPUTarget gpu_target)
44{
45 bool flag = true;
46
Gian Marco Iodice513fe2e2018-06-04 18:08:48 +010047 if(gpu_target_is_in(gpu_target, GPUTarget::G71, GPUTarget::G72))
Gian Marco36a0a462018-01-12 10:21:40 +000048 {
49 // COMPMID-852
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +010050 if(k > 256 && m > 4 && is_data_type_float(data_type) && reshape_b_only_on_first_run)
Gian Marco36a0a462018-01-12 10:21:40 +000051 {
Gian Marco Iodice513fe2e2018-06-04 18:08:48 +010052 constexpr float alpha = 3.2f;
53 constexpr float fact0 = 1.51f;
54 constexpr float fact1 = 1.66f;
55 constexpr float ops = 12.0f;
56 const float scale = k > 1024 ? 1.07f : 1.0f;
57 flag = alpha + ((n * fact0) / ops) < ((fact1 * n * scale) / ops);
Gian Marco36a0a462018-01-12 10:21:40 +000058 }
59 else
60 {
61 flag = false;
62 }
63 }
Gian Marco Iodicecda0c382018-04-23 16:16:22 +010064 else
65 {
66 // We reshape the matrices only if we do not have the vector-by-matrix case and we reshape the matrix B only once
67 flag = m != 1 && reshape_b_only_on_first_run;
68 }
Gian Marco36a0a462018-01-12 10:21:40 +000069
70 return flag;
71}
72} // namespace
73
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010074CLGEMM::CLGEMM(std::shared_ptr<IMemoryManager> memory_manager)
Georgios Pinitas82b51482018-04-24 15:14:12 +010075 : _memory_group(std::move(memory_manager)), _interleave_kernel(), _transpose_kernel(), _mm_kernel(), _ma_kernel(), _tmp_a(), _tmp_b(), _original_b(nullptr), _is_interleaved_transposed(false),
Georgios Pinitase0437672018-05-02 14:07:55 +010076 _run_addition(false), _reshape_b_only_on_first_run(false), _is_prepared(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010077{
78}
79
Gian Marco1d25ed52017-12-16 19:33:50 +000080void CLGEMM::configure(const ICLTensor *a, const ICLTensor *b, const ICLTensor *c, ICLTensor *output, float alpha, float beta, const GEMMInfo &gemm_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081{
Georgios Pinitas78c00902018-01-09 17:33:11 +000082 ARM_COMPUTE_ERROR_ON_NULLPTR(a, b, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083
Georgios Pinitas78c00902018-01-09 17:33:11 +000084 // Perform validation step
Gian Marco Iodice750641d2018-05-08 12:01:57 +010085 ARM_COMPUTE_ERROR_THROW_ON(validate(a->info(), b->info(), c != nullptr ? c->info() : nullptr, output->info(), alpha, beta, gemm_info));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010086
Georgios Pinitas82b51482018-04-24 15:14:12 +010087 // Store original b matrix
88 _original_b = b;
89
Gian Marco1d25ed52017-12-16 19:33:50 +000090 // Check if we need to reshape the matrix B only on the first run
91 _reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run();
Georgios Pinitase0437672018-05-02 14:07:55 +010092 _is_prepared = false;
Gian Marco Iodice1246b632017-08-16 18:38:32 +010093
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010094 const ICLTensor *matrix_a = a;
95 const ICLTensor *matrix_b = b;
96
Gian Marco36a0a462018-01-12 10:21:40 +000097 // Get the GPU target
98 const GPUTarget gpu_target = CLScheduler::get().target();
99
100 // Set the target for the kernels
101 _interleave_kernel.set_target(gpu_target);
102 _mm_kernel.set_target(gpu_target);
103
104 // Arguments used by GEMMReshapeInfo
105 // If we pass the matrix A and matrix B reshaped to CLGEMMMatrixMultiplyKernel, we need to pass m, n, k, mult_transpose1xW_width and mult_interleave4x4_height to CLGEMMReshapeInfo
106 // in order to know how the matrices have been reshaped
107 const int m = a->info()->dimension(1);
108 const int n = b->info()->dimension(0);
109 const int k = a->info()->dimension(0);
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000110 const int depth_output_gemm3d = gemm_info.depth_output_gemm3d();
Gian Marco36a0a462018-01-12 10:21:40 +0000111 int mult_transpose1xW_width = 1;
112 int mult_interleave4x4_height = 1;
113
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100114 if(get_arch_from_target(gpu_target) == GPUTarget::BIFROST)
Gian Marco36a0a462018-01-12 10:21:40 +0000115 {
116 mult_transpose1xW_width = 4;
117 mult_interleave4x4_height = 2;
118 }
119
120 // Check if we need to reshape the matrix A and matrix B
121 _is_interleaved_transposed = is_interleaved_transposed(m, n, k, a->info()->data_type(), _reshape_b_only_on_first_run, gpu_target);
Gian Marcob5311a62017-12-13 12:48:03 +0000122
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100123 if(_is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100124 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100125 matrix_a = &_tmp_a;
126 matrix_b = &_tmp_b;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100127
Gian Marco19835e52018-01-30 13:35:54 +0000128 // Manage intermediate buffers
129 _memory_group.manage(&_tmp_a);
Georgios Pinitasae4ce7b2018-03-19 17:50:45 +0000130 if(!_reshape_b_only_on_first_run)
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000131 {
132 _memory_group.manage(&_tmp_b);
133 }
Gian Marco20d78482018-01-11 15:10:58 +0000134 // _tmp_a and _tmp_b will be auto configured in _interleave_kernel and in _transpose_kernel
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100135
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100136 // Configure interleave kernel
Gian Marco36a0a462018-01-12 10:21:40 +0000137 _interleave_kernel.configure(a, &_tmp_a, mult_interleave4x4_height);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100138
139 // Configure transpose kernel
Gian Marco36a0a462018-01-12 10:21:40 +0000140 _transpose_kernel.configure(b, &_tmp_b, mult_transpose1xW_width);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100141 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100142
Georgios Pinitas17812ba2018-06-04 19:27:13 +0100143 // Configure and tune matrix multiply kernel
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000144 _mm_kernel.configure(matrix_a, matrix_b, output, alpha, _is_interleaved_transposed, GEMMReshapeInfo(m, n, k, mult_transpose1xW_width, mult_interleave4x4_height, depth_output_gemm3d));
Georgios Pinitas17812ba2018-06-04 19:27:13 +0100145 CLScheduler::get().tune_kernel_static(_mm_kernel);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100146
147 if(_is_interleaved_transposed)
148 {
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100149 // Allocate intermediate tensors
150 _tmp_a.allocator()->allocate();
Georgios Pinitase0437672018-05-02 14:07:55 +0100151 if(!_reshape_b_only_on_first_run)
152 {
153 _tmp_b.allocator()->allocate();
154 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100155 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100156
157 // Configure matrix addition kernel
158 if(beta != 0 && c != nullptr)
159 {
160 _ma_kernel.configure(c, output, beta);
161 _run_addition = true;
162 }
163}
164
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100165Status CLGEMM::validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info)
Georgios Pinitas78c00902018-01-09 17:33:11 +0000166{
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100167 ARM_COMPUTE_UNUSED(alpha);
168
169 // Check if we need to reshape the matrix B only on the first run
170 const bool reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run();
171
172 const ITensorInfo *matrix_a_info = a;
173 const ITensorInfo *matrix_b_info = b;
174
175 TensorInfo tmp_a_info{};
176 TensorInfo tmp_b_info{};
177 TensorInfo tmp_output_info = *output->clone();
178
179 // Get the GPU target
180 const GPUTarget gpu_target = CLScheduler::get().target();
181
182 // Arguments used by GEMMReshapeInfo
183 // If we pass the matrix A and matrix B reshaped to CLGEMMMatrixMultiplyKernel, we need to pass m, n, k, mult_transpose1xW_width and mult_interleave4x4_height to CLGEMMReshapeInfo
184 // in order to know how the matrices have been reshaped
185 const int m = a->dimension(1);
186 const int n = b->dimension(0);
187 const int k = a->dimension(0);
188 int mult_transpose1xW_width = 1;
189 int mult_interleave4x4_height = 1;
190
191 if(get_arch_from_target(gpu_target) == GPUTarget::BIFROST)
192 {
193 mult_transpose1xW_width = 4;
194 mult_interleave4x4_height = 2;
195 }
196
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000197 const GEMMReshapeInfo reshape_info = GEMMReshapeInfo(m, n, k, mult_transpose1xW_width, mult_interleave4x4_height, gemm_info.depth_output_gemm3d());
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100198
199 // Check if we need to reshape the matrix A and matrix B
200 const bool run_interleave_transpose = is_interleaved_transposed(m, n, k, a->data_type(), reshape_b_only_on_first_run, gpu_target);
201
202 if(run_interleave_transpose)
203 {
204 matrix_a_info = &tmp_a_info;
205 matrix_b_info = &tmp_b_info;
206
207 // Validate interleave kernel
208 auto_init_if_empty(tmp_a_info, a->clone()->set_tensor_shape(compute_interleaved_shape(*a, mult_interleave4x4_height)));
209 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMInterleave4x4Kernel::validate(a, &tmp_a_info, mult_interleave4x4_height));
210
211 // Validate transpose kernel
212 auto_init_if_empty(tmp_b_info, b->clone()->set_tensor_shape(compute_transpose1xW_with_element_size_shape(*b, mult_transpose1xW_width)));
213 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMTranspose1xWKernel::validate(b, &tmp_b_info, mult_transpose1xW_width));
214 }
215
216 // Validate matrix multiply
217 auto_init_if_empty(tmp_output_info, matrix_a_info->clone()->set_tensor_shape(compute_mm_shape(*matrix_a_info, *matrix_b_info, run_interleave_transpose, reshape_info)));
218 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMMatrixMultiplyKernel::validate(matrix_a_info, matrix_b_info, &tmp_output_info, alpha, run_interleave_transpose, reshape_info, gpu_target));
219
220 if(beta != 0 && c != nullptr)
221 {
222 // Validate matrix addition kernel
223 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMMatrixAdditionKernel::validate(c, &tmp_output_info, beta));
224 }
225
Georgios Pinitas78c00902018-01-09 17:33:11 +0000226 return Status{};
227}
228
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100229void CLGEMM::run()
230{
Georgios Pinitase0437672018-05-02 14:07:55 +0100231 prepare();
232
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100233 _memory_group.acquire();
234
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100235 if(_is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100236 {
237 // Run interleave kernel
238 CLScheduler::get().enqueue(_interleave_kernel, false);
239
Georgios Pinitase0437672018-05-02 14:07:55 +0100240 if(!_reshape_b_only_on_first_run)
Gian Marco1d25ed52017-12-16 19:33:50 +0000241 {
242 // Run transpose kernel
243 CLScheduler::get().enqueue(_transpose_kernel, false);
244 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100245 }
246
247 // Run matrix multiply kernel
248 CLScheduler::get().enqueue(_mm_kernel, !_run_addition);
249
250 // Run matrix addition kernel
251 if(_run_addition)
252 {
253 CLScheduler::get().enqueue(_ma_kernel);
254 }
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100255
256 _memory_group.release();
Georgios Pinitase0437672018-05-02 14:07:55 +0100257}
Georgios Pinitas82b51482018-04-24 15:14:12 +0100258
Georgios Pinitase0437672018-05-02 14:07:55 +0100259void CLGEMM::prepare()
260{
261 if(!_is_prepared)
262 {
263 if(_is_interleaved_transposed && _reshape_b_only_on_first_run)
264 {
265 // Run transpose kernel
266 _tmp_b.allocator()->allocate();
267 CLScheduler::get().enqueue(_transpose_kernel, false);
268 _original_b->mark_as_unused();
269 }
270 CLScheduler::get().queue().finish();
271 _is_prepared = true;
272 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100273}