blob: 3b8ca44ed7c35d7715bd8d1c6b057647d8717372 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 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/NEON/functions/NEGEMM.h"
25
Giorgio Arenaa855af12018-07-16 17:20:38 +010026#include "arm_compute/core/CPP/Validate.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/Error.h"
28#include "arm_compute/core/Helpers.h"
29#include "arm_compute/core/ITensor.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Types.h"
32#include "arm_compute/core/Validate.h"
Giorgio Arenaa855af12018-07-16 17:20:38 +010033#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034#include "arm_compute/runtime/NEON/NEScheduler.h"
Anthony Barbier71d9b572018-07-06 17:05:59 +010035#include "arm_compute/runtime/NEON/functions/NEGEMMAssemblyDispatch.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036#include "arm_compute/runtime/TensorAllocator.h"
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010037
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038#include <cmath>
39
Giorgio Arenaa855af12018-07-16 17:20:38 +010040using namespace arm_compute::misc::shape_calculator;
41
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010042namespace arm_compute
43{
Michalis Spyrou1a569a32019-09-10 17:20:34 +010044NEGEMM::NEGEMM(std::shared_ptr<IMemoryManager> memory_manager, IWeightsManager *weights_manager)
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010045 : _memory_group(memory_manager), _weights_manager(weights_manager), _interleave_kernel(), _transpose_kernel(), _mm_kernel(), _asm_glue(memory_manager, weights_manager), _ma_kernel(),
Michalis Spyrou173ba9b2020-06-23 17:25:43 +010046 _alpha_scale_func(nullptr), _add_bias(), _activation_func(), _tmp_a(), _tmp_b(), _tmp_d(), _original_b(nullptr), _run_vector_matrix_multiplication(false), _run_alpha_scale(false),
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010047 _run_addition(false), _run_bias_addition(false), _run_activation(false), _reshape_b_only_on_first_run(false), _is_prepared(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048{
49}
50
Gian Marco1d25ed52017-12-16 19:33:50 +000051void NEGEMM::configure(const ITensor *a, const ITensor *b, const ITensor *c, ITensor *d, float alpha, float beta, const GEMMInfo &gemm_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010052{
Giorgio Arenaa855af12018-07-16 17:20:38 +010053 ARM_COMPUTE_ERROR_THROW_ON(NEGEMM::validate(a->info(), b->info(), (c != nullptr) ? c->info() : nullptr, d->info(), alpha, beta, gemm_info));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010054
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010055 const bool is_c_bias = gemm_info.reshape_b_only_on_first_run();
56 bool run_optimised = bool(NEGEMMAssemblyDispatch::validate(a->info(), b->info(), (is_c_bias && c != nullptr) ? c->info() : nullptr, d->info(), gemm_info));
57
Gian Marco1d25ed52017-12-16 19:33:50 +000058 // Check if we need to reshape the matrix B only on the first run
Georgios Pinitas72219332018-06-05 14:56:06 +010059 _is_prepared = false;
Gian Marco1d25ed52017-12-16 19:33:50 +000060 _reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run();
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010061 _run_vector_matrix_multiplication = a->info()->dimension(1) < 2;
Georgios Pinitas72219332018-06-05 14:56:06 +010062 _original_b = b;
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010063 _run_alpha_scale = alpha != 1.f;
64 _run_bias_addition = c != nullptr && gemm_info.reshape_b_only_on_first_run();
65 _run_addition = beta != 0 && c != nullptr && !gemm_info.reshape_b_only_on_first_run();
66 _run_activation = gemm_info.activation_info().enabled() && (!run_optimised || (run_optimised && !NEGEMMAssemblyDispatch::is_activation_supported(gemm_info.activation_info())));
Gian Marco Iodice597a8562018-08-01 15:06:06 +010067
Anthony Barbier71d9b572018-07-06 17:05:59 +010068 if(run_optimised)
69 {
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010070 const ITensor *c_to_use = is_c_bias ? c : nullptr;
Georgios Pinitas0f954eb2020-06-23 17:28:38 +010071 _asm_glue.configure(a, b, c_to_use, d, gemm_info);
Gian Marco Iodice597a8562018-08-01 15:06:06 +010072 ARM_COMPUTE_ERROR_ON(!_asm_glue.is_configured());
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010073
74 // Scale product by alpha
75 if(_run_alpha_scale)
76 {
77 _alpha_scale_func.configure(d, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LINEAR, alpha, 0.f));
78 }
Anthony Barbier71d9b572018-07-06 17:05:59 +010079 }
Gian Marco Iodice597a8562018-08-01 15:06:06 +010080 else
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010081 {
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010082 // Pick output tensor in case bias addition should be performed
83 ITensor *gemm_output_to_use = d;
84 if(_run_bias_addition)
85 {
86 gemm_output_to_use = &_tmp_d;
87 _memory_group.manage(&_tmp_d);
88 }
89
90 // Select between GEMV and GEMM
Gian Marco Iodice597a8562018-08-01 15:06:06 +010091 if(_run_vector_matrix_multiplication)
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000092 {
93 // Configure the matrix multiply kernel
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010094 _mm_kernel.configure(a, b, gemm_output_to_use, alpha, false);
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000095 }
Gian Marco Iodice597a8562018-08-01 15:06:06 +010096 else
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010097 {
98 TensorShape shape_tmp_a = a->info()->tensor_shape();
99 TensorShape shape_tmp_b = b->info()->tensor_shape();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100100
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100101 shape_tmp_a.set(0, a->info()->dimension(0) * 4);
102 shape_tmp_a.set(1, std::ceil(a->info()->dimension(1) / 4.0f));
Georgios Pinitas658039b2017-09-15 16:30:50 +0100103
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100104 const unsigned int transpose_w = 16 / data_size_from_type(b->info()->data_type());
105 shape_tmp_b.set(0, b->info()->dimension(1) * transpose_w);
106 shape_tmp_b.set(1, std::ceil(b->info()->dimension(0) / static_cast<float>(transpose_w)));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100107
Georgios Pinitasf85433b2019-02-19 13:42:59 +0000108 TensorInfo info_a = a->info()->clone()->set_tensor_shape(shape_tmp_a).set_is_resizable(true);
109 TensorInfo info_b = b->info()->clone()->set_tensor_shape(shape_tmp_b).set_is_resizable(true);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100110
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100111 _tmp_a.allocator()->init(info_a);
112 _tmp_b.allocator()->init(info_b);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100114 // Manage intermediate buffers
115 _memory_group.manage(&_tmp_a);
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100116 if(!_reshape_b_only_on_first_run)
117 {
118 _memory_group.manage(&_tmp_b);
119 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100120
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000121 int m = a->info()->dimension(1);
122 int n = b->info()->dimension(0);
123 int k = a->info()->dimension(0);
124
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100125 // Configure interleave kernel
126 _interleave_kernel.configure(a, &_tmp_a);
127
128 // Configure transpose kernel
129 _transpose_kernel.configure(b, &_tmp_b);
130
131 // Configure matrix multiplication kernel
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100132 _mm_kernel.configure(&_tmp_a, &_tmp_b, gemm_output_to_use, alpha, true, GEMMReshapeInfo(m, n, k));
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100133
134 // Allocate once the all configure methods have been called
135 _tmp_a.allocator()->allocate();
Georgios Pinitas72219332018-06-05 14:56:06 +0100136 if(!_reshape_b_only_on_first_run)
137 {
138 _tmp_b.allocator()->allocate();
139 }
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100140 }
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100141
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100142 if(_run_bias_addition)
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100143 {
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100144 _add_bias.configure(gemm_output_to_use, c, d, ConvertPolicy::SATURATE);
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100145 _tmp_d.allocator()->allocate();
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100146 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100147 }
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100148
149 // Configure matrix addition kernel
150 if(_run_addition)
151 {
152 _ma_kernel.configure(c, d, beta);
153 }
154
155 // Configure activation
156 const ActivationLayerInfo &activation = gemm_info.activation_info();
157 if(_run_activation)
158 {
159 _activation_func.configure(d, nullptr, activation);
160 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100161}
162
Giorgio Arenaa855af12018-07-16 17:20:38 +0100163Status NEGEMM::validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info)
164{
165 ARM_COMPUTE_UNUSED(alpha);
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100166 const bool is_c_bias = gemm_info.reshape_b_only_on_first_run();
Giorgio Arenaa855af12018-07-16 17:20:38 +0100167
168 ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(a);
Georgios Pinitasafc630f2020-03-30 14:09:27 +0100169 ARM_COMPUTE_RETURN_ERROR_ON_CPU_BF16_UNSUPPORTED(a);
Georgios Pinitasc7b183a2020-03-06 18:12:09 +0000170 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::BFLOAT16, DataType::F16, DataType::F32);
Georgios Pinitasafc630f2020-03-30 14:09:27 +0100171 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(a, b);
Giorgio Arenaa855af12018-07-16 17:20:38 +0100172 ARM_COMPUTE_RETURN_ERROR_ON_MSG(a->dimension(0) != b->dimension(1), "The product AB is defined only if the number of columns in A is equal to the number of rows in B");
173 ARM_COMPUTE_RETURN_ERROR_ON_MSG(gemm_info.is_a_reshaped(), "Matrix A already reshaped is not supported");
174 ARM_COMPUTE_RETURN_ERROR_ON_MSG(gemm_info.is_b_reshaped(), "Matrix B already reshaped is not supported");
Georgios Pinitasafc630f2020-03-30 14:09:27 +0100175 if(a->data_type() != DataType::BFLOAT16)
176 {
177 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(a, output);
178 }
Giorgio Arenaa855af12018-07-16 17:20:38 +0100179
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100180 if(c != nullptr && !is_c_bias)
Giorgio Arenaa855af12018-07-16 17:20:38 +0100181 {
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000182 ARM_COMPUTE_RETURN_ERROR_ON(gemm_info.depth_output_gemm3d() != 0);
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100183 ARM_COMPUTE_RETURN_ERROR_ON(gemm_info.reinterpret_input_as_3d());
Georgios Pinitasafc630f2020-03-30 14:09:27 +0100184 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(c, output);
Giorgio Arenaa855af12018-07-16 17:20:38 +0100185 ARM_COMPUTE_RETURN_ERROR_ON_MSG(a->dimension(1) != c->dimension(1), "The C matrix must have the same number of rows as the matrix A");
186 ARM_COMPUTE_RETURN_ERROR_ON_MSG(b->dimension(0) != c->dimension(0), "The C matrix must have the same number of columns as the matrix B");
187 }
188
189 if(output->total_size() != 0)
190 {
191 ARM_COMPUTE_RETURN_ERROR_ON(b->dimension(0) != output->dimension(0));
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000192 if(gemm_info.depth_output_gemm3d() != 0)
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100193 {
194 if(gemm_info.reinterpret_input_as_3d())
195 {
196 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(1) != output->dimension(1));
197 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(2) != output->dimension(2));
198 }
199 else
200 {
201 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(1) != output->dimension(1) * output->dimension(2));
202 }
203 }
204 else
205 {
206 ARM_COMPUTE_RETURN_ERROR_ON(a->dimension(1) != output->dimension(1));
207 }
Giorgio Arenaa855af12018-07-16 17:20:38 +0100208 }
209
Giorgio Arenaa855af12018-07-16 17:20:38 +0100210 // Check if we need to run the optimized assembly kernel
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100211 const bool run_optimised = bool(NEGEMMAssemblyDispatch::validate(a, b, is_c_bias ? c : nullptr, output, gemm_info));
Giorgio Arenaa855af12018-07-16 17:20:38 +0100212
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100213 if(!run_optimised)
Giorgio Arenaa855af12018-07-16 17:20:38 +0100214 {
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100215 ARM_COMPUTE_RETURN_ERROR_ON_MSG(gemm_info.reinterpret_input_as_3d(), "NEGEMM cannot reinterpret the input tensor as 3D");
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000216 ARM_COMPUTE_RETURN_ERROR_ON_MSG(gemm_info.depth_output_gemm3d() != 0, "NEGEMM cannot reinterpret the output tensor as 3D");
Giorgio Arenaa855af12018-07-16 17:20:38 +0100217
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100218 // Check if the first input tensor is a vector.
219 const bool run_vector_matrix_multiplication = a->dimension(1) < 2;
220 // Check if we need to reshape the matrix A and matrix B
221 const bool run_interleave_transpose = !run_vector_matrix_multiplication && !(gemm_info.reshape_b_only_on_first_run());
Giorgio Arenaa855af12018-07-16 17:20:38 +0100222
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100223 // Arguments used by GEMMReshapeInfo
224 // If we pass the matrix A and matrix B reshaped to NEGEMMMatrixMultiplyKernel, we need to pass m, n, k, mult_transpose1xW_width and mult_interleave4x4_height to NEGEMMReshapeInfo
225 // in order to know how the matrices have been reshaped
226 const int m = a->dimension(1);
227 const int n = b->dimension(0);
228 const int k = a->dimension(0);
229 int mult_transpose1xW_width = 1;
230 int mult_interleave4x4_height = 1;
Giorgio Arenaa855af12018-07-16 17:20:38 +0100231
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100232 const GEMMReshapeInfo reshape_info = GEMMReshapeInfo(m, n, k, mult_transpose1xW_width, mult_interleave4x4_height, gemm_info.depth_output_gemm3d());
Giorgio Arenaa855af12018-07-16 17:20:38 +0100233
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100234 const ITensorInfo *matrix_a_info = a;
235 const ITensorInfo *matrix_b_info = b;
Giorgio Arenaa855af12018-07-16 17:20:38 +0100236
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100237 TensorInfo tmp_a_info{};
238 TensorInfo tmp_b_info{};
239 TensorInfo tmp_output_info = *output->clone();
Giorgio Arenaa855af12018-07-16 17:20:38 +0100240
Giorgio Arenaa855af12018-07-16 17:20:38 +0100241 if(run_interleave_transpose)
242 {
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100243 matrix_a_info = &tmp_a_info;
244 matrix_b_info = &tmp_b_info;
245
Giorgio Arenaa855af12018-07-16 17:20:38 +0100246 // Validate interleave kernel
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100247 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())));
248 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMInterleave4x4Kernel::validate(a, &tmp_a_info));
Giorgio Arenaa855af12018-07-16 17:20:38 +0100249
250 // Validate transpose kernel
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100251 auto_init_if_empty(tmp_b_info, b->clone()->set_tensor_shape(compute_transpose1xW_with_element_size_shape(*b, mult_transpose1xW_width)));
252 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMTranspose1xWKernel::validate(b, &tmp_b_info));
Giorgio Arenaa855af12018-07-16 17:20:38 +0100253 }
254
255 // Validate matrix multiply
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100256 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)));
Giorgio Arenaa855af12018-07-16 17:20:38 +0100257 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMMatrixMultiplyKernel::validate(matrix_a_info, matrix_b_info, &tmp_output_info, alpha, run_interleave_transpose, reshape_info));
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100258
259 if(c != nullptr && gemm_info.reshape_b_only_on_first_run())
260 {
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100261 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&tmp_output_info, c, output, ConvertPolicy::SATURATE));
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100262 }
Giorgio Arenaa855af12018-07-16 17:20:38 +0100263 }
264
Georgios Pinitasea9e0dc2018-08-28 16:24:56 +0100265 // Validate matrix addition kernel
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100266 if(beta != 0 && c != nullptr && !is_c_bias)
Georgios Pinitasea9e0dc2018-08-28 16:24:56 +0100267 {
268 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMMatrixAdditionKernel::validate(c, output, beta));
269 }
270
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100271 // Validate activation
272 const ActivationLayerInfo &activation = gemm_info.activation_info();
273 if(activation.enabled())
274 {
275 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(output, nullptr, activation));
276 }
277
Giorgio Arenaa855af12018-07-16 17:20:38 +0100278 return Status{};
279}
280
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100281void NEGEMM::run()
282{
Georgios Pinitas72219332018-06-05 14:56:06 +0100283 prepare();
Georgios Pinitas658039b2017-09-15 16:30:50 +0100284
Georgios Pinitasda953f22019-04-02 17:27:03 +0100285 MemoryGroupResourceScope scope_mg(_memory_group);
286
Anthony Barbier71d9b572018-07-06 17:05:59 +0100287 if(_asm_glue.is_configured())
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100288 {
Pablo Telloeb82fd22018-02-23 13:43:50 +0000289 _asm_glue.run();
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100290 if(_run_alpha_scale)
291 {
292 _alpha_scale_func.run();
293 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100294 }
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100295 else
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100296 {
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100297 if(!_run_vector_matrix_multiplication)
298 {
299 // Run interleave kernel
300 NEScheduler::get().schedule(&_interleave_kernel, Window::DimY);
301
Georgios Pinitas72219332018-06-05 14:56:06 +0100302 if(!_reshape_b_only_on_first_run)
Gian Marco1d25ed52017-12-16 19:33:50 +0000303 {
304 // Run transpose kernel
305 NEScheduler::get().schedule(&_transpose_kernel, Window::DimY);
306 }
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100307 }
308
309 NEScheduler::get().schedule(&_mm_kernel, _run_vector_matrix_multiplication ? Window::DimX : Window::DimY);
310
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100311 // Run bias addition kernel
312 if(_run_bias_addition)
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100313 {
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100314 _add_bias.run();
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100315 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100316 }
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100317
318 // Run matrix addition kernel
319 if(_run_addition)
320 {
321 NEScheduler::get().schedule(&_ma_kernel, Window::DimY);
322 }
323
324 // Run activation function
325 if(_run_activation)
326 {
327 _activation_func.run();
328 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100329}
Georgios Pinitas72219332018-06-05 14:56:06 +0100330
331void NEGEMM::prepare()
332{
333 if(!_is_prepared)
334 {
SiCongLi2e5fd632020-03-02 15:39:15 +0000335 const bool original_b_managed_by_weights_manager = _weights_manager && _weights_manager->are_weights_managed(_original_b);
Anthony Barbier71d9b572018-07-06 17:05:59 +0100336 if(_asm_glue.is_configured())
Georgios Pinitas72219332018-06-05 14:56:06 +0100337 {
SiCongLi2e5fd632020-03-02 15:39:15 +0000338 if(!original_b_managed_by_weights_manager)
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100339 {
340 ARM_COMPUTE_ERROR_ON(!_original_b->is_used());
341 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100342
343 _asm_glue.prepare();
SiCongLi2e5fd632020-03-02 15:39:15 +0000344 if(!original_b_managed_by_weights_manager)
345 {
346 _original_b->mark_as_unused();
347 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100348 }
Anthony Barbier71d9b572018-07-06 17:05:59 +0100349 else if(_reshape_b_only_on_first_run && !_run_vector_matrix_multiplication && !_asm_glue.is_configured())
Georgios Pinitas72219332018-06-05 14:56:06 +0100350 {
SiCongLi2e5fd632020-03-02 15:39:15 +0000351 if(!original_b_managed_by_weights_manager)
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100352 {
353 ARM_COMPUTE_ERROR_ON(!_original_b->is_used());
354 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100355
356 _tmp_b.allocator()->allocate();
357 NEScheduler::get().schedule(&_transpose_kernel, Window::DimY);
SiCongLi2e5fd632020-03-02 15:39:15 +0000358 if(!original_b_managed_by_weights_manager)
359 {
360 _original_b->mark_as_unused();
361 }
Georgios Pinitas72219332018-06-05 14:56:06 +0100362 }
363
364 _is_prepared = true;
365 }
366}
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100367} // namespace arm_compute