blob: 47c33587a0523b73c4701a1ca47960d4b82d3244 [file] [log] [blame]
Pablo Telloeb82fd22018-02-23 13:43:50 +00001/* Copyright (c) 2017-2018 ARM Limited.
Pablo Tello181e6512017-11-15 13:28:27 +00002 *
3 * SPDX-License-Identifier: MIT
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to
7 * deal in the Software without restriction, including without limitation the
8 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9 * sell copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in all
13 * copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23#include "arm_compute/runtime/NEON/functions/NEGEMMLowpAssemblyMatrixMultiplyCore.h"
24
25#include "arm_compute/core/Error.h"
26#include "arm_compute/core/Helpers.h"
27#include "arm_compute/core/ITensor.h"
Pablo Tello181e6512017-11-15 13:28:27 +000028#include "arm_compute/core/NEON/kernels/NEGEMMInterleave4x4Kernel.h"
29#include "arm_compute/core/NEON/kernels/NEGEMMLowpMatrixMultiplyKernel.h"
30#include "arm_compute/core/NEON/kernels/NEGEMMTranspose1xWKernel.h"
Pablo Tello181e6512017-11-15 13:28:27 +000031#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Types.h"
33#include "arm_compute/core/Validate.h"
34#include "arm_compute/runtime/NEON/NEScheduler.h"
35#include "arm_compute/runtime/TensorAllocator.h"
36#include "support/ToolchainSupport.h"
37
Pablo Tello181e6512017-11-15 13:28:27 +000038using namespace arm_compute;
39
40NEGEMMLowpAssemblyMatrixMultiplyCore::NEGEMMLowpAssemblyMatrixMultiplyCore(std::shared_ptr<IMemoryManager> memory_manager)
Anthony Barbiereaefd002018-07-20 17:49:35 +010041 : _memory_group(memory_manager), _asm_glue(memory_manager), _mm_kernel(nullptr), _mtx_a_reshape_kernel(nullptr), _mtx_b_reshape_kernel(nullptr), _tmp_a(), _tmp_b()
Pablo Tello181e6512017-11-15 13:28:27 +000042{
43}
44
45void NEGEMMLowpAssemblyMatrixMultiplyCore::configure(const ITensor *a, const ITensor *b, ITensor *output)
46{
Michalis Spyrouf3dfa272017-11-21 17:52:12 +000047 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::U8, DataType::S8);
48 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::U32, DataType::S32);
Pablo Tello181e6512017-11-15 13:28:27 +000049 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(a, b);
50 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");
51 ARM_COMPUTE_ERROR_ON_MSG((a)->info()->dimension(1) != (output)->info()->dimension(1), "The output matrix must have the same number of rows as the matrix A");
52 ARM_COMPUTE_ERROR_ON_MSG((b)->info()->dimension(0) != (output)->info()->dimension(0), "The output matrix must have the same number of columns as the matrix B");
53
Pablo Telloeb82fd22018-02-23 13:43:50 +000054 bool run_optimised = false;
Pablo Telloeb82fd22018-02-23 13:43:50 +000055 switch(a->info()->data_type())
56 {
57 case DataType::S8:
Pablo Tello66c656a2018-03-15 10:34:58 +000058 case DataType::QASYMM8:
Pablo Telloeb82fd22018-02-23 13:43:50 +000059 case DataType::U8:
60 {
Anthony Barbiereaefd002018-07-20 17:49:35 +010061 _asm_glue.configure(a, b, output, 1.f, 0.f, true);
62 run_optimised = _asm_glue.is_configured();
Pablo Telloeb82fd22018-02-23 13:43:50 +000063 break;
64 }
65 default:
66 {
67 ARM_COMPUTE_ERROR("Datatype not supported");
68 break;
69 }
70 }
Pablo Telloeb82fd22018-02-23 13:43:50 +000071 if(!run_optimised)
Pablo Tello181e6512017-11-15 13:28:27 +000072 {
73 // The interleaved output matrix will have the following shape: [ a_height * 4, ceil(a_width / 4.0f) ]
74 TensorShape shape_tmp_a = a->info()->tensor_shape();
75 shape_tmp_a.set(0, a->info()->dimension(0) * 4);
76 shape_tmp_a.set(1, std::ceil(a->info()->dimension(1) / 4.f));
77
78 // The transpose1xW output matrix will have the following shape: [ b_height * 16, ceil(b_width / 16.0f) ]
79 TensorShape shape_tmp_b = b->info()->tensor_shape();
80 shape_tmp_b.set(0, b->info()->dimension(1) * 16);
81 shape_tmp_b.set(1, std::ceil(b->info()->dimension(0) / 16.f));
82
83 TensorInfo info_a(shape_tmp_a, 1, a->info()->data_type());
84 TensorInfo info_b(shape_tmp_b, 1, b->info()->data_type());
85 _tmp_a.allocator()->init(info_a);
86 _tmp_b.allocator()->init(info_b);
87 _memory_group.manage(&_tmp_a);
88 _memory_group.manage(&_tmp_b);
89
90 // Configure interleave kernel
91 {
92 auto k = arm_compute::support::cpp14::make_unique<NEGEMMInterleave4x4Kernel>();
93 k->configure(a, &_tmp_a);
94 _mtx_a_reshape_kernel = std::move(k);
95 }
96
97 // Configure transpose kernel
98 {
99 auto k = arm_compute::support::cpp14::make_unique<NEGEMMTranspose1xWKernel>();
100 k->configure(b, &_tmp_b);
101 _mtx_b_reshape_kernel = std::move(k);
102 }
103
104 // Configure matrix multiply kernel
105 {
106 auto k = arm_compute::support::cpp14::make_unique<NEGEMMLowpMatrixMultiplyKernel>();
107 k->configure(&_tmp_a, &_tmp_b, output);
108 _mm_kernel = std::move(k);
109 }
110
111 // Allocate tensors
112 _tmp_a.allocator()->allocate();
113 _tmp_b.allocator()->allocate();
114 }
115}
116
117void NEGEMMLowpAssemblyMatrixMultiplyCore::run()
118{
119 _memory_group.acquire();
120 if(_mtx_a_reshape_kernel)
121 {
122 NEScheduler::get().schedule(_mtx_a_reshape_kernel.get(), Window::DimY);
123 }
124
125 if(_mtx_b_reshape_kernel)
126 {
127 NEScheduler::get().schedule(_mtx_b_reshape_kernel.get(), Window::DimY);
128 }
129
Anthony Barbiereaefd002018-07-20 17:49:35 +0100130 if(_asm_glue.is_configured())
Pablo Telloeb82fd22018-02-23 13:43:50 +0000131 {
Anthony Barbiereaefd002018-07-20 17:49:35 +0100132 _asm_glue.run();
Pablo Telloeb82fd22018-02-23 13:43:50 +0000133 }
134 else
135 {
136 NEScheduler::get().schedule(_mm_kernel.get(), Window::DimY);
137 }
Pablo Tello181e6512017-11-15 13:28:27 +0000138
139 _memory_group.release();
140}