/* * Copyright (c) 2021-2023 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 #include #if defined(ARM_COMPUTE_ENABLE_SVE) namespace arm_conv { namespace pooling { void sve_fp32_nhwc_max_2x2_s1_output2x2_depthfirst_impl( const unsigned int n_channels, const float *const *const inptrs, float *const *const outptrs, const bool exclude_padding, const unsigned int pad_left, const unsigned int pad_top, const unsigned int pad_right, const unsigned int pad_bottom ) { struct KernelArgs { const uint64_t n_channels; const float *const *const inptrs; float *const *const outptrs; KernelArgs( unsigned int channels, const float *const *input_ptrs, float *const * output_ptrs, bool, unsigned int, unsigned int, unsigned int, unsigned int ) : n_channels(channels), inptrs(input_ptrs), outptrs(output_ptrs) { } }; const KernelArgs args(n_channels, inptrs, outptrs, exclude_padding, pad_left, pad_top, pad_right, pad_bottom); __asm__ __volatile__( "ldr x15, [%x[args], %[offsetof_n_channels]]\n" "ldr x21, [%x[args], %[offsetof_outptrs]]\n" "mov x14, #0x0\n" "whilelt p0.s, x14, x15\n" "ldr x20, [%x[args], %[offsetof_inptrs]]\n" "ldp x13, x12, [x21, #0x0]\n" "ptrue p2.b\n" "mov x11, #0x0\n" "ldp x10, x9, [x21, #0x10]\n" "ldp x28, x27, [x20, #0x0]\n" "ldp x26, x25, [x20, #0x10]\n" "ldp x24, x23, [x20, #0x20]\n" "ldp x22, x21, [x20, #0x30]\n" "ldr x20, [x20, #0x40]\n" "ld1w { z31.s }, p0/Z, [x27, x14, LSL #2]\n" "ld1w { z30.s }, p0/Z, [x24, x14, LSL #2]\n" "ld1w { z29.s }, p0/Z, [x21, x14, LSL #2]\n" "ld1w { z28.s }, p0/Z, [x25, x14, LSL #2]\n" "ld1w { z27.s }, p0/Z, [x28, x14, LSL #2]\n" "ld1w { z26.s }, p0/Z, [x26, x14, LSL #2]\n" "ld1w { z25.s }, p0/Z, [x23, x14, LSL #2]\n" "ld1w { z24.s }, p0/Z, [x22, x14, LSL #2]\n" "ld1w { z23.s }, p0/Z, [x20, x14, LSL #2]\n" "incw x14\n" "whilelt p1.s, x14, x15\n" "b.none 2f\n" "1:" // Vector: Loop "movprfx z22, z31\n fmax z22.s, p2/M, z22.s, z30.s\n" "movprfx z21, z30\n fmax z21.s, p2/M, z21.s, z29.s\n" "ld1w { z31.s }, p1/Z, [x27, x14, LSL #2]\n" "ld1w { z30.s }, p1/Z, [x24, x14, LSL #2]\n" "movprfx z20, z28\n fmax z20.s, p2/M, z20.s, z27.s\n" "movprfx z19, z26\n fmax z19.s, p2/M, z19.s, z25.s\n" "ld1w { z29.s }, p1/Z, [x21, x14, LSL #2]\n" "ld1w { z27.s }, p1/Z, [x28, x14, LSL #2]\n" "movprfx z17, z28\n fmax z17.s, p2/M, z17.s, z24.s\n" "movprfx z18, z25\n fmax z18.s, p2/M, z18.s, z23.s\n" "ld1w { z28.s }, p1/Z, [x25, x14, LSL #2]\n" "ld1w { z26.s }, p1/Z, [x26, x14, LSL #2]\n" "ld1w { z25.s }, p1/Z, [x23, x14, LSL #2]\n" "ld1w { z24.s }, p1/Z, [x22, x14, LSL #2]\n" "whilelt p0.s, x11, x15\n" "movprfx z16, z22\n fmax z16.s, p2/M, z16.s, z20.s\n" "ld1w { z23.s }, p1/Z, [x20, x14, LSL #2]\n" "incw x14\n" "whilelt p1.s, x14, x15\n" "st1w { z16.s }, p0, [x13, x11, LSL #2]\n" "movprfx z16, z19\n fmax z16.s, p2/M, z16.s, z22.s\n" "fmax z17.s, p2/M, z17.s, z21.s\n" "st1w { z16.s }, p0, [x12, x11, LSL #2]\n" "movprfx z16, z21\n fmax z16.s, p2/M, z16.s, z18.s\n" "st1w { z17.s }, p0, [x10, x11, LSL #2]\n" "st1w { z16.s }, p0, [x9, x11, LSL #2]\n" "incw x11\n" "b.any 1b\n" "2:" // Vector: Tail "movprfx z22, z31\n fmax z22.s, p2/M, z22.s, z30.s\n" "movprfx z21, z30\n fmax z21.s, p2/M, z21.s, z29.s\n" "movprfx z20, z28\n fmax z20.s, p2/M, z20.s, z27.s\n" "movprfx z19, z26\n fmax z19.s, p2/M, z19.s, z25.s\n" "movprfx z17, z28\n fmax z17.s, p2/M, z17.s, z24.s\n" "movprfx z18, z25\n fmax z18.s, p2/M, z18.s, z23.s\n" "whilelt p0.s, x11, x15\n" "movprfx z16, z22\n fmax z16.s, p2/M, z16.s, z20.s\n" "st1w { z16.s }, p0, [x13, x11, LSL #2]\n" "movprfx z16, z19\n fmax z16.s, p2/M, z16.s, z22.s\n" "fmax z17.s, p2/M, z17.s, z21.s\n" "st1w { z16.s }, p0, [x12, x11, LSL #2]\n" "movprfx z16, z21\n fmax z16.s, p2/M, z16.s, z18.s\n" "st1w { z17.s }, p0, [x10, x11, LSL #2]\n" "st1w { z16.s }, p0, [x9, x11, LSL #2]\n" : : [args] "r" (&args), [offsetof_inptrs] "I" (offsetof(KernelArgs, inptrs)), [offsetof_n_channels] "I" (offsetof(KernelArgs, n_channels)), [offsetof_outptrs] "I" (offsetof(KernelArgs, outptrs)) : "cc", "memory", "p0", "p1", "p2", "x9", "x10", "x11", "x12", "x13", "x14", "x15", "x20", "x21", "x22", "x23", "x24", "x25", "x26", "x27", "x28", "z16", "z17", "z18", "z19", "z20", "z21", "z22", "z23", "z24", "z25", "z26", "z27", "z28", "z29", "z30", "z31" ); } } // namespace pooling } // namespace arm_conv #endif // defined(ARM_COMPUTE_ENABLE_SVE)