blob: 0cf8044733fe42362fc98235d73ddaf22166cc91 [file] [log] [blame]
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +00001/*
Michael Tylerba209752022-12-15 12:39:29 +00002 * Copyright (c) 2021, 2023 Arm Limited.
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +00003 *
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
Michalis Spyrou20fca522021-06-07 14:23:57 +010025#if defined(ARM_COMPUTE_ENABLE_SVE)
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000026
27#include "arm_gemm.hpp"
28#include "src/core/NEON/kernels/arm_gemm/utils.hpp"
29#include "src/core/NEON/kernels/assembly/depthwise.hpp"
30#include <cstdint>
31
32namespace arm_conv {
33namespace depthwise {
34
35struct interleave_sve_s8q_3x3_dot
36{
37 static size_t get_packed_size(const DepthwiseArgs &);
38 static void pack_parameters(unsigned int n_channels, void *outptr, const int32_t *bias, const int8_t *weights, const arm_gemm::Requantize32 &qp, size_t ld_weight_col, size_t ld_weight_row);
39};
40
41size_t interleave_sve_s8q_3x3_dot::get_packed_size(const DepthwiseArgs &args)
42{
43 // We store 7 vectors for every <vector_of_ints> of channels.
44 const unsigned int n = arm_gemm::roundup(
45 arm_gemm::iceildiv((long unsigned int) args.input_channels,
46 get_vector_length<int32_t>(arm_gemm::VLType::SVE)), 4lu
47 );
48 return n * 7 * get_vector_length<int8_t>(arm_gemm::VLType::SVE);
49}
50
51void interleave_sve_s8q_3x3_dot::pack_parameters(unsigned int n_channels, void *outptr, const int32_t *bias, const int8_t *weights, const arm_gemm::Requantize32 &qp, size_t ld_weight_col, size_t ld_weight_row)
52{
53 __asm__ __volatile__(
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000054 "cmp %x[ld_weight_col], XZR\n"
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000055 "csel %x[ld_weight_col], %x[ld_weight_col], %x[n_channels], NE\n"
Michael Tylerba209752022-12-15 12:39:29 +000056 "mov z16.s, #0x9\n"
57 "mov z28.b, #0x0\n"
58 "mov x20, #0x3\n"
59 "ptrue p2.b\n"
60 "mul x20, %x[ld_weight_col], x20\n"
61 "ld1rw { z27.s }, p2/Z, [%x[qp], %[offsetof_input_offset]]\n"
62 "ld1rw { z26.s }, p2/Z, [%x[qp], %[offsetof_weights_offset]]\n"
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000063 "cmp %x[ld_weight_row], XZR\n"
Michael Tylerba209752022-12-15 12:39:29 +000064 "csel %x[ld_weight_row], %x[ld_weight_row], x20, NE\n"
65 "mov z25.b, #0x1\n"
66 "mul z26.s, p2/M, z26.s, z27.s\n"
67 "add x24, %x[weights], %x[ld_weight_row]\n"
68 "ld1rw { z24.s }, p2/Z, [%x[qp], %[offsetof_per_layer_mul]]\n"
69 "ld1rw { z23.s }, p2/Z, [%x[qp], %[offsetof_per_layer_right_shift]]\n"
70 "add x23, x24, %x[ld_weight_row]\n"
71 "add x22, %x[ld_weight_col], %x[ld_weight_col]\n"
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000072 "whilelt p1.s, XZR, %x[n_channels]\n"
Michael Tylerba209752022-12-15 12:39:29 +000073 "mov x21, #0x0\n"
74 "mul z26.s, p2/M, z26.s, z16.s\n"
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000075 "pfalse p8.b\n"
76 "cbz %x[bias], 1f\n"
77 "ptrue p8.s\n"
78 "1:" // No bias
79
80 "2:" // Loop
Michael Tylerba209752022-12-15 12:39:29 +000081 "cntp x20, p2, p1.s\n"
82 "whilelt p0.b, XZR, x20\n"
83 "ld1b { z18.b }, p0/Z, [%x[weights]]\n"
84 "ld1b { z17.b }, p0/Z, [%x[weights], %x[ld_weight_col]]\n"
85 "ld1b { z16.b }, p0/Z, [%x[weights], x22]\n"
86 "zip1 z20.b, z18.b, z16.b\n"
87 "zip1 z19.b, z17.b, z28.b\n"
88 "ld1b { z18.b }, p0/Z, [x24]\n"
89 "ld1b { z17.b }, p0/Z, [x24, %x[ld_weight_col]]\n"
90 "ld1b { z16.b }, p0/Z, [x24, x22]\n"
91 "zip1 z22.b, z20.b, z19.b\n"
92 "zip1 z21.b, z18.b, z16.b\n"
93 "zip1 z19.b, z17.b, z28.b\n"
94 "mov z20.s, #0x0\n"
95 "ld1b { z18.b }, p0/Z, [x23]\n"
96 "ld1b { z17.b }, p0/Z, [x23, %x[ld_weight_col]]\n"
97 "ld1b { z16.b }, p0/Z, [x23, x22]\n"
98 "sdot z20.s, z25.b, z22.b\n"
99 "zip1 z19.b, z21.b, z19.b\n"
100 "sdot z20.s, z25.b, z19.b\n"
101 "zip1 z18.b, z18.b, z16.b\n"
102 "zip1 z16.b, z17.b, z28.b\n"
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +0000103 "and p0.b, p2/Z, p8.b, p1.b\n"
Michael Tylerba209752022-12-15 12:39:29 +0000104 "ld1w { z17.s }, p0/Z, [%x[bias], x21, LSL #2]\n"
105 "zip1 z16.b, z18.b, z16.b\n"
106 "sdot z20.s, z25.b, z16.b\n"
107 "mls z17.s, p2/M, z20.s, z27.s\n"
108 "add %x[weights], %x[weights], x20\n"
109 "add x24, x24, x20\n"
110 "add x23, x23, x20\n"
111 "add z17.s, z17.s, z26.s\n"
112 "st1w { z17.s }, p2, [%x[outptr]]\n"
113 "st1b { z22.b }, p2, [%x[outptr], #1, MUL VL]\n"
114 "st1b { z19.b }, p2, [%x[outptr], #2, MUL VL]\n"
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +0000115 "st1b { z16.b }, p2, [%x[outptr], #3, MUL VL]\n"
116 "addvl %x[outptr], %x[outptr], #4\n"
117 "cbz %x[rq_mul_perchannel], 3f\n"
Michael Tylerba209752022-12-15 12:39:29 +0000118 "ld1w { z24.s }, p1/Z, [%x[rq_mul_perchannel], x21, LSL #2]\n"
119 "ld1w { z23.s }, p1/Z, [%x[rq_shift_perchannel], x21, LSL #2]\n"
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +0000120 "3:" // Loop: Quantisation parameters: Store
Michael Tylerba209752022-12-15 12:39:29 +0000121 "incw x21\n"
122 "whilelt p1.s, x21, %x[n_channels]\n"
123 "st1w { z24.s }, p2, [%x[outptr]]\n"
124 "st1w { z23.s }, p2, [%x[outptr], #1, MUL VL]\n"
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +0000125 "addvl %x[outptr], %x[outptr], #2\n"
126 "b.any 2b\n"
127 : [ld_weight_col] "+&r" (ld_weight_col), [ld_weight_row] "+&r" (ld_weight_row), [outptr] "+&r" (outptr), [weights] "+&r" (weights)
128 : [bias] "r" (bias), [n_channels] "r" (n_channels), [offsetof_input_offset] "I" (offsetof(arm_gemm::Requantize32, a_offset)), [offsetof_per_layer_mul] "I" (offsetof(arm_gemm::Requantize32, per_layer_mul)), [offsetof_per_layer_right_shift] "I" (offsetof(arm_gemm::Requantize32, per_layer_right_shift)), [offsetof_weights_offset] "I" (offsetof(arm_gemm::Requantize32, b_offset)), [qp] "r" (&qp), [rq_mul_perchannel] "r" (qp.per_channel_muls), [rq_shift_perchannel] "r" (qp.per_channel_right_shifts)
Michael Tylerba209752022-12-15 12:39:29 +0000129 : "cc", "memory", "p0", "p1", "p2", "p8", "x20", "x21", "x22", "x23", "x24", "z16", "z17", "z18", "z19", "z20", "z21", "z22", "z23", "z24", "z25", "z26", "z27", "z28"
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +0000130 );
131}
132
133} // namespace depthwise
134} // namespace arm_conv
135
Michalis Spyrou20fca522021-06-07 14:23:57 +0100136#endif // defined(ARM_COMPUTE_ENABLE_SVE)