blob: 795ffc5d1c78b7cf5120d38415e89380d399bc69 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Anthony Barbierf1df3462018-01-31 09:13:37 +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/NEON/functions/NEGEMM.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/ITensor.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Types.h"
31#include "arm_compute/core/Validate.h"
Pablo Telloeb82fd22018-02-23 13:43:50 +000032#include "arm_compute/runtime/NEON/AssemblyHelper.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033#include "arm_compute/runtime/NEON/NEScheduler.h"
34#include "arm_compute/runtime/TensorAllocator.h"
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010035#include "support/ToolchainSupport.h"
36
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037#include <cmath>
38
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010039namespace arm_compute
40{
Georgios Pinitas658039b2017-09-15 16:30:50 +010041NEGEMM::NEGEMM(std::shared_ptr<IMemoryManager> memory_manager)
Georgios Pinitas932b5612018-05-03 13:44:35 +010042 : _memory_group(std::move(memory_manager)), _interleave_kernel(), _transpose_kernel(), _mm_kernel(), _asm_glue(), _ma_kernel(), _tmp_a(), _tmp_b(), _workspace(), _B_pretransposed(),
Georgios Pinitas72219332018-06-05 14:56:06 +010043 _original_b(nullptr), _run_vector_matrix_multiplication(false), _run_addition(false), _reshape_b_only_on_first_run(false), _is_prepared(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044{
45}
46
Gian Marco1d25ed52017-12-16 19:33:50 +000047void 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 +010048{
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010049 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::F32, DataType::F16);
Gian Marco Iodice3a3066b2017-06-23 13:38:14 +010050 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(a, b, d);
Gian Marco Iodicebdb6b0b2017-06-30 12:21:00 +010051 ARM_COMPUTE_ERROR_ON_MSG(a->info()->dimension(0) != b->info()->dimension(1), "The product AB is defined only if the number of columns in A is equal to the number of rows in B");
Gian Marco1d25ed52017-12-16 19:33:50 +000052 ARM_COMPUTE_ERROR_ON_MSG(gemm_info.is_a_reshaped(), "Matrix A already reshaped is not supported");
53 ARM_COMPUTE_ERROR_ON_MSG(gemm_info.is_b_reshaped(), "Matrix B already reshaped is not supported");
Anthony Barbier6ff3b192017-09-04 18:44:23 +010054
55 if(c != nullptr)
56 {
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010057 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(c, 1, DataType::F32, DataType::F16);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010058 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(a, c);
59 ARM_COMPUTE_ERROR_ON_MSG(a->info()->dimension(1) != c->info()->dimension(1), "The C matrix must have the same number of rows as the matrix A");
60 ARM_COMPUTE_ERROR_ON_MSG(b->info()->dimension(0) != c->info()->dimension(0), "The C matrix must have the same number of columns as the matrix B");
61 ARM_COMPUTE_ERROR_ON_MSG(c->info()->dimension(0) != d->info()->dimension(0), "The C matrix must have the same number of rows as the output matrix");
62 ARM_COMPUTE_ERROR_ON_MSG(c->info()->dimension(1) != d->info()->dimension(1), "The C matrix must have the same number of columns as the output matrix");
63 }
64
Gian Marco1d25ed52017-12-16 19:33:50 +000065 // Check if we need to reshape the matrix B only on the first run
Georgios Pinitas72219332018-06-05 14:56:06 +010066 _is_prepared = false;
Gian Marco1d25ed52017-12-16 19:33:50 +000067 _reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run();
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010068 _run_vector_matrix_multiplication = a->info()->dimension(1) < 2;
Georgios Pinitas72219332018-06-05 14:56:06 +010069 _original_b = b;
70 _asm_glue._optimised_kernel = nullptr;
Pablo Tello7fad9b12018-03-14 17:55:27 +000071
Georgios Pinitas932b5612018-05-03 13:44:35 +010072 const bool run_optimised = a->info()->data_type() == DataType::F32 && (c == nullptr || beta == 0.f)
73 && setup_assembly_kernel(a, b, d, alpha, beta, _reshape_b_only_on_first_run, _workspace, _B_pretransposed, _memory_group, _asm_glue);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010074
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010075 // Check if the first input tensor is a vector.
76 // If so, all the kernels for reshaping the tensors can be skipped
77 if(_run_vector_matrix_multiplication)
78 {
Pablo Telloeb82fd22018-02-23 13:43:50 +000079 if(!run_optimised)
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000080 {
81 // Configure the matrix multiply kernel
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000082 _mm_kernel.configure(a, b, d, alpha, false);
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000083 }
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010084
85 // Configure matrix addition kernel
86 if(beta != 0 && c != nullptr)
87 {
88 _ma_kernel.configure(c, d, beta);
89 _run_addition = true;
90 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010091 }
92 else
93 {
Pablo Telloeb82fd22018-02-23 13:43:50 +000094 if(!run_optimised)
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010095 {
96 TensorShape shape_tmp_a = a->info()->tensor_shape();
97 TensorShape shape_tmp_b = b->info()->tensor_shape();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010098
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010099 shape_tmp_a.set(0, a->info()->dimension(0) * 4);
100 shape_tmp_a.set(1, std::ceil(a->info()->dimension(1) / 4.0f));
Georgios Pinitas658039b2017-09-15 16:30:50 +0100101
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100102 const unsigned int transpose_w = 16 / data_size_from_type(b->info()->data_type());
103 shape_tmp_b.set(0, b->info()->dimension(1) * transpose_w);
104 shape_tmp_b.set(1, std::ceil(b->info()->dimension(0) / static_cast<float>(transpose_w)));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100105
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100106 TensorInfo info_a(shape_tmp_a, 1, a->info()->data_type());
107 TensorInfo info_b(shape_tmp_b, 1, b->info()->data_type());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100108
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100109 _tmp_a.allocator()->init(info_a);
110 _tmp_b.allocator()->init(info_b);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100112 // Manage intermediate buffers
113 _memory_group.manage(&_tmp_a);
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100114 if(!_reshape_b_only_on_first_run)
115 {
116 _memory_group.manage(&_tmp_b);
117 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100118
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000119 int m = a->info()->dimension(1);
120 int n = b->info()->dimension(0);
121 int k = a->info()->dimension(0);
122
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100123 // Configure interleave kernel
124 _interleave_kernel.configure(a, &_tmp_a);
125
126 // Configure transpose kernel
127 _transpose_kernel.configure(b, &_tmp_b);
128
129 // Configure matrix multiplication kernel
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000130 _mm_kernel.configure(&_tmp_a, &_tmp_b, d, alpha, true, GEMMReshapeInfo(m, n, k));
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100131
132 // Allocate once the all configure methods have been called
133 _tmp_a.allocator()->allocate();
Georgios Pinitas72219332018-06-05 14:56:06 +0100134 if(!_reshape_b_only_on_first_run)
135 {
136 _tmp_b.allocator()->allocate();
137 }
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100138
139 // Configure matrix addition kernel
140 if(beta != 0 && c != nullptr)
141 {
142 _ma_kernel.configure(c, d, beta);
143 _run_addition = true;
144 }
145 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100146 }
147}
148
149void NEGEMM::run()
150{
Georgios Pinitas72219332018-06-05 14:56:06 +0100151 prepare();
Georgios Pinitas658039b2017-09-15 16:30:50 +0100152
Pablo Telloeb82fd22018-02-23 13:43:50 +0000153 if(_asm_glue._optimised_kernel != nullptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100154 {
Georgios Pinitas72219332018-06-05 14:56:06 +0100155 _memory_group.acquire();
Pablo Telloeb82fd22018-02-23 13:43:50 +0000156 _asm_glue.run();
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100157 _memory_group.release();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100158 }
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100159 else
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100160 {
Georgios Pinitas72219332018-06-05 14:56:06 +0100161 _memory_group.acquire();
162
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100163 if(!_run_vector_matrix_multiplication)
164 {
165 // Run interleave kernel
166 NEScheduler::get().schedule(&_interleave_kernel, Window::DimY);
167
Georgios Pinitas72219332018-06-05 14:56:06 +0100168 if(!_reshape_b_only_on_first_run)
Gian Marco1d25ed52017-12-16 19:33:50 +0000169 {
170 // Run transpose kernel
171 NEScheduler::get().schedule(&_transpose_kernel, Window::DimY);
172 }
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100173 }
174
175 NEScheduler::get().schedule(&_mm_kernel, _run_vector_matrix_multiplication ? Window::DimX : Window::DimY);
176
177 _memory_group.release();
178
179 // Run matrix addition kernel
180 if(_run_addition)
181 {
182 NEScheduler::get().schedule(&_ma_kernel, Window::DimY);
183 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100184 }
185}
Georgios Pinitas72219332018-06-05 14:56:06 +0100186
187void NEGEMM::prepare()
188{
189 if(!_is_prepared)
190 {
191 if(_asm_glue._optimised_kernel)
192 {
193 ARM_COMPUTE_ERROR_ON(!_original_b->is_used());
194
195 _asm_glue.prepare();
196 _original_b->mark_as_unused();
197 }
198 else if(_reshape_b_only_on_first_run && !_run_vector_matrix_multiplication && !_asm_glue._optimised_kernel)
199 {
200 ARM_COMPUTE_ERROR_ON(!_original_b->is_used());
201
202 _tmp_b.allocator()->allocate();
203 NEScheduler::get().schedule(&_transpose_kernel, Window::DimY);
204 _original_b->mark_as_unused();
205 }
206
207 _is_prepared = true;
208 }
209}
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100210} // namespace arm_compute