blob: e89523981dfdfe4c0f224a00be1d1b97c8e07032 [file] [log] [blame]
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +01001/*
Georgios Pinitas7cd26d42019-01-09 18:35:17 +00002 * Copyright (c) 2018-2019 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,
43 QUANTIZE_WRAPPER,
44 GEMM_HYBRID_QUANTIZED
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000045};
46
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000047struct KernelDescription
48{
Georgios Pinitas14613832019-03-01 19:07:11 +000049 GemmMethod method = GemmMethod::DEFAULT;
50 std::string name = "";
51 bool is_default = false;
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000052
Georgios Pinitas14613832019-03-01 19:07:11 +000053 KernelDescription(GemmMethod m, std::string n, bool d=false) : method(m), name(n), is_default(d) { }
Michalis Spyrou5cb49dc2019-12-03 13:42:25 +000054 KernelDescription() noexcept { }
David Manselle39334c2018-07-06 17:53:35 +010055};
56
57struct GemmConfig
58{
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000059 GemmMethod method = GemmMethod::DEFAULT;
60 std::string filter = "";
David Manselle39334c2018-07-06 17:53:35 +010061 unsigned int inner_block_size = 0;
62 unsigned int outer_block_size = 0;
63
64 GemmConfig(GemmMethod method) : method(method) { }
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000065 GemmConfig() { }
David Manselle39334c2018-07-06 17:53:35 +010066};
67
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010068struct Activation
69{
70 enum class Type {
71 None,
72 ReLU,
73 BoundedReLU
74 };
75
76 Type type;
77 float param1;
78 float param2;
79
80 Activation(Type type=Type::None, float p1=0.0f, float p2=0.0f) : type(type), param1(p1), param2(p2) { }
81};
82
David Manselle39334c2018-07-06 17:53:35 +010083struct GemmArgs
84{
85public:
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000086 const CPUInfo *_ci;
87 unsigned int _Msize;
88 unsigned int _Nsize;
89 unsigned int _Ksize;
90 unsigned int _nbatches;
91 unsigned int _nmulti;
92 bool _trA;
93 bool _trB;
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010094 Activation _act;
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000095 int _maxthreads;
96 bool _pretransposed_hint;
97 const GemmConfig *_cfg;
David Manselle39334c2018-07-06 17:53:35 +010098
99 GemmArgs(const CPUInfo *ci, const unsigned int M, const unsigned int N,
100 const unsigned int K, const unsigned int nbatches,
101 const unsigned int nmulti, const bool trA, const bool trB,
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100102 Activation act, const int maxthreads,
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000103 const bool pretransposed_hint, const GemmConfig *cfg=nullptr ) :
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100104 _ci(ci), _Msize(M), _Nsize(N), _Ksize(K), _nbatches(nbatches), _nmulti(nmulti),
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100105 _trA(trA), _trB(trB), _act(act), _maxthreads(maxthreads),
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100106 _pretransposed_hint(pretransposed_hint), _cfg(cfg)
David Manselle39334c2018-07-06 17:53:35 +0100107 {
108 }
109};
110
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000111struct Requantize32
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100112{
113public:
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000114 const int32_t *bias = nullptr;
115 size_t bias_multi_stride = 0;
116 int32_t a_offset = 0;
117 int32_t b_offset = 0;
118 int32_t c_offset = 0;
119 bool per_channel_requant = false;
120 int32_t per_layer_shift = 0;
121 int32_t per_layer_mul = 0;
122 const int32_t *per_channel_shifts = nullptr;
123 const int32_t *per_channel_muls = nullptr;
124 int32_t minval = 0;
125 int32_t maxval = 0;
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100126
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000127 Requantize32() = default;
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100128
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000129 // Constructor for per-tensor quantization
130 Requantize32(const int32_t *bias, size_t bias_multi_stride,
131 int32_t a_offset, int32_t b_offset, int32_t c_offset,
132 int32_t requant_shift, int32_t requant_mul,
133 int32_t minv, int32_t maxv) :
134 bias(bias), bias_multi_stride(bias_multi_stride),
135 a_offset(a_offset), b_offset(b_offset), c_offset(c_offset),
136 per_channel_requant(false), per_layer_shift(requant_shift), per_layer_mul(requant_mul),
137 minval(minv), maxval(maxv)
138 {
139 }
140
141 // Constructor for per-channel quantization
142 Requantize32(const int32_t *bias, size_t bias_multi_stride,
143 int32_t a_offset, int32_t b_offset, int32_t c_offset,
144 const int32_t *requant_shifts, const int32_t *requant_muls,
145 int32_t minv, int32_t maxv) :
146 bias(bias), bias_multi_stride(bias_multi_stride),
147 a_offset(a_offset), b_offset(b_offset), c_offset(c_offset),
148 per_channel_requant(true), per_channel_shifts(requant_shifts), per_channel_muls(requant_muls),
149 minval(minv), maxval(maxv)
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100150 {
151 }
152};
153
154struct Nothing
155{
156};
157
Pablo Telloeb82fd22018-02-23 13:43:50 +0000158template<typename Top, typename Tret>
159using UniqueGemmCommon = std::unique_ptr<GemmCommon<Top, Tret> >;
160
David Manselle39334c2018-07-06 17:53:35 +0100161/* Low level API calls.
162 * These are implemented as 'GemmArgs' versions, or with the arguments explicitly listed. */
163
David Manselle39334c2018-07-06 17:53:35 +0100164/* get_gemm_method(): Given the templated types and provided parameters,
165 * which is the preferred method to implement this GEMM? */
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100166template<typename Top, typename Tret, class OutputStage = Nothing>
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100167KernelDescription get_gemm_method(const GemmArgs &args, const OutputStage & ={});
David Manselle39334c2018-07-06 17:53:35 +0100168
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100169template<typename Top, typename Tret, class OutputStage = Nothing>
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100170UniqueGemmCommon<Top, Tret> gemm(const GemmArgs &args, const OutputStage & ={});
David Manselle39334c2018-07-06 17:53:35 +0100171
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100172template<typename Top, typename Tret, class OutputStage = Nothing>
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100173std::vector<KernelDescription> get_compatible_kernels(const GemmArgs &args, const OutputStage & ={});
Anthony Barbier5f707732018-07-03 16:22:02 +0100174
Pablo Telloeb82fd22018-02-23 13:43:50 +0000175} // namespace arm_gemm