blob: bb76872700f8cfef1730dee0d4d06194145f8a5f [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
Gian Marco1d25ed52017-12-16 19:33:50 +000087 // Check if we need to reshape the matrix B only on the first run
88 _reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run();
Georgios Pinitase0437672018-05-02 14:07:55 +010089 _is_prepared = false;
Georgios Pinitas72219332018-06-05 14:56:06 +010090 _original_b = b;
Gian Marco Iodice1246b632017-08-16 18:38:32 +010091
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010092 const ICLTensor *matrix_a = a;
93 const ICLTensor *matrix_b = b;
94
Gian Marco36a0a462018-01-12 10:21:40 +000095 // Get the GPU target
96 const GPUTarget gpu_target = CLScheduler::get().target();
97
98 // Set the target for the kernels
99 _interleave_kernel.set_target(gpu_target);
100 _mm_kernel.set_target(gpu_target);
101
102 // Arguments used by GEMMReshapeInfo
103 // 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
104 // in order to know how the matrices have been reshaped
105 const int m = a->info()->dimension(1);
106 const int n = b->info()->dimension(0);
107 const int k = a->info()->dimension(0);
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000108 const int depth_output_gemm3d = gemm_info.depth_output_gemm3d();
Gian Marco36a0a462018-01-12 10:21:40 +0000109 int mult_transpose1xW_width = 1;
110 int mult_interleave4x4_height = 1;
111
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100112 if(get_arch_from_target(gpu_target) == GPUTarget::BIFROST)
Gian Marco36a0a462018-01-12 10:21:40 +0000113 {
114 mult_transpose1xW_width = 4;
115 mult_interleave4x4_height = 2;
116 }
117
118 // Check if we need to reshape the matrix A and matrix B
119 _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 +0000120
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100121 if(_is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100122 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100123 matrix_a = &_tmp_a;
124 matrix_b = &_tmp_b;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100125
Gian Marco19835e52018-01-30 13:35:54 +0000126 // Manage intermediate buffers
127 _memory_group.manage(&_tmp_a);
Georgios Pinitasae4ce7b2018-03-19 17:50:45 +0000128 if(!_reshape_b_only_on_first_run)
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000129 {
130 _memory_group.manage(&_tmp_b);
131 }
Gian Marco20d78482018-01-11 15:10:58 +0000132 // _tmp_a and _tmp_b will be auto configured in _interleave_kernel and in _transpose_kernel
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100133
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100134 // Configure interleave kernel
Gian Marco36a0a462018-01-12 10:21:40 +0000135 _interleave_kernel.configure(a, &_tmp_a, mult_interleave4x4_height);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100136
137 // Configure transpose kernel
Gian Marco36a0a462018-01-12 10:21:40 +0000138 _transpose_kernel.configure(b, &_tmp_b, mult_transpose1xW_width);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100139 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100140
Georgios Pinitas17812ba2018-06-04 19:27:13 +0100141 // Configure and tune matrix multiply kernel
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000142 _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 +0100143 CLScheduler::get().tune_kernel_static(_mm_kernel);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100144
145 if(_is_interleaved_transposed)
146 {
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100147 // Allocate intermediate tensors
148 _tmp_a.allocator()->allocate();
Georgios Pinitase0437672018-05-02 14:07:55 +0100149 if(!_reshape_b_only_on_first_run)
150 {
151 _tmp_b.allocator()->allocate();
152 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100153 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100154
155 // Configure matrix addition kernel
156 if(beta != 0 && c != nullptr)
157 {
158 _ma_kernel.configure(c, output, beta);
159 _run_addition = true;
160 }
161}
162
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100163Status 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 +0000164{
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100165 ARM_COMPUTE_UNUSED(alpha);
166
167 // Check if we need to reshape the matrix B only on the first run
168 const bool reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run();
169
170 const ITensorInfo *matrix_a_info = a;
171 const ITensorInfo *matrix_b_info = b;
172
173 TensorInfo tmp_a_info{};
174 TensorInfo tmp_b_info{};
175 TensorInfo tmp_output_info = *output->clone();
176
177 // Get the GPU target
178 const GPUTarget gpu_target = CLScheduler::get().target();
179
180 // Arguments used by GEMMReshapeInfo
181 // 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
182 // in order to know how the matrices have been reshaped
183 const int m = a->dimension(1);
184 const int n = b->dimension(0);
185 const int k = a->dimension(0);
186 int mult_transpose1xW_width = 1;
187 int mult_interleave4x4_height = 1;
188
189 if(get_arch_from_target(gpu_target) == GPUTarget::BIFROST)
190 {
191 mult_transpose1xW_width = 4;
192 mult_interleave4x4_height = 2;
193 }
194
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000195 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 +0100196
197 // Check if we need to reshape the matrix A and matrix B
198 const bool run_interleave_transpose = is_interleaved_transposed(m, n, k, a->data_type(), reshape_b_only_on_first_run, gpu_target);
199
200 if(run_interleave_transpose)
201 {
202 matrix_a_info = &tmp_a_info;
203 matrix_b_info = &tmp_b_info;
204
205 // Validate interleave kernel
206 auto_init_if_empty(tmp_a_info, a->clone()->set_tensor_shape(compute_interleaved_shape(*a, mult_interleave4x4_height)));
207 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMInterleave4x4Kernel::validate(a, &tmp_a_info, mult_interleave4x4_height));
208
209 // Validate transpose kernel
210 auto_init_if_empty(tmp_b_info, b->clone()->set_tensor_shape(compute_transpose1xW_with_element_size_shape(*b, mult_transpose1xW_width)));
211 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMTranspose1xWKernel::validate(b, &tmp_b_info, mult_transpose1xW_width));
212 }
213
214 // Validate matrix multiply
215 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)));
216 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMMatrixMultiplyKernel::validate(matrix_a_info, matrix_b_info, &tmp_output_info, alpha, run_interleave_transpose, reshape_info, gpu_target));
217
218 if(beta != 0 && c != nullptr)
219 {
220 // Validate matrix addition kernel
221 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMMatrixAdditionKernel::validate(c, &tmp_output_info, beta));
222 }
223
Georgios Pinitas78c00902018-01-09 17:33:11 +0000224 return Status{};
225}
226
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100227void CLGEMM::run()
228{
Georgios Pinitase0437672018-05-02 14:07:55 +0100229 prepare();
230
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100231 _memory_group.acquire();
232
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100233 if(_is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100234 {
235 // Run interleave kernel
236 CLScheduler::get().enqueue(_interleave_kernel, false);
237
Georgios Pinitase0437672018-05-02 14:07:55 +0100238 if(!_reshape_b_only_on_first_run)
Gian Marco1d25ed52017-12-16 19:33:50 +0000239 {
240 // Run transpose kernel
241 CLScheduler::get().enqueue(_transpose_kernel, false);
242 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100243 }
244
245 // Run matrix multiply kernel
246 CLScheduler::get().enqueue(_mm_kernel, !_run_addition);
247
248 // Run matrix addition kernel
249 if(_run_addition)
250 {
251 CLScheduler::get().enqueue(_ma_kernel);
252 }
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100253
254 _memory_group.release();
Georgios Pinitase0437672018-05-02 14:07:55 +0100255}
Georgios Pinitas82b51482018-04-24 15:14:12 +0100256
Georgios Pinitase0437672018-05-02 14:07:55 +0100257void CLGEMM::prepare()
258{
259 if(!_is_prepared)
260 {
261 if(_is_interleaved_transposed && _reshape_b_only_on_first_run)
262 {
Georgios Pinitas72219332018-06-05 14:56:06 +0100263 // Run transpose kernel and mark original weights tensor as unused
Georgios Pinitase0437672018-05-02 14:07:55 +0100264 _tmp_b.allocator()->allocate();
265 CLScheduler::get().enqueue(_transpose_kernel, false);
266 _original_b->mark_as_unused();
267 }
268 CLScheduler::get().queue().finish();
269 _is_prepared = true;
270 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100271}