blob: 2df7132500fa24bb515d0b00fd705016aa171888 [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
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000026#include <cstring>
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010027#include <memory>
Pablo Telloeb82fd22018-02-23 13:43:50 +000028
29#include "arm_gemm_local.hpp"
30#include "gemm_common.hpp"
31
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010032namespace 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 Pinitas5aa1a0b2020-07-02 20:02:20 +010050 GemmMethod method = GemmMethod::DEFAULT;
51 std::string name = "";
52 bool is_default = false;
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000053
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010054 KernelDescription(GemmMethod m, std::string n, bool d = false)
55 : method(m), name(n), is_default(d)
56 {
57 }
58 KernelDescription() noexcept
59 {
60 }
David Manselle39334c2018-07-06 17:53:35 +010061};
62
63struct GemmConfig
64{
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000065 GemmMethod method = GemmMethod::DEFAULT;
66 std::string filter = "";
David Manselle39334c2018-07-06 17:53:35 +010067 unsigned int inner_block_size = 0;
68 unsigned int outer_block_size = 0;
69
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010070 GemmConfig(GemmMethod method)
71 : method(method)
72 {
73 }
74 GemmConfig()
75 {
76 }
David Manselle39334c2018-07-06 17:53:35 +010077};
78
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010079struct Activation
80{
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010081 enum class Type
82 {
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010083 None,
84 ReLU,
85 BoundedReLU
86 };
87
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010088 Type type;
89 float param1;
90 float param2;
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010091
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +010092 Activation(Type type = Type::None, float p1 = 0.0f, float p2 = 0.0f)
93 : type(type), param1(p1), param2(p2)
94 {
95 }
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010096};
97
David Manselle39334c2018-07-06 17:53:35 +010098struct GemmArgs
99{
100public:
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000101 const CPUInfo *_ci;
102 unsigned int _Msize;
103 unsigned int _Nsize;
104 unsigned int _Ksize;
105 unsigned int _nbatches;
106 unsigned int _nmulti;
107 bool _trA;
108 bool _trB;
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100109 Activation _act;
Georgios Pinitas7cd26d42019-01-09 18:35:17 +0000110 int _maxthreads;
111 bool _pretransposed_hint;
112 const GemmConfig *_cfg;
David Manselle39334c2018-07-06 17:53:35 +0100113
114 GemmArgs(const CPUInfo *ci, const unsigned int M, const unsigned int N,
115 const unsigned int K, const unsigned int nbatches,
116 const unsigned int nmulti, const bool trA, const bool trB,
Georgios Pinitas48b3ef82019-10-14 19:03:09 +0100117 Activation act, const int maxthreads,
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +0100118 const bool pretransposed_hint, const GemmConfig *cfg = nullptr)
119 : _ci(ci), _Msize(M), _Nsize(N), _Ksize(K), _nbatches(nbatches), _nmulti(nmulti), _trA(trA), _trB(trB), _act(act), _maxthreads(maxthreads), _pretransposed_hint(pretransposed_hint), _cfg(cfg)
David Manselle39334c2018-07-06 17:53:35 +0100120 {
121 }
122};
123
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000124struct Requantize32
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100125{
126public:
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +0100127 const int32_t *bias = nullptr;
128 size_t bias_multi_stride = 0;
129 int32_t a_offset = 0;
130 int32_t b_offset = 0;
131 int32_t c_offset = 0;
132 bool per_channel_requant = false;
133 int32_t per_layer_shift = 0;
134 int32_t per_layer_mul = 0;
135 const int32_t *per_channel_shifts = nullptr;
136 const int32_t *per_channel_muls = nullptr;
137 int32_t minval = 0;
138 int32_t maxval = 0;
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100139
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000140 Requantize32() = default;
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100141
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000142 // Constructor for per-tensor 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 int32_t requant_shift, int32_t requant_mul,
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +0100146 int32_t minv, int32_t maxv)
147 : bias(bias), bias_multi_stride(bias_multi_stride), a_offset(a_offset), b_offset(b_offset), c_offset(c_offset), per_channel_requant(false), per_layer_shift(requant_shift), per_layer_mul(requant_mul),
148 minval(minv), maxval(maxv)
Michalis Spyrou71ac9032019-11-14 14:31:44 +0000149 {
150 }
151
152 // Constructor for per-channel quantization
153 Requantize32(const int32_t *bias, size_t bias_multi_stride,
154 int32_t a_offset, int32_t b_offset, int32_t c_offset,
155 const int32_t *requant_shifts, const int32_t *requant_muls,
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +0100156 int32_t minv, int32_t maxv)
157 : bias(bias), bias_multi_stride(bias_multi_stride), a_offset(a_offset), b_offset(b_offset), c_offset(c_offset), per_channel_requant(true), per_channel_shifts(requant_shifts),
158 per_channel_muls(requant_muls), minval(minv), maxval(maxv)
Georgios Pinitascfa2bba2019-06-27 17:00:52 +0100159 {
160 }
161};
162
163struct Nothing
164{
165};
166
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +0100167template <typename Top, typename Tret>
168using UniqueGemmCommon = std::unique_ptr<GemmCommon<Top, Tret>>;
Pablo Telloeb82fd22018-02-23 13:43:50 +0000169
David Manselle39334c2018-07-06 17:53:35 +0100170/* Low level API calls.
171 * These are implemented as 'GemmArgs' versions, or with the arguments explicitly listed. */
172
David Manselle39334c2018-07-06 17:53:35 +0100173/* get_gemm_method(): Given the templated types and provided parameters,
174 * which is the preferred method to implement this GEMM? */
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +0100175template <typename Top, typename Tret, class OutputStage = Nothing>
176KernelDescription get_gemm_method(const GemmArgs &args, const OutputStage & = {});
David Manselle39334c2018-07-06 17:53:35 +0100177
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +0100178template <typename Top, typename Tret, class OutputStage = Nothing>
179UniqueGemmCommon<Top, Tret> gemm(const GemmArgs &args, const OutputStage & = {});
David Manselle39334c2018-07-06 17:53:35 +0100180
Georgios Pinitas5aa1a0b2020-07-02 20:02:20 +0100181template <typename Top, typename Tret, class OutputStage = Nothing>
182std::vector<KernelDescription> get_compatible_kernels(const GemmArgs &args, const OutputStage & = {});
Anthony Barbier5f707732018-07-03 16:22:02 +0100183
Pablo Telloeb82fd22018-02-23 13:43:50 +0000184} // namespace arm_gemm