blob: 18e6e919c3b3dbcf0f1e0c6bdea339355b89a180 [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)
Pablo Telloeb82fd22018-02-23 13:43:50 +000042 : _memory_group(std::move(memory_manager)), _interleave_kernel(), _transpose_kernel(), _mm_kernel(), _asm_glue(), _ma_kernel(), _tmp_a(), _tmp_b(), _workspace(),
Gian Marco1d25ed52017-12-16 19:33:50 +000043 _run_vector_matrix_multiplication(false), _run_addition(false), _is_first_run(true), _reshape_b_only_on_first_run(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{
Gian Marco Iodicebdb6b0b2017-06-30 12:21:00 +010049 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::F32, DataType::F16, DataType::QS8, DataType::QS16);
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 {
Gian Marco Iodicebdb6b0b2017-06-30 12:21:00 +010057 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(c, 1, DataType::F32, DataType::F16, DataType::QS8, DataType::QS16);
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
66 _reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run();
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010067 _run_vector_matrix_multiplication = a->info()->dimension(1) < 2;
Pablo Tello7fad9b12018-03-14 17:55:27 +000068
69 const bool run_optimised = a->info()->data_type() == DataType::F32 && (c == nullptr || beta == 0.f) && setup_assembly_kernel(a, b, d, alpha, beta, _workspace, _memory_group, _asm_glue);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010070
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010071 // Check if the first input tensor is a vector.
72 // If so, all the kernels for reshaping the tensors can be skipped
73 if(_run_vector_matrix_multiplication)
74 {
Pablo Telloeb82fd22018-02-23 13:43:50 +000075 if(!run_optimised)
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000076 {
77 // Configure the matrix multiply kernel
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000078 _mm_kernel.configure(a, b, d, alpha, false);
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000079 }
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010080
81 // Configure matrix addition kernel
82 if(beta != 0 && c != nullptr)
83 {
84 _ma_kernel.configure(c, d, beta);
85 _run_addition = true;
86 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010087 }
88 else
89 {
Pablo Telloeb82fd22018-02-23 13:43:50 +000090 if(!run_optimised)
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010091 {
92 TensorShape shape_tmp_a = a->info()->tensor_shape();
93 TensorShape shape_tmp_b = b->info()->tensor_shape();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010094
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010095 shape_tmp_a.set(0, a->info()->dimension(0) * 4);
96 shape_tmp_a.set(1, std::ceil(a->info()->dimension(1) / 4.0f));
Georgios Pinitas658039b2017-09-15 16:30:50 +010097
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010098 const unsigned int transpose_w = 16 / data_size_from_type(b->info()->data_type());
99 shape_tmp_b.set(0, b->info()->dimension(1) * transpose_w);
100 shape_tmp_b.set(1, std::ceil(b->info()->dimension(0) / static_cast<float>(transpose_w)));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100102 TensorInfo info_a(shape_tmp_a, 1, a->info()->data_type(), a->info()->fixed_point_position());
103 TensorInfo info_b(shape_tmp_b, 1, b->info()->data_type(), a->info()->fixed_point_position());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100105 _tmp_a.allocator()->init(info_a);
106 _tmp_b.allocator()->init(info_b);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100107
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100108 // Manage intermediate buffers
109 _memory_group.manage(&_tmp_a);
110 _memory_group.manage(&_tmp_b);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000112 int m = a->info()->dimension(1);
113 int n = b->info()->dimension(0);
114 int k = a->info()->dimension(0);
115
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100116 // Configure interleave kernel
117 _interleave_kernel.configure(a, &_tmp_a);
118
119 // Configure transpose kernel
120 _transpose_kernel.configure(b, &_tmp_b);
121
122 // Configure matrix multiplication kernel
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000123 _mm_kernel.configure(&_tmp_a, &_tmp_b, d, alpha, true, GEMMReshapeInfo(m, n, k));
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100124
125 // Allocate once the all configure methods have been called
126 _tmp_a.allocator()->allocate();
127 _tmp_b.allocator()->allocate();
128
129 // Configure matrix addition kernel
130 if(beta != 0 && c != nullptr)
131 {
132 _ma_kernel.configure(c, d, beta);
133 _run_addition = true;
134 }
135 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100136 }
137}
138
139void NEGEMM::run()
140{
Georgios Pinitas658039b2017-09-15 16:30:50 +0100141 _memory_group.acquire();
142
Pablo Telloeb82fd22018-02-23 13:43:50 +0000143 if(_asm_glue._optimised_kernel != nullptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100144 {
Pablo Telloeb82fd22018-02-23 13:43:50 +0000145 _asm_glue.run();
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100146 _memory_group.release();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100147 }
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100148 else
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100149 {
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100150 if(!_run_vector_matrix_multiplication)
151 {
152 // Run interleave kernel
153 NEScheduler::get().schedule(&_interleave_kernel, Window::DimY);
154
Gian Marco1d25ed52017-12-16 19:33:50 +0000155 if(_is_first_run)
156 {
157 // Run transpose kernel
158 NEScheduler::get().schedule(&_transpose_kernel, Window::DimY);
159
160 _is_first_run = false;
161 }
162 else if(!_reshape_b_only_on_first_run)
163 {
164 // Run transpose kernel
165 NEScheduler::get().schedule(&_transpose_kernel, Window::DimY);
166 }
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100167 }
168
169 NEScheduler::get().schedule(&_mm_kernel, _run_vector_matrix_multiplication ? Window::DimX : Window::DimY);
170
171 _memory_group.release();
172
173 // Run matrix addition kernel
174 if(_run_addition)
175 {
176 NEScheduler::get().schedule(&_ma_kernel, Window::DimY);
177 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100178 }
179}
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100180} // namespace arm_compute