blob: 1d1b17bbf189eb28a8212be33811826598eb1b5c [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
Georgios Pinitasb03f7c52018-07-12 10:49:53 +010047 if(gpu_target_is_in(gpu_target, GPUTarget::G71, GPUTarget::G72, GPUTarget::G76))
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
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100105 bool reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d();
106 const int m = reinterpret_input_as_3d ? (a->info()->dimension(1) * a->info()->dimension(2)) : a->info()->dimension(1);
Gian Marco36a0a462018-01-12 10:21:40 +0000107 const int n = b->info()->dimension(0);
108 const int k = a->info()->dimension(0);
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000109 const int depth_output_gemm3d = gemm_info.depth_output_gemm3d();
Gian Marco36a0a462018-01-12 10:21:40 +0000110 int mult_transpose1xW_width = 1;
111 int mult_interleave4x4_height = 1;
112
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100113 if(get_arch_from_target(gpu_target) == GPUTarget::BIFROST)
Gian Marco36a0a462018-01-12 10:21:40 +0000114 {
115 mult_transpose1xW_width = 4;
116 mult_interleave4x4_height = 2;
117 }
118
119 // Check if we need to reshape the matrix A and matrix B
120 _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 +0000121
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100122 // if _is_interleaved_transposed is set, force reinterpret_input_as_3d to be false as the output of CLGEMMInterleaveKernel will be 2D
123 if(_is_interleaved_transposed)
124 {
125 reinterpret_input_as_3d = false;
126 }
127
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100128 if(_is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100129 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100130 matrix_a = &_tmp_a;
131 matrix_b = &_tmp_b;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100132
Gian Marco19835e52018-01-30 13:35:54 +0000133 // Manage intermediate buffers
134 _memory_group.manage(&_tmp_a);
Georgios Pinitasae4ce7b2018-03-19 17:50:45 +0000135 if(!_reshape_b_only_on_first_run)
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000136 {
137 _memory_group.manage(&_tmp_b);
138 }
Gian Marco20d78482018-01-11 15:10:58 +0000139 // _tmp_a and _tmp_b will be auto configured in _interleave_kernel and in _transpose_kernel
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100140
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100141 // Configure interleave kernel
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100142 _interleave_kernel.configure(a, &_tmp_a, mult_interleave4x4_height, gemm_info.reinterpret_input_as_3d());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100143
144 // Configure transpose kernel
Gian Marco36a0a462018-01-12 10:21:40 +0000145 _transpose_kernel.configure(b, &_tmp_b, mult_transpose1xW_width);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100146 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100147
Georgios Pinitas17812ba2018-06-04 19:27:13 +0100148 // Configure and tune matrix multiply kernel
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100149 _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,
150 reinterpret_input_as_3d));
Georgios Pinitas17812ba2018-06-04 19:27:13 +0100151 CLScheduler::get().tune_kernel_static(_mm_kernel);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100152
153 if(_is_interleaved_transposed)
154 {
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100155 // Allocate intermediate tensors
156 _tmp_a.allocator()->allocate();
Georgios Pinitase0437672018-05-02 14:07:55 +0100157 if(!_reshape_b_only_on_first_run)
158 {
159 _tmp_b.allocator()->allocate();
160 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100161 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100162
163 // Configure matrix addition kernel
164 if(beta != 0 && c != nullptr)
165 {
166 _ma_kernel.configure(c, output, beta);
167 _run_addition = true;
168 }
169}
170
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100171Status 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 +0000172{
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100173 ARM_COMPUTE_UNUSED(alpha);
174
175 // Check if we need to reshape the matrix B only on the first run
176 const bool reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run();
177
178 const ITensorInfo *matrix_a_info = a;
179 const ITensorInfo *matrix_b_info = b;
180
181 TensorInfo tmp_a_info{};
182 TensorInfo tmp_b_info{};
183 TensorInfo tmp_output_info = *output->clone();
184
185 // Get the GPU target
186 const GPUTarget gpu_target = CLScheduler::get().target();
187
188 // Arguments used by GEMMReshapeInfo
189 // 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
190 // in order to know how the matrices have been reshaped
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100191 bool reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d();
192 const int m = reinterpret_input_as_3d ? (a->dimension(1) * a->dimension(2)) : a->dimension(1);
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100193 const int n = b->dimension(0);
194 const int k = a->dimension(0);
195 int mult_transpose1xW_width = 1;
196 int mult_interleave4x4_height = 1;
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100197 const int depth_output_gemm3d = gemm_info.depth_output_gemm3d();
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100198
199 if(get_arch_from_target(gpu_target) == GPUTarget::BIFROST)
200 {
201 mult_transpose1xW_width = 4;
202 mult_interleave4x4_height = 2;
203 }
204
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100205 // Check if we need to reshape the matrix A and matrix B
206 const bool run_interleave_transpose = is_interleaved_transposed(m, n, k, a->data_type(), reshape_b_only_on_first_run, gpu_target);
207
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100208 // if _is_interleaved_transposed is set, force reinterpret_input_as_3d to be false as the output of CLGEMMInterleaveKernel will be 2D
209 if(run_interleave_transpose)
210 {
211 reinterpret_input_as_3d = false;
212 }
213
214 const GEMMReshapeInfo reshape_info = GEMMReshapeInfo(m, n, k, mult_transpose1xW_width, mult_interleave4x4_height, depth_output_gemm3d, reinterpret_input_as_3d);
215
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100216 if(run_interleave_transpose)
217 {
218 matrix_a_info = &tmp_a_info;
219 matrix_b_info = &tmp_b_info;
220
221 // Validate interleave kernel
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100222 auto_init_if_empty(tmp_a_info, a->clone()->set_tensor_shape(compute_interleaved_shape(*a, mult_interleave4x4_height, gemm_info.reinterpret_input_as_3d())));
223 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMInterleave4x4Kernel::validate(a, &tmp_a_info, mult_interleave4x4_height, gemm_info.reinterpret_input_as_3d()));
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100224
225 // Validate transpose kernel
226 auto_init_if_empty(tmp_b_info, b->clone()->set_tensor_shape(compute_transpose1xW_with_element_size_shape(*b, mult_transpose1xW_width)));
227 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMTranspose1xWKernel::validate(b, &tmp_b_info, mult_transpose1xW_width));
228 }
229
230 // Validate matrix multiply
231 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)));
232 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMMatrixMultiplyKernel::validate(matrix_a_info, matrix_b_info, &tmp_output_info, alpha, run_interleave_transpose, reshape_info, gpu_target));
233
234 if(beta != 0 && c != nullptr)
235 {
236 // Validate matrix addition kernel
237 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMMatrixAdditionKernel::validate(c, &tmp_output_info, beta));
238 }
239
Georgios Pinitas78c00902018-01-09 17:33:11 +0000240 return Status{};
241}
242
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100243void CLGEMM::run()
244{
Georgios Pinitase0437672018-05-02 14:07:55 +0100245 prepare();
246
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100247 _memory_group.acquire();
248
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100249 if(_is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100250 {
251 // Run interleave kernel
252 CLScheduler::get().enqueue(_interleave_kernel, false);
253
Georgios Pinitase0437672018-05-02 14:07:55 +0100254 if(!_reshape_b_only_on_first_run)
Gian Marco1d25ed52017-12-16 19:33:50 +0000255 {
256 // Run transpose kernel
257 CLScheduler::get().enqueue(_transpose_kernel, false);
258 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100259 }
260
261 // Run matrix multiply kernel
262 CLScheduler::get().enqueue(_mm_kernel, !_run_addition);
263
264 // Run matrix addition kernel
265 if(_run_addition)
266 {
267 CLScheduler::get().enqueue(_ma_kernel);
268 }
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100269
270 _memory_group.release();
Georgios Pinitase0437672018-05-02 14:07:55 +0100271}
Georgios Pinitas82b51482018-04-24 15:14:12 +0100272
Georgios Pinitase0437672018-05-02 14:07:55 +0100273void CLGEMM::prepare()
274{
275 if(!_is_prepared)
276 {
277 if(_is_interleaved_transposed && _reshape_b_only_on_first_run)
278 {
Georgios Pinitas72219332018-06-05 14:56:06 +0100279 // Run transpose kernel and mark original weights tensor as unused
Georgios Pinitase0437672018-05-02 14:07:55 +0100280 _tmp_b.allocator()->allocate();
281 CLScheduler::get().enqueue(_transpose_kernel, false);
282 _original_b->mark_as_unused();
283 }
284 CLScheduler::get().queue().finish();
285 _is_prepared = true;
286 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100287}