blob: c8cba8a17407d3a50f520eec747a5dd0296aa77a [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 Telloeb82fd22018-02-23 13:43:50 +000068 const bool run_optimised = setup_assembly_kernel(a, b, c, d, alpha, beta, _workspace, _memory_group, _asm_glue);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010069
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010070 // Check if the first input tensor is a vector.
71 // If so, all the kernels for reshaping the tensors can be skipped
72 if(_run_vector_matrix_multiplication)
73 {
Pablo Telloeb82fd22018-02-23 13:43:50 +000074 if(!run_optimised)
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000075 {
76 // Configure the matrix multiply kernel
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +000077 _mm_kernel.configure(a, b, d, alpha, false);
Michele Di Giorgio5b6904b2018-01-29 12:24:14 +000078 }
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010079
80 // Configure matrix addition kernel
81 if(beta != 0 && c != nullptr)
82 {
83 _ma_kernel.configure(c, d, beta);
84 _run_addition = true;
85 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010086 }
87 else
88 {
Pablo Telloeb82fd22018-02-23 13:43:50 +000089 if(!run_optimised)
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010090 {
91 TensorShape shape_tmp_a = a->info()->tensor_shape();
92 TensorShape shape_tmp_b = b->info()->tensor_shape();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010093
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010094 shape_tmp_a.set(0, a->info()->dimension(0) * 4);
95 shape_tmp_a.set(1, std::ceil(a->info()->dimension(1) / 4.0f));
Georgios Pinitas658039b2017-09-15 16:30:50 +010096
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010097 const unsigned int transpose_w = 16 / data_size_from_type(b->info()->data_type());
98 shape_tmp_b.set(0, b->info()->dimension(1) * transpose_w);
99 shape_tmp_b.set(1, std::ceil(b->info()->dimension(0) / static_cast<float>(transpose_w)));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100100
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100101 TensorInfo info_a(shape_tmp_a, 1, a->info()->data_type(), a->info()->fixed_point_position());
102 TensorInfo info_b(shape_tmp_b, 1, b->info()->data_type(), a->info()->fixed_point_position());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100103
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100104 _tmp_a.allocator()->init(info_a);
105 _tmp_b.allocator()->init(info_b);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100106
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100107 // Manage intermediate buffers
108 _memory_group.manage(&_tmp_a);
109 _memory_group.manage(&_tmp_b);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100110
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000111 int m = a->info()->dimension(1);
112 int n = b->info()->dimension(0);
113 int k = a->info()->dimension(0);
114
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100115 // Configure interleave kernel
116 _interleave_kernel.configure(a, &_tmp_a);
117
118 // Configure transpose kernel
119 _transpose_kernel.configure(b, &_tmp_b);
120
121 // Configure matrix multiplication kernel
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000122 _mm_kernel.configure(&_tmp_a, &_tmp_b, d, alpha, true, GEMMReshapeInfo(m, n, k));
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100123
124 // Allocate once the all configure methods have been called
125 _tmp_a.allocator()->allocate();
126 _tmp_b.allocator()->allocate();
127
128 // Configure matrix addition kernel
129 if(beta != 0 && c != nullptr)
130 {
131 _ma_kernel.configure(c, d, beta);
132 _run_addition = true;
133 }
134 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100135 }
136}
137
138void NEGEMM::run()
139{
Georgios Pinitas658039b2017-09-15 16:30:50 +0100140 _memory_group.acquire();
141
Pablo Telloeb82fd22018-02-23 13:43:50 +0000142 if(_asm_glue._optimised_kernel != nullptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100143 {
Pablo Telloeb82fd22018-02-23 13:43:50 +0000144 _asm_glue.run();
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100145 _memory_group.release();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100146 }
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100147 else
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100148 {
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100149 if(!_run_vector_matrix_multiplication)
150 {
151 // Run interleave kernel
152 NEScheduler::get().schedule(&_interleave_kernel, Window::DimY);
153
Gian Marco1d25ed52017-12-16 19:33:50 +0000154 if(_is_first_run)
155 {
156 // Run transpose kernel
157 NEScheduler::get().schedule(&_transpose_kernel, Window::DimY);
158
159 _is_first_run = false;
160 }
161 else if(!_reshape_b_only_on_first_run)
162 {
163 // Run transpose kernel
164 NEScheduler::get().schedule(&_transpose_kernel, Window::DimY);
165 }
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100166 }
167
168 NEScheduler::get().schedule(&_mm_kernel, _run_vector_matrix_multiplication ? Window::DimX : Window::DimY);
169
170 _memory_group.release();
171
172 // Run matrix addition kernel
173 if(_run_addition)
174 {
175 NEScheduler::get().schedule(&_ma_kernel, Window::DimY);
176 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100177 }
178}
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100179} // namespace arm_compute