blob: e91038f9a22ea72726fa7fe12bb5e886186de6c8 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
giuros011c9efeb2019-01-11 14:04:43 +00002 * Copyright (c) 2017-2019 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"
Gian Marco Iodice90313eb2019-01-16 15:40:25 +000036#include "arm_compute/runtime/CL/gemm_reshaped/CLGEMMReshapedConfiguration.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037#include "arm_compute/runtime/ITensorAllocator.h"
38
giuros011c9efeb2019-01-11 14:04:43 +000039namespace arm_compute
40{
Gian Marco Iodice750641d2018-05-08 12:01:57 +010041using namespace arm_compute::misc::shape_calculator;
Gian Marco Iodice90313eb2019-01-16 15:40:25 +000042using namespace arm_compute::cl_gemm;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043
Gian Marco36a0a462018-01-12 10:21:40 +000044namespace
45{
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000046inline bool is_interleaved_transposed(unsigned int m, unsigned int n, unsigned int k, DataType data_type, bool reshape_b_only_on_first_run, GPUTarget gpu_target)
Gian Marco36a0a462018-01-12 10:21:40 +000047{
48 bool flag = true;
49
Georgios Pinitasa34286e2018-09-04 12:18:50 +010050 if(gpu_target_is_in(gpu_target, GPUTarget::G52, GPUTarget::G52LIT, GPUTarget::G71, GPUTarget::G72, GPUTarget::G76))
Gian Marco36a0a462018-01-12 10:21:40 +000051 {
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000052 if((m > 1) && n < 16)
Gian Marco36a0a462018-01-12 10:21:40 +000053 {
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000054 flag = true;
Gian Marco36a0a462018-01-12 10:21:40 +000055 }
56 else
57 {
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000058 // COMPMID-852
59 if(k > 256 && m > 4 && is_data_type_float(data_type) && reshape_b_only_on_first_run)
60 {
61 constexpr float alpha = 3.2f;
62 constexpr float fact0 = 1.51f;
63 constexpr float fact1 = 1.66f;
64 constexpr float ops = 12.0f;
65 const float scale = k > 1024 ? 1.07f : 1.0f;
66 flag = alpha + ((n * fact0) / ops) < ((fact1 * n * scale) / ops);
67 }
68 else
69 {
70 flag = false;
71 }
Gian Marco36a0a462018-01-12 10:21:40 +000072 }
73 }
Gian Marco Iodicecda0c382018-04-23 16:16:22 +010074 else
75 {
76 // We reshape the matrices only if we do not have the vector-by-matrix case and we reshape the matrix B only once
77 flag = m != 1 && reshape_b_only_on_first_run;
78 }
Gian Marco36a0a462018-01-12 10:21:40 +000079
80 return flag;
81}
82} // namespace
83
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010084CLGEMM::CLGEMM(std::shared_ptr<IMemoryManager> memory_manager)
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010085 : _memory_group(std::move(memory_manager)),
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010086 _mm_kernel(),
87 _ma_kernel(),
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000088 _reshape_lhs_kernel(),
89 _reshape_rhs_kernel(),
90 _mm_reshaped_kernel(),
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010091 _tmp_a(),
92 _tmp_b(),
93 _original_b(nullptr),
94 _is_interleaved_transposed(false),
95 _run_addition(false),
96 _reshape_b_only_on_first_run(false),
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +000097 _is_prepared(false),
Gian Marco Iodice90313eb2019-01-16 15:40:25 +000098 _is_new_gemm_reshaped(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010099{
100}
101
Gian Marco1d25ed52017-12-16 19:33:50 +0000102void 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 +0100103{
Georgios Pinitas78c00902018-01-09 17:33:11 +0000104 ARM_COMPUTE_ERROR_ON_NULLPTR(a, b, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100105
Georgios Pinitas78c00902018-01-09 17:33:11 +0000106 // Perform validation step
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100107 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 +0100108
Gian Marco1d25ed52017-12-16 19:33:50 +0000109 // Check if we need to reshape the matrix B only on the first run
110 _reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run();
Michele Di Giorgioba1ffe92018-08-22 14:28:30 +0100111 _is_prepared = gemm_info.retain_internal_weights();
Georgios Pinitas72219332018-06-05 14:56:06 +0100112 _original_b = b;
Gian Marco Iodice1246b632017-08-16 18:38:32 +0100113
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100114 const ICLTensor *matrix_a = a;
115 const ICLTensor *matrix_b = b;
116
Gian Marco36a0a462018-01-12 10:21:40 +0000117 // Get the GPU target
118 const GPUTarget gpu_target = CLScheduler::get().target();
119
120 // Set the target for the kernels
giuros011c9efeb2019-01-11 14:04:43 +0000121 _reshape_lhs_kernel.set_target(gpu_target);
Gian Marco36a0a462018-01-12 10:21:40 +0000122 _mm_kernel.set_target(gpu_target);
123
124 // Arguments used by GEMMReshapeInfo
125 // 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
126 // in order to know how the matrices have been reshaped
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000127 DataType data_type = a->info()->data_type();
128 bool reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d();
129 const unsigned int m = reinterpret_input_as_3d ? (a->info()->dimension(1) * a->info()->dimension(2)) : a->info()->dimension(1);
130 const unsigned int n = b->info()->dimension(0);
131 const unsigned int k = a->info()->dimension(0);
Gian Marco Iodice90313eb2019-01-16 15:40:25 +0000132 const unsigned int batch_size = reinterpret_input_as_3d ? a->info()->dimension(3) : a->info()->dimension(2);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000133 const int depth_output_gemm3d = gemm_info.depth_output_gemm3d();
134 int mult_transpose1xW_width = 1;
135 int mult_interleave4x4_height = 1;
Gian Marco36a0a462018-01-12 10:21:40 +0000136
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100137 if(get_arch_from_target(gpu_target) == GPUTarget::BIFROST)
Gian Marco36a0a462018-01-12 10:21:40 +0000138 {
139 mult_transpose1xW_width = 4;
140 mult_interleave4x4_height = 2;
141 }
giuros018b6b4a92018-12-18 19:01:33 +0000142 GEMMRHSMatrixInfo rhs_info;
143 rhs_info.n0 = 16 / b->info()->element_size();
144 rhs_info.k0 = 1;
145 rhs_info.h0 = mult_transpose1xW_width;
146 rhs_info.interleave = false;
147 rhs_info.transpose = false;
Gian Marco36a0a462018-01-12 10:21:40 +0000148
giuros011c9efeb2019-01-11 14:04:43 +0000149 GEMMLHSMatrixInfo lhs_info;
150 lhs_info.m0 = 4;
151 lhs_info.k0 = 4;
152 lhs_info.v0 = mult_interleave4x4_height;
153 lhs_info.interleave = true;
154 lhs_info.transpose = true;
155
Gian Marco36a0a462018-01-12 10:21:40 +0000156 // Check if we need to reshape the matrix A and matrix B
157 _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 +0000158
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000159 // Check if we can run the new reshaped GEMM
Gian Marco Iodice90313eb2019-01-16 15:40:25 +0000160 const auto workload = static_cast<float>((m * n) / 20.0f);
161 _is_new_gemm_reshaped = (workload > 1600.0f) && (get_arch_from_target(gpu_target) == GPUTarget::BIFROST) && _is_interleaved_transposed && (data_type == DataType::F32);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000162
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000163 const bool add_matrix_c = (beta != 0.f && c != nullptr);
164 const bool is_beta_one = std::abs(1.0f - beta) < 0.00001f;
165 const bool use_fused_add = is_beta_one && (c != nullptr && c->info()->num_dimensions() == 1) && !_is_new_gemm_reshaped;
166
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100167 // if _is_interleaved_transposed is set, force reinterpret_input_as_3d to be false as the output of CLGEMMInterleaveKernel will be 2D
168 if(_is_interleaved_transposed)
169 {
170 reinterpret_input_as_3d = false;
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100171
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100172 matrix_a = &_tmp_a;
173 matrix_b = &_tmp_b;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100174
Gian Marco19835e52018-01-30 13:35:54 +0000175 // Manage intermediate buffers
176 _memory_group.manage(&_tmp_a);
Georgios Pinitasae4ce7b2018-03-19 17:50:45 +0000177 if(!_reshape_b_only_on_first_run)
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000178 {
179 _memory_group.manage(&_tmp_b);
180 }
Gian Marco20d78482018-01-11 15:10:58 +0000181 // _tmp_a and _tmp_b will be auto configured in _interleave_kernel and in _transpose_kernel
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100182
Gian Marco Iodice90313eb2019-01-16 15:40:25 +0000183 if(_is_new_gemm_reshaped)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000184 {
185 GEMMLHSMatrixInfo lhs_info;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100186
Gian Marco Iodice90313eb2019-01-16 15:40:25 +0000187 // Pick up the GEMM configuration
188 std::tie(lhs_info, rhs_info) = CLGEMMReshapedConfigurationFactory::create()->configure(m, n, k, batch_size, data_type);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000189
190 _reshape_lhs_kernel.configure(a, &_tmp_a, lhs_info, gemm_info.reinterpret_input_as_3d());
191 _reshape_rhs_kernel.configure(b, &_tmp_b, rhs_info);
192
193 // Configure and tune matrix multiply kernel
194 _mm_reshaped_kernel.configure(matrix_a, matrix_b, output, alpha, lhs_info, rhs_info, GEMMReshapeInfo(m, n, k, 1, 1,
195 depth_output_gemm3d, reinterpret_input_as_3d));
196 }
197 else
198 {
199 // Configure interleave kernel
giuros011c9efeb2019-01-11 14:04:43 +0000200 _reshape_lhs_kernel.configure(a, &_tmp_a, lhs_info, gemm_info.reinterpret_input_as_3d());
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000201 // Configure transpose kernel
giuros018b6b4a92018-12-18 19:01:33 +0000202 _reshape_rhs_kernel.configure(b, &_tmp_b, rhs_info);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000203 }
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100204 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100205
Gian Marco Iodice90313eb2019-01-16 15:40:25 +0000206 if(!_is_new_gemm_reshaped)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000207 {
208 // Configure and tune matrix multiply kernel
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000209 _mm_kernel.configure(matrix_a, matrix_b, (add_matrix_c && !use_fused_add) ? nullptr : c, output, alpha, beta, _is_interleaved_transposed,
210 GEMMReshapeInfo(m, n, k, mult_transpose1xW_width, mult_interleave4x4_height, depth_output_gemm3d, reinterpret_input_as_3d),
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000211 gemm_info.fp_mixed_precision());
212 CLScheduler::get().tune_kernel_static(_mm_kernel);
213 }
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100214
215 if(_is_interleaved_transposed)
216 {
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100217 // Allocate intermediate tensors
218 _tmp_a.allocator()->allocate();
Georgios Pinitase0437672018-05-02 14:07:55 +0100219 if(!_reshape_b_only_on_first_run)
220 {
221 _tmp_b.allocator()->allocate();
222 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100223 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100224
225 // Configure matrix addition kernel
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000226 if(add_matrix_c && !use_fused_add)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100227 {
228 _ma_kernel.configure(c, output, beta);
229 _run_addition = true;
230 }
231}
232
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100233Status 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 +0000234{
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100235 ARM_COMPUTE_UNUSED(alpha);
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100236 ARM_COMPUTE_UNUSED(output);
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100237
238 // Check if we need to reshape the matrix B only on the first run
239 const bool reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run();
240
241 const ITensorInfo *matrix_a_info = a;
242 const ITensorInfo *matrix_b_info = b;
243
244 TensorInfo tmp_a_info{};
245 TensorInfo tmp_b_info{};
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100246
247 // Get the GPU target
248 const GPUTarget gpu_target = CLScheduler::get().target();
249
250 // Arguments used by GEMMReshapeInfo
251 // 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
252 // in order to know how the matrices have been reshaped
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000253 DataType data_type = a->data_type();
254 bool reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d();
255 const unsigned int m = reinterpret_input_as_3d ? (a->dimension(1) * a->dimension(2)) : a->dimension(1);
256 const unsigned int n = b->dimension(0);
257 const unsigned int k = a->dimension(0);
Gian Marco Iodice90313eb2019-01-16 15:40:25 +0000258 const unsigned int batch_size = reinterpret_input_as_3d ? a->dimension(3) : a->dimension(2);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000259 int mult_transpose1xW_width = 1;
260 int mult_interleave4x4_height = 1;
261 const int depth_output_gemm3d = gemm_info.depth_output_gemm3d();
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100262
263 if(get_arch_from_target(gpu_target) == GPUTarget::BIFROST)
264 {
265 mult_transpose1xW_width = 4;
266 mult_interleave4x4_height = 2;
267 }
268
giuros018b6b4a92018-12-18 19:01:33 +0000269 GEMMRHSMatrixInfo rhs_info;
270 rhs_info.n0 = 16 / b->element_size();
271 rhs_info.k0 = 1;
272 rhs_info.h0 = mult_transpose1xW_width;
273 rhs_info.interleave = false;
274 rhs_info.transpose = false;
275
giuros011c9efeb2019-01-11 14:04:43 +0000276 GEMMLHSMatrixInfo lhs_info;
277 lhs_info.m0 = 4;
278 lhs_info.k0 = 4;
279 lhs_info.v0 = mult_interleave4x4_height;
280 lhs_info.interleave = true;
281 lhs_info.transpose = true;
282
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100283 // Check if we need to reshape the matrix A and matrix B
284 const bool run_interleave_transpose = is_interleaved_transposed(m, n, k, a->data_type(), reshape_b_only_on_first_run, gpu_target);
285
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000286 // Check if we can run the new reshaped GEMM
Gian Marco Iodice90313eb2019-01-16 15:40:25 +0000287 const auto workload = static_cast<float>((m * n) / 20.0f);
288 const bool is_new_gemm_reshaped = (workload > 1600.f) && (get_arch_from_target(gpu_target) == GPUTarget::BIFROST) && run_interleave_transpose && (data_type == DataType::F32);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000289
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000290 const bool add_matrix_c = (beta != 0.f && c != nullptr);
291 const bool is_beta_one = std::abs(1.0f - beta) < 0.00001f;
292 const bool use_fused_add = is_beta_one && (c != nullptr && c->num_dimensions() == 1) && !is_new_gemm_reshaped;
293
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100294 // if _is_interleaved_transposed is set, force reinterpret_input_as_3d to be false as the output of CLGEMMInterleaveKernel will be 2D
295 if(run_interleave_transpose)
296 {
297 reinterpret_input_as_3d = false;
298 }
299
Isabella Gottardic4f582e2018-10-11 19:14:55 +0100300 const GEMMReshapeInfo reshape_info = GEMMReshapeInfo(m, n, k, mult_transpose1xW_width, mult_interleave4x4_height, depth_output_gemm3d, reinterpret_input_as_3d);
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100301
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100302 if(run_interleave_transpose)
303 {
304 matrix_a_info = &tmp_a_info;
305 matrix_b_info = &tmp_b_info;
306
Gian Marco Iodice90313eb2019-01-16 15:40:25 +0000307 if(is_new_gemm_reshaped)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000308 {
309 GEMMLHSMatrixInfo lhs_info;
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100310
Gian Marco Iodice90313eb2019-01-16 15:40:25 +0000311 // Pick up the GEMM configuration
312 std::tie(lhs_info, rhs_info) = CLGEMMReshapedConfigurationFactory::create()->configure(m, n, k, batch_size, data_type);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000313
314 auto_init_if_empty(tmp_a_info, a->clone()->set_tensor_shape(compute_lhs_reshaped_shape(*a, lhs_info, gemm_info.reinterpret_input_as_3d())));
315 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMReshapeLHSMatrixKernel::validate(a, &tmp_a_info, lhs_info, gemm_info.reinterpret_input_as_3d()));
316
317 auto_init_if_empty(tmp_b_info, b->clone()->set_tensor_shape(compute_rhs_reshaped_shape(*b, rhs_info)));
318 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMReshapeRHSMatrixKernel::validate(b, &tmp_b_info, rhs_info));
319
320 // Validate matrix multiply
321 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMMatrixMultiplyReshapedKernel::validate(matrix_a_info, matrix_b_info, output, alpha, lhs_info, rhs_info, GEMMReshapeInfo(m, n, k, 1, 1,
322 depth_output_gemm3d, reinterpret_input_as_3d)));
323 }
324 else
325 {
326 // Validate interleave kernel
giuros011c9efeb2019-01-11 14:04:43 +0000327 auto_init_if_empty(tmp_a_info, a->clone()->set_tensor_shape(compute_lhs_reshaped_shape(*a, lhs_info, gemm_info.reinterpret_input_as_3d())));
328 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMReshapeLHSMatrixKernel::validate(a, &tmp_a_info, lhs_info, gemm_info.reinterpret_input_as_3d()));
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000329 // Validate transpose kernel
giuros018b6b4a92018-12-18 19:01:33 +0000330 auto_init_if_empty(tmp_b_info, b->clone()->set_tensor_shape(compute_rhs_reshaped_shape(*b, rhs_info)));
331 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMReshapeRHSMatrixKernel::validate(b, &tmp_b_info, rhs_info));
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000332 }
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100333 }
334
Gian Marco Iodice90313eb2019-01-16 15:40:25 +0000335 if(!is_new_gemm_reshaped)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000336 {
337 // Validate matrix multiply
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000338 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMMatrixMultiplyKernel::validate(matrix_a_info, matrix_b_info, (add_matrix_c && !use_fused_add) ? nullptr : c, output, alpha, beta,
339 run_interleave_transpose, reshape_info, gpu_target, gemm_info.fp_mixed_precision()));
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000340 }
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100341
Michele Di Giorgioebc3a902018-11-16 16:04:25 +0000342 if(add_matrix_c && !use_fused_add)
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100343 {
344 // Validate matrix addition kernel
Giorgio Arena0f170392018-07-18 16:13:12 +0100345 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMMatrixAdditionKernel::validate(c, output, beta));
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100346 }
347
Georgios Pinitas78c00902018-01-09 17:33:11 +0000348 return Status{};
349}
350
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100351void CLGEMM::run()
352{
Georgios Pinitase0437672018-05-02 14:07:55 +0100353 prepare();
354
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100355 _memory_group.acquire();
356
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100357 if(_is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100358 {
359 // Run interleave kernel
giuros011c9efeb2019-01-11 14:04:43 +0000360 CLScheduler::get().enqueue(_reshape_lhs_kernel, false);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100361
Georgios Pinitase0437672018-05-02 14:07:55 +0100362 if(!_reshape_b_only_on_first_run)
Gian Marco1d25ed52017-12-16 19:33:50 +0000363 {
364 // Run transpose kernel
giuros018b6b4a92018-12-18 19:01:33 +0000365 CLScheduler::get().enqueue(_reshape_rhs_kernel, false);
Gian Marco1d25ed52017-12-16 19:33:50 +0000366 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100367 }
368
369 // Run matrix multiply kernel
Gian Marco Iodice90313eb2019-01-16 15:40:25 +0000370 if(_is_new_gemm_reshaped)
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000371 {
372 CLScheduler::get().enqueue(_mm_reshaped_kernel, !_run_addition);
373 }
374 else
375 {
376 CLScheduler::get().enqueue(_mm_kernel, !_run_addition);
377 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100378
379 // Run matrix addition kernel
380 if(_run_addition)
381 {
382 CLScheduler::get().enqueue(_ma_kernel);
383 }
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100384
385 _memory_group.release();
Georgios Pinitase0437672018-05-02 14:07:55 +0100386}
Georgios Pinitas82b51482018-04-24 15:14:12 +0100387
Georgios Pinitase0437672018-05-02 14:07:55 +0100388void CLGEMM::prepare()
389{
390 if(!_is_prepared)
391 {
392 if(_is_interleaved_transposed && _reshape_b_only_on_first_run)
393 {
Georgios Pinitas72219332018-06-05 14:56:06 +0100394 // Run transpose kernel and mark original weights tensor as unused
Georgios Pinitase0437672018-05-02 14:07:55 +0100395 _tmp_b.allocator()->allocate();
giuros018b6b4a92018-12-18 19:01:33 +0000396 CLScheduler::get().enqueue(_reshape_rhs_kernel, false);
Georgios Pinitase0437672018-05-02 14:07:55 +0100397 _original_b->mark_as_unused();
398 }
399 CLScheduler::get().queue().finish();
400 _is_prepared = true;
401 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100402}
giuros011c9efeb2019-01-11 14:04:43 +0000403} // namespace arm_compute