aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_max_generic_depthfirst/generic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_max_generic_depthfirst/generic.cpp')
-rw-r--r--src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_max_generic_depthfirst/generic.cpp386
1 files changed, 386 insertions, 0 deletions
diff --git a/src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_max_generic_depthfirst/generic.cpp b/src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_max_generic_depthfirst/generic.cpp
new file mode 100644
index 0000000000..54f694c738
--- /dev/null
+++ b/src/core/NEON/kernels/arm_conv/pooling/kernels/sve_s8q_nhwc_max_generic_depthfirst/generic.cpp
@@ -0,0 +1,386 @@
+/*
+ * Copyright (c) 2021 Arm Limited.
+ *
+ * SPDX-License-Identifier: MIT
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
+ * deal in the Software without restriction, including without limitation the
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "pooling.hpp"
+#include <cstdint>
+
+#if defined(__ARM_FEATURE_SVE) && defined(SVE2)
+
+namespace arm_conv {
+namespace pooling {
+
+
+void sve_s8q_nhwc_max_generic_depthfirst_impl(
+ const uint64_t,
+ const uint64_t n_valid_cells,
+ uint64_t n_channels,
+ const int8_t *const *const inptrs,
+ int8_t *outptr,
+ const Requantize32 &qp
+)
+{
+ __asm__ __volatile__(
+ "ptrue p4.b\n"
+ "mov x28, #0x0\n"
+ "cntb x27\n"
+ "cntb x26, ALL, MUL #2\n"
+ "cntb x25, ALL, MUL #3\n"
+ "whilelt p3.b, x28, %x[n_channels]\n"
+ "whilelt p2.b, x27, %x[n_channels]\n"
+ "whilelt p1.b, x26, %x[n_channels]\n"
+ "whilelt p0.b, x25, %x[n_channels]\n"
+ "b.none 7f\n"
+ "1:" // 4-vectors of channels
+ "mov z8.b, #0x80\n"
+ "mov x19, %x[inptrs]\n"
+ "mov z7.b, #0x80\n"
+ "lsr x24, %x[n_valid_cells], #0x2\n"
+ "mov z6.b, #0x80\n"
+ "mov z5.b, #0x80\n"
+ "cbz x24, 4f\n"
+ "ldp x23, x22, [x19, #0x0]\n"
+ "ldp x21, x20, [x19, #0x10]\n"
+ "add x19, x19, #0x20\n"
+ "subs x24, x24, #0x1\n"
+ "ld1b { z3.b }, p3/Z, [x23, x28]\n"
+ "ld1b { z2.b }, p3/Z, [x22, x28]\n"
+ "ld1b { z1.b }, p3/Z, [x21, x28]\n"
+ "ld1b { z0.b }, p3/Z, [x20, x28]\n"
+ "ld1b { z31.b }, p2/Z, [x23, x27]\n"
+ "ld1b { z30.b }, p2/Z, [x22, x27]\n"
+ "ld1b { z22.b }, p2/Z, [x21, x27]\n"
+ "ld1b { z29.b }, p2/Z, [x20, x27]\n"
+ "ld1b { z28.b }, p1/Z, [x23, x26]\n"
+ "ld1b { z27.b }, p1/Z, [x22, x26]\n"
+ "ld1b { z21.b }, p1/Z, [x21, x26]\n"
+ "ld1b { z26.b }, p1/Z, [x20, x26]\n"
+ "ld1b { z16.b }, p0/Z, [x23, x25]\n"
+ "ld1b { z25.b }, p0/Z, [x22, x25]\n"
+ "ld1b { z20.b }, p0/Z, [x21, x25]\n"
+ "ld1b { z24.b }, p0/Z, [x20, x25]\n"
+ "beq 3f\n"
+ "2:" // 4-vectors of channels: 4 inputs loop
+ "movprfx z19, z3\n smax z19.b, p4/M, z19.b, z2.b\n"
+ "ldp x23, x22, [x19, #0x0]\n"
+ "subs x24, x24, #0x1\n"
+ "movprfx z23, z1\n smax z23.b, p4/M, z23.b, z0.b\n"
+ "ldp x21, x20, [x19, #0x10]\n"
+ "movprfx z18, z31\n smax z18.b, p4/M, z18.b, z30.b\n"
+ "add x19, x19, #0x20\n"
+ "smax z22.b, p4/M, z22.b, z29.b\n"
+ "ld1b { z3.b }, p3/Z, [x23, x28]\n"
+ "movprfx z17, z28\n smax z17.b, p4/M, z17.b, z27.b\n"
+ "smax z21.b, p4/M, z21.b, z26.b\n"
+ "ld1b { z2.b }, p3/Z, [x22, x28]\n"
+ "smax z16.b, p4/M, z16.b, z25.b\n"
+ "ld1b { z1.b }, p3/Z, [x21, x28]\n"
+ "smax z20.b, p4/M, z20.b, z24.b\n"
+ "ld1b { z0.b }, p3/Z, [x20, x28]\n"
+ "smax z19.b, p4/M, z19.b, z23.b\n"
+ "ld1b { z31.b }, p2/Z, [x23, x27]\n"
+ "smax z18.b, p4/M, z18.b, z22.b\n"
+ "ld1b { z30.b }, p2/Z, [x22, x27]\n"
+ "smax z17.b, p4/M, z17.b, z21.b\n"
+ "ld1b { z22.b }, p2/Z, [x21, x27]\n"
+ "smax z16.b, p4/M, z16.b, z20.b\n"
+ "ld1b { z29.b }, p2/Z, [x20, x27]\n"
+ "smax z8.b, p4/M, z8.b, z19.b\n"
+ "ld1b { z28.b }, p1/Z, [x23, x26]\n"
+ "smax z7.b, p4/M, z7.b, z18.b\n"
+ "ld1b { z27.b }, p1/Z, [x22, x26]\n"
+ "smax z6.b, p4/M, z6.b, z17.b\n"
+ "ld1b { z21.b }, p1/Z, [x21, x26]\n"
+ "smax z5.b, p4/M, z5.b, z16.b\n"
+ "ld1b { z26.b }, p1/Z, [x20, x26]\n"
+ "ld1b { z16.b }, p0/Z, [x23, x25]\n"
+ "ld1b { z25.b }, p0/Z, [x22, x25]\n"
+ "ld1b { z20.b }, p0/Z, [x21, x25]\n"
+ "ld1b { z24.b }, p0/Z, [x20, x25]\n"
+ "bgt 2b\n"
+ "3:" // 4-vectors of channels: 4 inputs tail
+ "movprfx z19, z3\n smax z19.b, p4/M, z19.b, z2.b\n"
+ "movprfx z23, z1\n smax z23.b, p4/M, z23.b, z0.b\n"
+ "movprfx z18, z31\n smax z18.b, p4/M, z18.b, z30.b\n"
+ "smax z22.b, p4/M, z22.b, z29.b\n"
+ "movprfx z17, z28\n smax z17.b, p4/M, z17.b, z27.b\n"
+ "smax z21.b, p4/M, z21.b, z26.b\n"
+ "smax z16.b, p4/M, z16.b, z25.b\n"
+ "smax z20.b, p4/M, z20.b, z24.b\n"
+ "smax z19.b, p4/M, z19.b, z23.b\n"
+ "smax z18.b, p4/M, z18.b, z22.b\n"
+ "smax z17.b, p4/M, z17.b, z21.b\n"
+ "smax z16.b, p4/M, z16.b, z20.b\n"
+ "smax z8.b, p4/M, z8.b, z19.b\n"
+ "smax z7.b, p4/M, z7.b, z18.b\n"
+ "smax z6.b, p4/M, z6.b, z17.b\n"
+ "smax z5.b, p4/M, z5.b, z16.b\n"
+ "4:" // 4-vectors of channels: After loop
+ "ands x20, %x[n_valid_cells], #0x3\n"
+ "beq 6f\n"
+ "5:" // 4-vectors of channels: Single input loop
+ "ldr x23, [x19], #0x8\n"
+ "subs x20, x20, #0x1\n"
+ "ld1b { z3.b }, p3/Z, [x23, x28]\n"
+ "smax z8.b, p4/M, z8.b, z3.b\n"
+ "ld1b { z31.b }, p2/Z, [x23, x27]\n"
+ "ld1b { z28.b }, p1/Z, [x23, x26]\n"
+ "smax z7.b, p4/M, z7.b, z31.b\n"
+ "ld1b { z16.b }, p0/Z, [x23, x25]\n"
+ "smax z6.b, p4/M, z6.b, z28.b\n"
+ "smax z5.b, p4/M, z5.b, z16.b\n"
+ "bgt 5b\n"
+ "6:" // 4-vectors of channels: Single input loop: End
+ "mov z4.s, #0x7f\n"
+ "add x19, %x[quant_params], %[offsetof_qp_per_layer_mul]\n"
+ "ld1rw { z3.s }, p4/Z, [x19]\n"
+ ".inst 0x4508a111 // sshllb z17.h, z8.b, #0x0\n"
+ "add x19, %x[quant_params], %[offsetof_qp_per_layer_left_shift]\n"
+ ".inst 0x4508a510 // sshllt z16.h, z8.b, #0x0\n"
+ "ld1rw { z2.s }, p4/Z, [x19]\n"
+ "add x19, %x[quant_params], %[offsetof_qp_per_layer_right_shift]\n"
+ ".inst 0x4508a0f2 // sshllb z18.h, z7.b, #0x0\n"
+ "ld1rw { z1.s }, p4/Z, [x19]\n"
+ ".inst 0x4508a4f7 // sshllt z23.h, z7.b, #0x0\n"
+ ".inst 0x4508a0d6 // sshllb z22.h, z6.b, #0x0\n"
+ ".inst 0x4508a4d5 // sshllt z21.h, z6.b, #0x0\n"
+ ".inst 0x4508a0b4 // sshllb z20.h, z5.b, #0x0\n"
+ ".inst 0x4508a4b3 // sshllt z19.h, z5.b, #0x0\n"
+ ".inst 0x4510a220 // sshllb z0.s, z17.h, #0x0\n"
+ ".inst 0x4510a631 // sshllt z17.s, z17.h, #0x0\n"
+ ".inst 0x4510a21f // sshllb z31.s, z16.h, #0x0\n"
+ ".inst 0x4510a610 // sshllt z16.s, z16.h, #0x0\n"
+ ".inst 0x4510a25e // sshllb z30.s, z18.h, #0x0\n"
+ ".inst 0x4510a652 // sshllt z18.s, z18.h, #0x0\n"
+ ".inst 0x4510a2fd // sshllb z29.s, z23.h, #0x0\n"
+ ".inst 0x4510a6fc // sshllt z28.s, z23.h, #0x0\n"
+ ".inst 0x4510a2db // sshllb z27.s, z22.h, #0x0\n"
+ ".inst 0x4510a6da // sshllt z26.s, z22.h, #0x0\n"
+ ".inst 0x4510a2b9 // sshllb z25.s, z21.h, #0x0\n"
+ ".inst 0x4510a6b8 // sshllt z24.s, z21.h, #0x0\n"
+ ".inst 0x4510a297 // sshllb z23.s, z20.h, #0x0\n"
+ ".inst 0x4510a696 // sshllt z22.s, z20.h, #0x0\n"
+ ".inst 0x4510a275 // sshllb z21.s, z19.h, #0x0\n"
+ ".inst 0x4510a674 // sshllt z20.s, z19.h, #0x0\n"
+ ".inst 0x44829040 // srshl z0.s, p4/M, z0.s, z2.s\n"
+ ".inst 0x44829051 // srshl z17.s, p4/M, z17.s, z2.s\n"
+ ".inst 0x4482905f // srshl z31.s, p4/M, z31.s, z2.s\n"
+ ".inst 0x44829050 // srshl z16.s, p4/M, z16.s, z2.s\n"
+ ".inst 0x04a37400 // sqrdmulh z0.s, z0.s, z3.s\n"
+ ".inst 0x04a37631 // sqrdmulh z17.s, z17.s, z3.s\n"
+ ".inst 0x04a377ff // sqrdmulh z31.s, z31.s, z3.s\n"
+ ".inst 0x04a37610 // sqrdmulh z16.s, z16.s, z3.s\n"
+ ".inst 0x44829020 // srshl z0.s, p4/M, z0.s, z1.s\n"
+ ".inst 0x44829031 // srshl z17.s, p4/M, z17.s, z1.s\n"
+ ".inst 0x4482903f // srshl z31.s, p4/M, z31.s, z1.s\n"
+ ".inst 0x44829030 // srshl z16.s, p4/M, z16.s, z1.s\n"
+ ".inst 0x4482905e // srshl z30.s, p4/M, z30.s, z2.s\n"
+ ".inst 0x44829052 // srshl z18.s, p4/M, z18.s, z2.s\n"
+ ".inst 0x4482905d // srshl z29.s, p4/M, z29.s, z2.s\n"
+ ".inst 0x4482905c // srshl z28.s, p4/M, z28.s, z2.s\n"
+ ".inst 0x04a377de // sqrdmulh z30.s, z30.s, z3.s\n"
+ ".inst 0x04a37652 // sqrdmulh z18.s, z18.s, z3.s\n"
+ ".inst 0x04a377bd // sqrdmulh z29.s, z29.s, z3.s\n"
+ ".inst 0x04a3779c // sqrdmulh z28.s, z28.s, z3.s\n"
+ ".inst 0x4482903e // srshl z30.s, p4/M, z30.s, z1.s\n"
+ ".inst 0x44829032 // srshl z18.s, p4/M, z18.s, z1.s\n"
+ ".inst 0x4482903d // srshl z29.s, p4/M, z29.s, z1.s\n"
+ ".inst 0x4482903c // srshl z28.s, p4/M, z28.s, z1.s\n"
+ ".inst 0x4482905b // srshl z27.s, p4/M, z27.s, z2.s\n"
+ ".inst 0x4482905a // srshl z26.s, p4/M, z26.s, z2.s\n"
+ ".inst 0x44829059 // srshl z25.s, p4/M, z25.s, z2.s\n"
+ ".inst 0x44829058 // srshl z24.s, p4/M, z24.s, z2.s\n"
+ ".inst 0x04a3777b // sqrdmulh z27.s, z27.s, z3.s\n"
+ ".inst 0x04a3775a // sqrdmulh z26.s, z26.s, z3.s\n"
+ ".inst 0x04a37739 // sqrdmulh z25.s, z25.s, z3.s\n"
+ ".inst 0x04a37718 // sqrdmulh z24.s, z24.s, z3.s\n"
+ ".inst 0x4482903b // srshl z27.s, p4/M, z27.s, z1.s\n"
+ ".inst 0x4482903a // srshl z26.s, p4/M, z26.s, z1.s\n"
+ ".inst 0x44829039 // srshl z25.s, p4/M, z25.s, z1.s\n"
+ ".inst 0x44829038 // srshl z24.s, p4/M, z24.s, z1.s\n"
+ ".inst 0x44829057 // srshl z23.s, p4/M, z23.s, z2.s\n"
+ ".inst 0x44829056 // srshl z22.s, p4/M, z22.s, z2.s\n"
+ ".inst 0x44829055 // srshl z21.s, p4/M, z21.s, z2.s\n"
+ ".inst 0x44829054 // srshl z20.s, p4/M, z20.s, z2.s\n"
+ ".inst 0x04a376f7 // sqrdmulh z23.s, z23.s, z3.s\n"
+ ".inst 0x04a376d6 // sqrdmulh z22.s, z22.s, z3.s\n"
+ ".inst 0x04a376b5 // sqrdmulh z21.s, z21.s, z3.s\n"
+ ".inst 0x04a37694 // sqrdmulh z20.s, z20.s, z3.s\n"
+ ".inst 0x44829037 // srshl z23.s, p4/M, z23.s, z1.s\n"
+ ".inst 0x44829036 // srshl z22.s, p4/M, z22.s, z1.s\n"
+ ".inst 0x44829035 // srshl z21.s, p4/M, z21.s, z1.s\n"
+ ".inst 0x44829034 // srshl z20.s, p4/M, z20.s, z1.s\n"
+ "not z19.s, p4/M, z4.s\n"
+ "smax z0.s, p4/M, z0.s, z19.s\n"
+ "smax z17.s, p4/M, z17.s, z19.s\n"
+ "smax z31.s, p4/M, z31.s, z19.s\n"
+ "smax z16.s, p4/M, z16.s, z19.s\n"
+ "smin z0.s, p4/M, z0.s, z4.s\n"
+ "smin z17.s, p4/M, z17.s, z4.s\n"
+ "smin z31.s, p4/M, z31.s, z4.s\n"
+ "smin z16.s, p4/M, z16.s, z4.s\n"
+ "smax z30.s, p4/M, z30.s, z19.s\n"
+ "trn1 z17.h, z0.h, z17.h\n"
+ "smax z18.s, p4/M, z18.s, z19.s\n"
+ "trn1 z16.h, z31.h, z16.h\n"
+ "smin z30.s, p4/M, z30.s, z4.s\n"
+ "trn1 z16.b, z17.b, z16.b\n"
+ "st1b { z16.b }, p3, [%x[outptr], x28]\n"
+ "smin z18.s, p4/M, z18.s, z4.s\n"
+ "incb x28, ALL, MUL #4\n"
+ "smax z29.s, p4/M, z29.s, z19.s\n"
+ "smax z28.s, p4/M, z28.s, z19.s\n"
+ "smax z27.s, p4/M, z27.s, z19.s\n"
+ "smax z26.s, p4/M, z26.s, z19.s\n"
+ "trn1 z18.h, z30.h, z18.h\n"
+ "smin z29.s, p4/M, z29.s, z4.s\n"
+ "smin z28.s, p4/M, z28.s, z4.s\n"
+ "smin z27.s, p4/M, z27.s, z4.s\n"
+ "smin z26.s, p4/M, z26.s, z4.s\n"
+ "smax z25.s, p4/M, z25.s, z19.s\n"
+ "trn1 z16.h, z29.h, z28.h\n"
+ "smax z24.s, p4/M, z24.s, z19.s\n"
+ "trn1 z17.h, z27.h, z26.h\n"
+ "trn1 z16.b, z18.b, z16.b\n"
+ "st1b { z16.b }, p2, [%x[outptr], x27]\n"
+ "smin z25.s, p4/M, z25.s, z4.s\n"
+ "incb x27, ALL, MUL #4\n"
+ "smin z24.s, p4/M, z24.s, z4.s\n"
+ "smax z23.s, p4/M, z23.s, z19.s\n"
+ "smax z22.s, p4/M, z22.s, z19.s\n"
+ "smax z21.s, p4/M, z21.s, z19.s\n"
+ "smax z20.s, p4/M, z20.s, z19.s\n"
+ "trn1 z16.h, z25.h, z24.h\n"
+ "smin z23.s, p4/M, z23.s, z4.s\n"
+ "trn1 z16.b, z17.b, z16.b\n"
+ "st1b { z16.b }, p1, [%x[outptr], x26]\n"
+ "smin z22.s, p4/M, z22.s, z4.s\n"
+ "incb x26, ALL, MUL #4\n"
+ "smin z21.s, p4/M, z21.s, z4.s\n"
+ "smin z20.s, p4/M, z20.s, z4.s\n"
+ "trn1 z17.h, z23.h, z22.h\n"
+ "trn1 z16.h, z21.h, z20.h\n"
+ "trn1 z16.b, z17.b, z16.b\n"
+ "st1b { z16.b }, p0, [%x[outptr], x25]\n"
+ "incb x25, ALL, MUL #4\n"
+ "whilelt p0.b, x25, %x[n_channels]\n"
+ "b.any 1b\n"
+ "7:" // Single vector of channels
+ "whilelt p3.b, x28, %x[n_channels]\n"
+ "b.none 14f\n"
+ "8:" // Single vector of channels: Loop
+ "mov z8.b, #0x80\n"
+ "mov x19, %x[inptrs]\n"
+ "lsr x24, %x[n_valid_cells], #0x2\n"
+ "cbz x24, 11f\n"
+ "ldp x23, x22, [x19, #0x0]\n"
+ "subs x24, x24, #0x1\n"
+ "ldp x21, x20, [x19, #0x10]\n"
+ "add x19, x19, #0x20\n"
+ "ld1b { z3.b }, p3/Z, [x23, x28]\n"
+ "ld1b { z2.b }, p3/Z, [x22, x28]\n"
+ "ld1b { z1.b }, p3/Z, [x21, x28]\n"
+ "ld1b { z0.b }, p3/Z, [x20, x28]\n"
+ "beq 10f\n"
+ "9:" // Single vector of channels: Loop: 4 inputs loop
+ "movprfx z19, z3\n smax z19.b, p4/M, z19.b, z2.b\n"
+ "ldp x23, x22, [x19, #0x0]\n"
+ "subs x24, x24, #0x1\n"
+ "movprfx z23, z1\n smax z23.b, p4/M, z23.b, z0.b\n"
+ "ldp x21, x20, [x19, #0x10]\n"
+ "smax z19.b, p4/M, z19.b, z23.b\n"
+ "ld1b { z3.b }, p3/Z, [x23, x28]\n"
+ "smax z8.b, p4/M, z8.b, z19.b\n"
+ "ld1b { z2.b }, p3/Z, [x22, x28]\n"
+ "add x19, x19, #0x20\n"
+ "ld1b { z1.b }, p3/Z, [x21, x28]\n"
+ "ld1b { z0.b }, p3/Z, [x20, x28]\n"
+ "bgt 9b\n"
+ "10:" // Single vector of channels: Loop: 4 inputs tail
+ "movprfx z19, z3\n smax z19.b, p4/M, z19.b, z2.b\n"
+ "movprfx z23, z1\n smax z23.b, p4/M, z23.b, z0.b\n"
+ "smax z19.b, p4/M, z19.b, z23.b\n"
+ "smax z8.b, p4/M, z8.b, z19.b\n"
+ "11:" // Single vector of channels: Loop: After loop
+ "ands x20, %x[n_valid_cells], #0x3\n"
+ "beq 13f\n"
+ "12:" // Single vector of channels: Loop: Single input loop
+ "ldr x23, [x19], #0x8\n"
+ "subs x20, x20, #0x1\n"
+ "ld1b { z3.b }, p3/Z, [x23, x28]\n"
+ "smax z8.b, p4/M, z8.b, z3.b\n"
+ "bgt 12b\n"
+ "13:" // Single vector of channels: Loop: Single input loop: End
+ "mov z4.s, #0x7f\n"
+ "add x19, %x[quant_params], %[offsetof_qp_per_layer_mul]\n"
+ "ld1rw { z3.s }, p4/Z, [x19]\n"
+ ".inst 0x4508a111 // sshllb z17.h, z8.b, #0x0\n"
+ "add x19, %x[quant_params], %[offsetof_qp_per_layer_left_shift]\n"
+ ".inst 0x4508a510 // sshllt z16.h, z8.b, #0x0\n"
+ "ld1rw { z2.s }, p4/Z, [x19]\n"
+ "add x19, %x[quant_params], %[offsetof_qp_per_layer_right_shift]\n"
+ ".inst 0x4510a220 // sshllb z0.s, z17.h, #0x0\n"
+ "ld1rw { z1.s }, p4/Z, [x19]\n"
+ ".inst 0x4510a631 // sshllt z17.s, z17.h, #0x0\n"
+ ".inst 0x4510a21f // sshllb z31.s, z16.h, #0x0\n"
+ ".inst 0x4510a610 // sshllt z16.s, z16.h, #0x0\n"
+ ".inst 0x44829040 // srshl z0.s, p4/M, z0.s, z2.s\n"
+ ".inst 0x44829051 // srshl z17.s, p4/M, z17.s, z2.s\n"
+ ".inst 0x4482905f // srshl z31.s, p4/M, z31.s, z2.s\n"
+ ".inst 0x44829050 // srshl z16.s, p4/M, z16.s, z2.s\n"
+ ".inst 0x04a37400 // sqrdmulh z0.s, z0.s, z3.s\n"
+ ".inst 0x04a37631 // sqrdmulh z17.s, z17.s, z3.s\n"
+ ".inst 0x04a377ff // sqrdmulh z31.s, z31.s, z3.s\n"
+ ".inst 0x04a37610 // sqrdmulh z16.s, z16.s, z3.s\n"
+ ".inst 0x44829020 // srshl z0.s, p4/M, z0.s, z1.s\n"
+ ".inst 0x44829031 // srshl z17.s, p4/M, z17.s, z1.s\n"
+ ".inst 0x4482903f // srshl z31.s, p4/M, z31.s, z1.s\n"
+ ".inst 0x44829030 // srshl z16.s, p4/M, z16.s, z1.s\n"
+ "not z19.s, p4/M, z4.s\n"
+ "smax z0.s, p4/M, z0.s, z19.s\n"
+ "smax z17.s, p4/M, z17.s, z19.s\n"
+ "smax z31.s, p4/M, z31.s, z19.s\n"
+ "smax z16.s, p4/M, z16.s, z19.s\n"
+ "smin z0.s, p4/M, z0.s, z4.s\n"
+ "smin z17.s, p4/M, z17.s, z4.s\n"
+ "smin z31.s, p4/M, z31.s, z4.s\n"
+ "smin z16.s, p4/M, z16.s, z4.s\n"
+ "trn1 z17.h, z0.h, z17.h\n"
+ "trn1 z16.h, z31.h, z16.h\n"
+ "trn1 z16.b, z17.b, z16.b\n"
+ "st1b { z16.b }, p3, [%x[outptr], x28]\n"
+ "incb x28\n"
+ "whilelt p3.b, x28, %x[n_channels]\n"
+ "b.any 8b\n"
+ "14:" // End
+
+ :
+ : [inptrs] "r" (inptrs), [n_channels] "r" (n_channels), [n_valid_cells] "r" (n_valid_cells), [offsetof_qp_per_layer_left_shift] "I" (offsetof(Requantize32, per_layer_left_shift)), [offsetof_qp_per_layer_mul] "I" (offsetof(Requantize32, per_layer_mul)), [offsetof_qp_per_layer_right_shift] "I" (offsetof(Requantize32, per_layer_right_shift)), [outptr] "r" (outptr), [quant_params] "r" (&qp)
+ : "cc", "memory", "p0", "p1", "p2", "p3", "p4", "x19", "x20", "x21", "x22", "x23", "x24", "x25", "x26", "x27", "x28", "z0", "z1", "z2", "z3", "z4", "z5", "z6", "z7", "z8", "z16", "z17", "z18", "z19", "z20", "z21", "z22", "z23", "z24", "z25", "z26", "z27", "z28", "z29", "z30", "z31"
+ );
+}
+
+} // namespace pooling
+} // namespace arm_conv
+
+#endif // defined(__ARM_FEATURE_SVE) && defined(SVE2)