bugfix: CLDeconvolutionLayer::validate fails if bias==NULL (#439)
[platform/upstream/armcl.git] / arm_compute / core / NEON / kernels / assembly / kernels / a64_gemm_u8_12x8.hpp
1 /*
2  * Copyright (c) 2017 ARM Limited.
3  *
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 #pragma once
25
26 #ifdef __aarch64__
27
28 // Load the actual kernel
29 #include "a64_gemm_u8_12x8/generic.hpp"
30 #include "a64_gemm_u8_12x8/a55r1.hpp"
31
32 class gemm_u8_12x8 {
33 public:
34     typedef uint8_t operand_type;
35     typedef uint32_t result_type;
36
37     typedef void (*kern_type)(const uint8_t *, const uint8_t *, uint32_t *, int, int, int);
38
39     /* Describes the data layout for A input */
40     static const int A_interleave = 8;
41     static const int A_block = 4;
42     static const bool A_transpose = false;
43
44     /* Same for B input */
45     static const int B_interleave = 12;
46     static const int B_block = 4;
47     static const bool B_transpose = true;
48
49     /* Kernel blocking parameters */
50     static const int out_width = 12;
51     static const int out_height = 8;
52     static const int k_unroll = 4;
53
54     kern_type kernel = nullptr;
55
56     gemm_u8_12x8(const CPUInfo *ci) {
57         kernel = a64_gemm_u8_12x8;
58         if (ci->CPU == CPUTarget::A55_DOT) {
59             kernel = a64_gemm_u8_12x8_a55r1;
60         }
61     }
62 };
63
64 #endif // __aarch64__
65