blob: 7723224ec8cd8268f1a02925ea4d976c5cc92350 [file] [log] [blame]
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +01001/*
Joseph Dobson6f8b17d2020-02-11 19:32:11 +00002 * Copyright (c) 2018-2020 ARM Limited.
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +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 */
Pablo Telloeb82fd22018-02-23 13:43:50 +000024#pragma once
25
26#include <memory>
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000027#include <cstring>
Pablo Telloeb82fd22018-02-23 13:43:50 +000028
29#include "arm_gemm_local.hpp"
30#include "gemm_common.hpp"
31
32namespace arm_gemm {
33
David Manselle39334c2018-07-06 17:53:35 +010034enum class GemmMethod
35{
36 DEFAULT,
37 GEMV_BATCHED,
38 GEMV_PRETRANSPOSED,
39 GEMV_NATIVE_TRANSPOSED,
40 GEMM_NATIVE,
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000041 GEMM_HYBRID,
Georgios Pinitascfa2bba2019-06-27 17:00:52 +010042 GEMM_INTERLEAVED,
Joseph Dobson6f8b17d2020-02-11 19:32:11 +000043 GEMM_INTERLEAVED_2D,
Georgios Pinitascfa2bba2019-06-27 17:00:52 +010044 QUANTIZE_WRAPPER,
45 GEMM_HYBRID_QUANTIZED
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000046};
47
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000048struct KernelDescription
49{
Georgios Pinitas14613832019-03-01 19:07:11 +000050 GemmMethod method = GemmMethod::DEFAULT;
51 std::string name = "";
52 bool is_default = false;
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000053
Georgios Pinitas14613832019-03-01 19:07:11 +000054 KernelDescription(GemmMethod m, std::string n, bool d=false) : method(m), name(n), is_default(d) { }
Michalis Spyrou5cb49dc2019-12-03 13:42:25 +000055 KernelDescription() noexcept { }
David Manselle39334c2018-07-06 17:53:35 +010056};
57
58struct GemmConfig
59{
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000060 GemmMethod method = GemmMethod::DEFAULT;
61 std::string filter = "";
David Manselle39334c2018-07-06 17:53:35 +010062 unsigned int inner_block_size = 0;
63 unsigned int outer_block_size = 0;
64
65 GemmConfig(GemmMethod method) : method(method) { }
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000066 GemmConfig() { }
David Manselle39334c2018-07-06 17:53:35 +010067};
68
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010069struct Activation
70{
71 enum class Type {
72 None,
73 ReLU,
74 BoundedReLU
75 };
76
77 Type type;
78 float param1;
79 float param2;
80
81 Activation(Type type=Type::None, float p1=0.0f, float p2=0.0f) : type(type), param1(p1), param2(p2) { }
82};
83
David Manselle39334c2018-07-06 17:53:35 +010084struct GemmArgs
85{
86public:
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000087 const CPUInfo *_ci;
88 unsigned int _Msize;
89 unsigned int _Nsize;
90 unsigned int _Ksize;
91 unsigned int _nbatches;
92 unsigned int _nmulti;
93 bool _trA;
94 bool _trB;
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010095 Activation _act;
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000096 int _maxthreads;
97 bool _pretransposed_hint;
98 const GemmConfig *_cfg;
David Manselle39334c2018-07-06 17:53:35 +010099
100 GemmArgs(const CPUInfo *ci, const unsigned int M, const unsigned int N,
101 const unsigned int K, const unsigned int nbatches,
102 const unsigned int nmulti, const bool trA, const bool trB,
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100103 Activation act, const int maxthreads,
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000104 const bool pretransposed_hint, const GemmConfig *cfg=nullptr ) :
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100105 _ci(ci), _Msize(M), _Nsize(N), _Ksize(K), _nbatches(nbatches), _nmulti(nmulti),
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100106 _trA(trA), _trB(trB), _act(act), _maxthreads(maxthreads),
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100107 _pretransposed_hint(pretransposed_hint), _cfg(cfg)
David Manselle39334c2018-07-06 17:53:35 +0100108 {
109 }
110};
111
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000112struct Requantize32
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100113{
114public:
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000115 const int32_t *bias = nullptr;
116 size_t bias_multi_stride = 0;
117 int32_t a_offset = 0;
118 int32_t b_offset = 0;
119 int32_t c_offset = 0;
120 bool per_channel_requant = false;
121 int32_t per_layer_shift = 0;
122 int32_t per_layer_mul = 0;
123 const int32_t *per_channel_shifts = nullptr;
124 const int32_t *per_channel_muls = nullptr;
125 int32_t minval = 0;
126 int32_t maxval = 0;
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100127
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000128 Requantize32() = default;
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100129
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000130 // Constructor for per-tensor quantization
131 Requantize32(const int32_t *bias, size_t bias_multi_stride,
132 int32_t a_offset, int32_t b_offset, int32_t c_offset,
133 int32_t requant_shift, int32_t requant_mul,
134 int32_t minv, int32_t maxv) :
135 bias(bias), bias_multi_stride(bias_multi_stride),
136 a_offset(a_offset), b_offset(b_offset), c_offset(c_offset),
137 per_channel_requant(false), per_layer_shift(requant_shift), per_layer_mul(requant_mul),
138 minval(minv), maxval(maxv)
139 {
140 }
141
142 // Constructor for per-channel quantization
143 Requantize32(const int32_t *bias, size_t bias_multi_stride,
144 int32_t a_offset, int32_t b_offset, int32_t c_offset,
145 const int32_t *requant_shifts, const int32_t *requant_muls,
146 int32_t minv, int32_t maxv) :
147 bias(bias), bias_multi_stride(bias_multi_stride),
148 a_offset(a_offset), b_offset(b_offset), c_offset(c_offset),
149 per_channel_requant(true), per_channel_shifts(requant_shifts), per_channel_muls(requant_muls),
150 minval(minv), maxval(maxv)
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100151 {
152 }
153};
154
155struct Nothing
156{
157};
158
Pablo Telloeb82fd22018-02-23 13:43:50 +0000159template<typename Top, typename Tret>
160using UniqueGemmCommon = std::unique_ptr<GemmCommon<Top, Tret> >;
161
David Manselle39334c2018-07-06 17:53:35 +0100162/* Low level API calls.
163 * These are implemented as 'GemmArgs' versions, or with the arguments explicitly listed. */
164
David Manselle39334c2018-07-06 17:53:35 +0100165/* get_gemm_method(): Given the templated types and provided parameters,
166 * which is the preferred method to implement this GEMM? */
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100167template<typename Top, typename Tret, class OutputStage = Nothing>
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100168KernelDescription get_gemm_method(const GemmArgs &args, const OutputStage & ={});
David Manselle39334c2018-07-06 17:53:35 +0100169
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100170template<typename Top, typename Tret, class OutputStage = Nothing>
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100171UniqueGemmCommon<Top, Tret> gemm(const GemmArgs &args, const OutputStage & ={});
David Manselle39334c2018-07-06 17:53:35 +0100172
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100173template<typename Top, typename Tret, class OutputStage = Nothing>
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100174std::vector<KernelDescription> get_compatible_kernels(const GemmArgs &args, const OutputStage & ={});
Anthony Barbier5f707732018-07-03 16:22:02 +0100175
Pablo Telloeb82fd22018-02-23 13:43:50 +0000176} // namespace arm_gemm