blob: 35445595f8d26e9edb7474de3dbf7cdedeb23cc6 [file] [log] [blame]
/*
* 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 <cstddef>
#include <cstdint>
#if defined(ARM_COMPUTE_ENABLE_SVE)
namespace arm_conv {
namespace depthwise {
void sve_fp32_nhwc_3x3_s1_output4x4_mla_depthfirst_direct_impl(
const unsigned int n_tile_rows,
const unsigned int n_tile_cols,
const float *inptr,
int64_t ld_input_row,
int64_t ld_input_col,
float *outptr,
int64_t ld_output_row,
int64_t ld_output_col,
const void *params,
unsigned int n_channels,
const float activation_min,
const float activation_max
)
{
struct Args
{
const uint64_t n_tile_rows, n_tile_cols;
const float *inptr;
const uint64_t ld_input_row;
const uint64_t ld_input_col;
float *outptr;
const uint64_t ld_output_row;
const uint64_t ld_output_col;
const void *params;
const float min, max;
uint64_t tile_i = 0, tile_j = 0;
Args(
const unsigned int n_tile_rows,
const unsigned int n_tile_cols,
const float *inptr,
int64_t ld_input_row,
int64_t ld_input_col,
float *outptr,
int64_t ld_output_row,
int64_t ld_output_col,
const void *params,
const float activation_min,
const float activation_max
) : n_tile_rows(n_tile_rows), n_tile_cols(n_tile_cols), inptr(inptr),
ld_input_row(ld_input_row), ld_input_col(ld_input_col), outptr(outptr),
ld_output_row(ld_output_row), ld_output_col(ld_output_col),
params(params), min(activation_min), max(activation_max)
{
}
};
Args params_struct(
n_tile_rows, n_tile_cols,
inptr, ld_input_row, ld_input_col,
outptr, ld_output_row, ld_output_col,
params, activation_min, activation_max
);
__asm__ __volatile__(
"ptrue p3.b\n"
"mov x16, #0x0\n"
"mov x4, #0x0\n"
"1:" // Tile loop
"str x16, [%x[params_struct], %[offsetof_args_tile_i]]\n"
"mov x25, #0x4\n"
"mov x24, #0x4\n"
"str x4, [%x[params_struct], %[offsetof_args_tile_j]]\n"
"ldr x23, [%x[params_struct], %[offsetof_args_ld_input_row]]\n"
"ldr x22, [%x[params_struct], %[offsetof_args_ld_output_row]]\n"
"mul x21, x16, x23\n" // offset = tile_i * ld_input_row
"ldr x5, [%x[params_struct], %[offsetof_args_ld_input_col]]\n"
"ldr x6, [%x[params_struct], %[offsetof_args_ld_output_col]]\n"
"mul x20, x16, x22\n" // offset = tile_i * ld_output_row
"add x7, x5, x5\n"
"madd x21, x4, x5, x21\n" // offset += tile_j * ld_input_col
"ldr x8, [%x[params_struct], %[offsetof_args_inptr]]\n"
"ldr x17, [%x[params_struct], %[offsetof_args_params]]\n"
"cntw x16\n"
"madd x20, x4, x6, x20\n" // offset += tile_j * ld_output_col
"ldr x15, [%x[params_struct], %[offsetof_args_outptr]]\n"
"add x14, x7, x5\n"
"whilelt p2.s, XZR, %x[n_channels]\n"
"mul x21, x21, x25\n" // offset *= kernel_stride * output_size
"add x8, x8, x21, LSL #2\n" // inptr[0] += offset * sizeof(float)
"add x13, x8, x23, LSL #2\n"
"ld1w { z19.s }, p3/Z, [x17]\n"
"mul x20, x20, x24\n" // offset *= output_tile_size
"add x12, x13, x23, LSL #2\n"
"add x15, x15, x20, LSL #2\n" // outptrs[0] += offset * sizeof(float)
"ld1w { z0.s }, p3/Z, [x17, #1, MUL VL]\n"
"ld1w { z1.s }, p3/Z, [x17, #2, MUL VL]\n"
"ld1w { z2.s }, p3/Z, [x17, #3, MUL VL]\n"
"add x11, x12, x23, LSL #2\n"
"add x10, x14, x5\n"
"ld1w { z3.s }, p3/Z, [x17, #4, MUL VL]\n"
"ld1w { z4.s }, p3/Z, [x17, #5, MUL VL]\n"
"add x9, x15, x22, LSL #2\n"
"add x28, x11, x23, LSL #2\n"
"ld1w { z5.s }, p3/Z, [x17, #6, MUL VL]\n"
"ld1w { z6.s }, p3/Z, [x17, #7, MUL VL]\n"
"addvl x17, x17, #16\n"
"add x27, x10, x5\n"
"add x26, x9, x22, LSL #2\n"
"add x25, x6, x6\n"
"ld1rw { z15.s }, p3/Z, [%x[params_struct], %[offsetof_args_min]]\n"
"ld1rw { z16.s }, p3/Z, [%x[params_struct], %[offsetof_args_max]]\n"
"cmp x16, %x[n_channels]\n"
"add x24, x28, x23, LSL #2\n"
"ld1w { z7.s }, p3/Z, [x17, #-8, MUL VL]\n"
"ld1w { z8.s }, p3/Z, [x17, #-7, MUL VL]\n"
"add x23, x26, x22, LSL #2\n"
"add x22, x25, x6\n"
"ld1w { z9.s }, p2/Z, [x12, x7, LSL #2]\n"
"ld1w { z10.s }, p2/Z, [x8]\n"
"mov x21, #0x0\n"
"sub x20, XZR, x16\n"
"ld1w { z11.s }, p2/Z, [x8, x27, LSL #2]\n"
"ld1w { z12.s }, p2/Z, [x12, x14, LSL #2]\n"
"addvl x17, x17, #-6\n"
"bge 3f\n"
"2:" // Tile loop: Channel loop
"movprfx z14, z19\n fmla z14.s, p3/M, z4.s, z9.s\n"
"movprfx z31, z19\n fmla z31.s, p3/M, z8.s, z9.s\n"
"whilelt p1.s, x16, %x[n_channels]\n"
"incw x21\n"
"movprfx z21, z19\n fmla z21.s, p3/M, z3.s, z9.s\n"
"movprfx z22, z19\n fmla z22.s, p3/M, z1.s, z9.s\n"
"incw x16\n"
"mov p0.b, p2.b\n"
"movprfx z20, z19\n fmla z20.s, p3/M, z0.s, z9.s\n"
"fmla z14.s, p3/M, z5.s, z12.s\n"
"incw x20\n"
"movprfx z13, z19\n fmla z13.s, p3/M, z7.s, z9.s\n"
"movprfx z17, z19\n fmla z17.s, p3/M, z6.s, z9.s\n"
"movprfx z27, z19\n fmla z27.s, p3/M, z5.s, z9.s\n"
"movprfx z18, z19\n fmla z18.s, p3/M, z2.s, z9.s\n"
"ld1w { z9.s }, p2/Z, [x11, x7, LSL #2]\n"
"fmla z31.s, p3/M, z0.s, z10.s\n"
"movprfx z30, z19\n fmla z30.s, p3/M, z2.s, z11.s\n"
"ld1w { z29.s }, p2/Z, [x24]\n"
"ld1w { z11.s }, p2/Z, [x24, x27, LSL #2]\n"
"fmla z21.s, p3/M, z4.s, z12.s\n"
"fmla z22.s, p3/M, z2.s, z12.s\n"
"fmla z20.s, p3/M, z1.s, z12.s\n"
"movprfx z23, z19\n fmla z23.s, p3/M, z6.s, z29.s\n"
"ld1w { z10.s }, p2/Z, [x11, x14, LSL #2]\n"
"fmla z14.s, p3/M, z7.s, z9.s\n"
"fmla z13.s, p3/M, z8.s, z12.s\n"
"fmla z17.s, p3/M, z7.s, z12.s\n"
"fmla z30.s, p3/M, z6.s, z12.s\n"
"movprfx z26, z19\n fmla z26.s, p3/M, z3.s, z12.s\n"
"movprfx z28, z19\n fmla z28.s, p3/M, z0.s, z12.s\n"
"ld1w { z12.s }, p2/Z, [x8, x5, LSL #2]\n"
"movprfx z24, z19\n fmla z24.s, p3/M, z8.s, z11.s\n"
"fmla z21.s, p3/M, z6.s, z9.s\n"
"ld1w { z11.s }, p2/Z, [x8, x10, LSL #2]\n"
"fmla z22.s, p3/M, z4.s, z9.s\n"
"fmla z20.s, p3/M, z3.s, z9.s\n"
"movprfx z25, z19\n fmla z25.s, p3/M, z1.s, z9.s\n"
"movprfx z29, z19\n fmla z29.s, p3/M, z0.s, z9.s\n"
"ld1w { z19.s }, p3/Z, [x17]\n"
"fmla z27.s, p3/M, z8.s, z9.s\n"
"fmla z18.s, p3/M, z5.s, z9.s\n"
"fmla z23.s, p3/M, z2.s, z9.s\n"
"fmla z14.s, p3/M, z8.s, z10.s\n"
"ld1w { z9.s }, p2/Z, [x13]\n"
"fmla z31.s, p3/M, z1.s, z12.s\n"
"fmla z13.s, p3/M, z0.s, z12.s\n"
"ld1w { z12.s }, p2/Z, [x13, x27, LSL #2]\n"
"fmla z17.s, p3/M, z2.s, z11.s\n"
"fmla z30.s, p3/M, z1.s, z11.s\n"
"ld1w { z11.s }, p2/Z, [x28]\n"
"fmla z21.s, p3/M, z7.s, z10.s\n"
"fmla z26.s, p3/M, z6.s, z10.s\n"
"fmla z22.s, p3/M, z5.s, z10.s\n"
"fmla z20.s, p3/M, z4.s, z10.s\n"
"fmla z28.s, p3/M, z3.s, z10.s\n"
"fmla z25.s, p3/M, z2.s, z10.s\n"
"fmla z29.s, p3/M, z1.s, z10.s\n"
"fmla z24.s, p3/M, z0.s, z10.s\n"
"ld1w { z10.s }, p2/Z, [x13, x7, LSL #2]\n"
"fmla z27.s, p3/M, z0.s, z9.s\n"
"fmla z18.s, p3/M, z6.s, z11.s\n"
"fmla z23.s, p3/M, z3.s, z11.s\n"
"fmla z14.s, p3/M, z1.s, z10.s\n"
"ld1w { z11.s }, p2/Z, [x28, x27, LSL #2]\n"
"fmla z31.s, p3/M, z3.s, z9.s\n"
"fmla z30.s, p3/M, z5.s, z12.s\n"
"fmla z26.s, p3/M, z2.s, z12.s\n"
"fmla z13.s, p3/M, z4.s, z10.s\n"
"ld1w { z9.s }, p2/Z, [x13, x14, LSL #2]\n"
"fmla z17.s, p3/M, z3.s, z10.s\n"
"fmla z21.s, p3/M, z0.s, z10.s\n"
"fmla z28.s, p3/M, z8.s, z11.s\n"
"fmla z24.s, p3/M, z5.s, z11.s\n"
"ld1w { z12.s }, p2/Z, [x24, x5, LSL #2]\n"
"fmla z27.s, p3/M, z2.s, z10.s\n"
"fmla z14.s, p3/M, z2.s, z9.s\n"
"fmla z31.s, p3/M, z5.s, z10.s\n"
"fmla z13.s, p3/M, z5.s, z9.s\n"
"ld1w { z11.s }, p2/Z, [x12, x5, LSL #2]\n"
"fmla z17.s, p3/M, z4.s, z9.s\n"
"fmla z30.s, p3/M, z3.s, z9.s\n"
"fmla z21.s, p3/M, z1.s, z9.s\n"
"fmla z26.s, p3/M, z0.s, z9.s\n"
"ld1w { z10.s }, p2/Z, [x12, x10, LSL #2]\n"
"fmla z23.s, p3/M, z7.s, z12.s\n"
"fmla z25.s, p3/M, z6.s, z12.s\n"
"ld1w { z12.s }, p2/Z, [x24, x10, LSL #2]\n"
"fmla z27.s, p3/M, z4.s, z11.s\n"
"fmla z14.s, p3/M, z3.s, z11.s\n"
"fmla z18.s, p3/M, z1.s, z11.s\n"
"fmla z22.s, p3/M, z0.s, z11.s\n"
"fmla z31.s, p3/M, z7.s, z11.s\n"
"fmla z13.s, p3/M, z6.s, z11.s\n"
"ld1w { z9.s }, p2/Z, [x8, x7, LSL #2]\n"
"fmla z29.s, p3/M, z8.s, z12.s\n"
"fmla z24.s, p3/M, z7.s, z12.s\n"
"ld1w { z12.s }, p2/Z, [x11, x5, LSL #2]\n"
"fmla z17.s, p3/M, z8.s, z10.s\n"
"fmla z30.s, p3/M, z7.s, z10.s\n"
"fmla z21.s, p3/M, z5.s, z10.s\n"
"fmla z26.s, p3/M, z4.s, z10.s\n"
"fmla z20.s, p3/M, z2.s, z10.s\n"
"fmla z28.s, p3/M, z1.s, z10.s\n"
"ld1w { z11.s }, p2/Z, [x8, x14, LSL #2]\n"
"addvl x8, x8, #1\n"
"fmla z27.s, p3/M, z7.s, z12.s\n"
"fmla z14.s, p3/M, z6.s, z12.s\n"
"fmla z18.s, p3/M, z4.s, z12.s\n"
"fmla z22.s, p3/M, z3.s, z12.s\n"
"fmla z23.s, p3/M, z1.s, z12.s\n"
"fmla z25.s, p3/M, z0.s, z12.s\n"
"ld1w { z12.s }, p2/Z, [x11, x10, LSL #2]\n"
"fmla z31.s, p3/M, z2.s, z9.s\n"
"fmla z13.s, p3/M, z1.s, z9.s\n"
"fmla z17.s, p3/M, z0.s, z9.s\n"
"ld1w { z9.s }, p2/Z, [x12]\n"
"fmla z29.s, p3/M, z2.s, z12.s\n"
"fmla z30.s, p3/M, z0.s, z11.s\n"
"fmla z27.s, p3/M, z3.s, z9.s\n"
"fmla z18.s, p3/M, z0.s, z9.s\n"
"fmla z21.s, p3/M, z8.s, z12.s\n"
"fmla z26.s, p3/M, z7.s, z12.s\n"
"fmla z20.s, p3/M, z5.s, z12.s\n"
"fmla z28.s, p3/M, z4.s, z12.s\n"
"fmla z24.s, p3/M, z1.s, z12.s\n"
"ld1w { z10.s }, p2/Z, [x28, x7, LSL #2]\n"
"fmla z13.s, p3/M, z2.s, z11.s\n"
"fmla z17.s, p3/M, z1.s, z11.s\n"
"ld1w { z11.s }, p2/Z, [x12, x27, LSL #2]\n"
"addvl x12, x12, #1\n"
"fmla z31.s, p3/M, z6.s, z9.s\n"
"ld1w { z12.s }, p2/Z, [x11]\n"
"fmla z25.s, p3/M, z4.s, z10.s\n"
"ld1w { z9.s }, p1/Z, [x12, x7, LSL #2]\n"
"fmla z29.s, p3/M, z3.s, z10.s\n"
"fmla z30.s, p3/M, z8.s, z11.s\n"
"fmla z26.s, p3/M, z5.s, z11.s\n"
"fmla z28.s, p3/M, z2.s, z11.s\n"
"ld1w { z11.s }, p2/Z, [x11, x27, LSL #2]\n"
"addvl x11, x11, #1\n"
"fmla z27.s, p3/M, z6.s, z12.s\n"
"fmla z18.s, p3/M, z3.s, z12.s\n"
"fmla z23.s, p3/M, z0.s, z12.s\n"
"ld1w { z12.s }, p2/Z, [x24, x7, LSL #2]\n"
"fmla z24.s, p3/M, z2.s, z11.s\n"
"fmla z25.s, p3/M, z7.s, z12.s\n"
"fmla z29.s, p3/M, z6.s, z12.s\n"
"fmla z18.s, p3/M, z8.s, z10.s\n"
"fmla z22.s, p3/M, z7.s, z10.s\n"
"fmla z20.s, p3/M, z6.s, z10.s\n"
"fmla z23.s, p3/M, z5.s, z10.s\n"
"ld1w { z10.s }, p2/Z, [x28, x14, LSL #2]\n"
"fmla z28.s, p3/M, z5.s, z11.s\n"
"fmla z25.s, p3/M, z5.s, z10.s\n"
"fmla z29.s, p3/M, z4.s, z10.s\n"
"fmla z24.s, p3/M, z3.s, z10.s\n"
"fmla z26.s, p3/M, z8.s, z11.s\n"
"ld1w { z11.s }, p2/Z, [x24, x14, LSL #2]\n"
"fmla z23.s, p3/M, z8.s, z12.s\n"
"ld1w { z12.s }, p2/Z, [x13, x5, LSL #2]\n"
"fmla z22.s, p3/M, z8.s, z10.s\n"
"fmla z20.s, p3/M, z7.s, z10.s\n"
"addvl x24, x24, #1\n"
"fmla z28.s, p3/M, z6.s, z10.s\n"
"fmla z25.s, p3/M, z8.s, z11.s\n"
"ld1w { z10.s }, p2/Z, [x13, x10, LSL #2]\n"
"addvl x13, x13, #1\n"
"fmla z29.s, p3/M, z7.s, z11.s\n"
"fmla z24.s, p3/M, z6.s, z11.s\n"
"ld1w { z11.s }, p2/Z, [x28, x5, LSL #2]\n"
"fmla z31.s, p3/M, z4.s, z12.s\n"
"fmla z13.s, p3/M, z3.s, z12.s\n"
"fmax z31.s, p3/M, z31.s, z15.s\n"
"fmax z13.s, p3/M, z13.s, z15.s\n"
"fmla z27.s, p3/M, z1.s, z12.s\n"
"fmla z14.s, p3/M, z0.s, z12.s\n"
"ld1w { z0.s }, p2/Z, [x28, x10, LSL #2]\n"
"fmax z27.s, p3/M, z27.s, z15.s\n"
"fmla z17.s, p3/M, z5.s, z10.s\n"
"fmla z30.s, p3/M, z4.s, z10.s\n"
"fmax z17.s, p3/M, z17.s, z15.s\n"
"fmax z30.s, p3/M, z30.s, z15.s\n"
"fmla z21.s, p3/M, z2.s, z10.s\n"
"fmla z26.s, p3/M, z1.s, z10.s\n"
"fmax z14.s, p3/M, z14.s, z15.s\n"
"fmax z21.s, p3/M, z21.s, z15.s\n"
"fmla z18.s, p3/M, z7.s, z11.s\n"
"fmla z22.s, p3/M, z6.s, z11.s\n"
"fmax z26.s, p3/M, z26.s, z15.s\n"
"fmax z18.s, p3/M, z18.s, z15.s\n"
"fmla z23.s, p3/M, z4.s, z11.s\n"
"fmla z25.s, p3/M, z3.s, z11.s\n"
"fmax z22.s, p3/M, z22.s, z15.s\n"
"fmax z23.s, p3/M, z23.s, z15.s\n"
"fmla z20.s, p3/M, z8.s, z0.s\n"
"fmla z28.s, p3/M, z7.s, z0.s\n"
"fmax z20.s, p3/M, z20.s, z15.s\n"
"fmax z28.s, p3/M, z28.s, z15.s\n"
"fmla z29.s, p3/M, z5.s, z0.s\n"
"fmla z24.s, p3/M, z4.s, z0.s\n"
"fmax z25.s, p3/M, z25.s, z15.s\n"
"fmax z29.s, p3/M, z29.s, z15.s\n"
"fmax z24.s, p3/M, z24.s, z15.s\n"
"ld1w { z0.s }, p3/Z, [x17, #1, MUL VL]\n"
"ld1w { z1.s }, p3/Z, [x17, #2, MUL VL]\n"
"whilelt p2.s, x21, %x[n_channels]\n"
"ld1w { z2.s }, p3/Z, [x17, #3, MUL VL]\n"
"ld1w { z3.s }, p3/Z, [x17, #4, MUL VL]\n"
"cmp x16, %x[n_channels]\n"
"fmin z31.s, p3/M, z31.s, z16.s\n"
"ld1w { z4.s }, p3/Z, [x17, #5, MUL VL]\n"
"ld1w { z5.s }, p3/Z, [x17, #6, MUL VL]\n"
"fmin z13.s, p3/M, z13.s, z16.s\n"
"fmin z17.s, p3/M, z17.s, z16.s\n"
"ld1w { z6.s }, p3/Z, [x17, #7, MUL VL]\n"
"addvl x17, x17, #16\n"
"fmin z30.s, p3/M, z30.s, z16.s\n"
"ld1w { z10.s }, p1/Z, [x8]\n"
"fmin z27.s, p3/M, z27.s, z16.s\n"
"fmin z14.s, p3/M, z14.s, z16.s\n"
"ld1w { z11.s }, p1/Z, [x8, x27, LSL #2]\n"
"ld1w { z12.s }, p1/Z, [x12, x14, LSL #2]\n"
"fmin z21.s, p3/M, z21.s, z16.s\n"
"fmin z26.s, p3/M, z26.s, z16.s\n"
"st1w { z31.s }, p0, [x15]\n"
"ld1w { z7.s }, p3/Z, [x17, #-8, MUL VL]\n"
"fmin z18.s, p3/M, z18.s, z16.s\n"
"fmin z22.s, p3/M, z22.s, z16.s\n"
"st1w { z13.s }, p0, [x15, x6, LSL #2]\n"
"ld1w { z8.s }, p3/Z, [x17, #-7, MUL VL]\n"
"fmin z20.s, p3/M, z20.s, z16.s\n"
"fmin z28.s, p3/M, z28.s, z16.s\n"
"st1w { z17.s }, p0, [x15, x25, LSL #2]\n"
"fmin z23.s, p3/M, z23.s, z16.s\n"
"fmin z25.s, p3/M, z25.s, z16.s\n"
"st1w { z30.s }, p0, [x15, x22, LSL #2]\n"
"fmin z29.s, p3/M, z29.s, z16.s\n"
"fmin z24.s, p3/M, z24.s, z16.s\n"
"st1w { z27.s }, p0, [x9]\n"
"addvl x28, x28, #1\n"
"st1w { z14.s }, p0, [x9, x6, LSL #2]\n"
"addvl x15, x15, #1\n"
"st1w { z21.s }, p0, [x9, x25, LSL #2]\n"
"addvl x17, x17, #-6\n"
"st1w { z26.s }, p0, [x9, x22, LSL #2]\n"
"addvl x9, x9, #1\n"
"st1w { z18.s }, p0, [x26]\n"
"st1w { z22.s }, p0, [x26, x6, LSL #2]\n"
"st1w { z20.s }, p0, [x26, x25, LSL #2]\n"
"st1w { z28.s }, p0, [x26, x22, LSL #2]\n"
"addvl x26, x26, #1\n"
"st1w { z23.s }, p0, [x23]\n"
"st1w { z25.s }, p0, [x23, x6, LSL #2]\n"
"st1w { z29.s }, p0, [x23, x25, LSL #2]\n"
"st1w { z24.s }, p0, [x23, x22, LSL #2]\n"
"addvl x23, x23, #1\n"
"blt 2b\n"
"3:" // Tile loop: Channel tail
"movprfx z14, z19\n fmla z14.s, p3/M, z4.s, z9.s\n"
"movprfx z31, z19\n fmla z31.s, p3/M, z8.s, z9.s\n"
"ldr x4, [%x[params_struct], %[offsetof_args_tile_j]]\n"
"ldr x16, [%x[params_struct], %[offsetof_args_tile_i]]\n"
"movprfx z30, z19\n fmla z30.s, p3/M, z3.s, z9.s\n"
"movprfx z13, z19\n fmla z13.s, p3/M, z1.s, z9.s\n"
"ldr x20, [%x[params_struct], %[offsetof_args_n_tile_cols]]\n"
"add x4, x4, #0x1\n"
"movprfx z20, z19\n fmla z20.s, p3/M, z0.s, z9.s\n"
"fmla z14.s, p3/M, z5.s, z12.s\n"
"cmp x4, x20\n"
"add x21, x16, #0x1\n"
"movprfx z18, z19\n fmla z18.s, p3/M, z7.s, z9.s\n"
"movprfx z28, z19\n fmla z28.s, p3/M, z6.s, z9.s\n"
"ldr x20, [%x[params_struct], %[offsetof_args_n_tile_rows]]\n"
"csel x16, x16, x21, LT\n"
"movprfx z17, z19\n fmla z17.s, p3/M, z5.s, z9.s\n"
"movprfx z26, z19\n fmla z26.s, p3/M, z2.s, z9.s\n"
"ld1w { z9.s }, p2/Z, [x11, x7, LSL #2]\n"
"mov p0.b, p2.b\n"
"fmla z31.s, p3/M, z0.s, z10.s\n"
"movprfx z27, z19\n fmla z27.s, p3/M, z2.s, z11.s\n"
"ld1w { z29.s }, p2/Z, [x24]\n"
"ld1w { z21.s }, p2/Z, [x24, x27, LSL #2]\n"
"fmla z30.s, p3/M, z4.s, z12.s\n"
"fmla z13.s, p3/M, z2.s, z12.s\n"
"csel x4, x4, XZR, LT\n"
"cmp x16, x20\n"
"fmla z20.s, p3/M, z1.s, z12.s\n"
"movprfx z10, z19\n fmla z10.s, p3/M, z6.s, z29.s\n"
"ld1w { z29.s }, p2/Z, [x11, x14, LSL #2]\n"
"fmla z14.s, p3/M, z7.s, z9.s\n"
"fmla z18.s, p3/M, z8.s, z12.s\n"
"fmla z28.s, p3/M, z7.s, z12.s\n"
"fmla z27.s, p3/M, z6.s, z12.s\n"
"movprfx z11, z19\n fmla z11.s, p3/M, z3.s, z12.s\n"
"movprfx z25, z19\n fmla z25.s, p3/M, z0.s, z12.s\n"
"ld1w { z22.s }, p2/Z, [x8, x5, LSL #2]\n"
"movprfx z24, z19\n fmla z24.s, p3/M, z8.s, z21.s\n"
"fmla z30.s, p3/M, z6.s, z9.s\n"
"ld1w { z21.s }, p2/Z, [x8, x10, LSL #2]\n"
"fmla z13.s, p3/M, z4.s, z9.s\n"
"fmla z20.s, p3/M, z3.s, z9.s\n"
"movprfx z12, z19\n fmla z12.s, p3/M, z1.s, z9.s\n"
"movprfx z23, z19\n fmla z23.s, p3/M, z0.s, z9.s\n"
"fmla z17.s, p3/M, z8.s, z9.s\n"
"fmla z26.s, p3/M, z5.s, z9.s\n"
"fmla z10.s, p3/M, z2.s, z9.s\n"
"fmla z14.s, p3/M, z8.s, z29.s\n"
"ld1w { z9.s }, p2/Z, [x13]\n"
"fmla z31.s, p3/M, z1.s, z22.s\n"
"fmla z18.s, p3/M, z0.s, z22.s\n"
"ld1w { z22.s }, p2/Z, [x13, x27, LSL #2]\n"
"fmla z28.s, p3/M, z2.s, z21.s\n"
"fmla z27.s, p3/M, z1.s, z21.s\n"
"ld1w { z19.s }, p2/Z, [x28]\n"
"fmla z30.s, p3/M, z7.s, z29.s\n"
"fmla z11.s, p3/M, z6.s, z29.s\n"
"fmla z13.s, p3/M, z5.s, z29.s\n"
"fmla z20.s, p3/M, z4.s, z29.s\n"
"fmla z25.s, p3/M, z3.s, z29.s\n"
"fmla z12.s, p3/M, z2.s, z29.s\n"
"fmla z23.s, p3/M, z1.s, z29.s\n"
"fmla z24.s, p3/M, z0.s, z29.s\n"
"ld1w { z21.s }, p2/Z, [x13, x7, LSL #2]\n"
"fmla z17.s, p3/M, z0.s, z9.s\n"
"fmla z26.s, p3/M, z6.s, z19.s\n"
"fmla z10.s, p3/M, z3.s, z19.s\n"
"fmla z14.s, p3/M, z1.s, z21.s\n"
"ld1w { z19.s }, p2/Z, [x28, x27, LSL #2]\n"
"fmla z31.s, p3/M, z3.s, z9.s\n"
"fmla z27.s, p3/M, z5.s, z22.s\n"
"fmla z11.s, p3/M, z2.s, z22.s\n"
"fmla z18.s, p3/M, z4.s, z21.s\n"
"ld1w { z29.s }, p2/Z, [x13, x14, LSL #2]\n"
"fmla z28.s, p3/M, z3.s, z21.s\n"
"fmla z30.s, p3/M, z0.s, z21.s\n"
"fmla z25.s, p3/M, z8.s, z19.s\n"
"fmla z24.s, p3/M, z5.s, z19.s\n"
"ld1w { z19.s }, p2/Z, [x24, x5, LSL #2]\n"
"fmla z17.s, p3/M, z2.s, z21.s\n"
"fmla z14.s, p3/M, z2.s, z29.s\n"
"fmla z31.s, p3/M, z5.s, z21.s\n"
"fmla z18.s, p3/M, z5.s, z29.s\n"
"ld1w { z22.s }, p2/Z, [x12, x5, LSL #2]\n"
"fmla z28.s, p3/M, z4.s, z29.s\n"
"fmla z27.s, p3/M, z3.s, z29.s\n"
"fmla z30.s, p3/M, z1.s, z29.s\n"
"fmla z11.s, p3/M, z0.s, z29.s\n"
"ld1w { z21.s }, p2/Z, [x12, x10, LSL #2]\n"
"fmla z10.s, p3/M, z7.s, z19.s\n"
"fmla z12.s, p3/M, z6.s, z19.s\n"
"ld1w { z19.s }, p2/Z, [x24, x10, LSL #2]\n"
"fmla z17.s, p3/M, z4.s, z22.s\n"
"fmla z14.s, p3/M, z3.s, z22.s\n"
"fmla z26.s, p3/M, z1.s, z22.s\n"
"fmla z13.s, p3/M, z0.s, z22.s\n"
"fmla z31.s, p3/M, z7.s, z22.s\n"
"fmla z18.s, p3/M, z6.s, z22.s\n"
"ld1w { z29.s }, p2/Z, [x8, x7, LSL #2]\n"
"fmla z23.s, p3/M, z8.s, z19.s\n"
"fmla z24.s, p3/M, z7.s, z19.s\n"
"ld1w { z19.s }, p2/Z, [x11, x5, LSL #2]\n"
"fmla z28.s, p3/M, z8.s, z21.s\n"
"fmla z27.s, p3/M, z7.s, z21.s\n"
"fmla z30.s, p3/M, z5.s, z21.s\n"
"fmla z11.s, p3/M, z4.s, z21.s\n"
"fmla z20.s, p3/M, z2.s, z21.s\n"
"fmla z25.s, p3/M, z1.s, z21.s\n"
"ld1w { z22.s }, p2/Z, [x8, x14, LSL #2]\n"
"fmla z17.s, p3/M, z7.s, z19.s\n"
"fmla z14.s, p3/M, z6.s, z19.s\n"
"fmla z26.s, p3/M, z4.s, z19.s\n"
"fmla z13.s, p3/M, z3.s, z19.s\n"
"fmla z10.s, p3/M, z1.s, z19.s\n"
"fmla z12.s, p3/M, z0.s, z19.s\n"
"ld1w { z21.s }, p2/Z, [x11, x10, LSL #2]\n"
"fmla z31.s, p3/M, z2.s, z29.s\n"
"fmla z18.s, p3/M, z1.s, z29.s\n"
"fmla z28.s, p3/M, z0.s, z29.s\n"
"ld1w { z29.s }, p2/Z, [x12]\n"
"fmla z23.s, p3/M, z2.s, z21.s\n"
"fmla z27.s, p3/M, z0.s, z22.s\n"
"fmla z17.s, p3/M, z3.s, z29.s\n"
"fmla z26.s, p3/M, z0.s, z29.s\n"
"fmla z30.s, p3/M, z8.s, z21.s\n"
"fmla z11.s, p3/M, z7.s, z21.s\n"
"fmla z20.s, p3/M, z5.s, z21.s\n"
"fmla z25.s, p3/M, z4.s, z21.s\n"
"fmla z24.s, p3/M, z1.s, z21.s\n"
"ld1w { z19.s }, p2/Z, [x28, x7, LSL #2]\n"
"fmla z18.s, p3/M, z2.s, z22.s\n"
"fmla z28.s, p3/M, z1.s, z22.s\n"
"ld1w { z21.s }, p2/Z, [x12, x27, LSL #2]\n"
"fmla z31.s, p3/M, z6.s, z29.s\n"
"ld1w { z29.s }, p2/Z, [x11]\n"
"fmla z12.s, p3/M, z4.s, z19.s\n"
"fmla z23.s, p3/M, z3.s, z19.s\n"
"fmla z27.s, p3/M, z8.s, z21.s\n"
"fmla z11.s, p3/M, z5.s, z21.s\n"
"fmla z25.s, p3/M, z2.s, z21.s\n"
"ld1w { z9.s }, p2/Z, [x11, x27, LSL #2]\n"
"fmla z17.s, p3/M, z6.s, z29.s\n"
"fmla z26.s, p3/M, z3.s, z29.s\n"
"fmla z10.s, p3/M, z0.s, z29.s\n"
"ld1w { z22.s }, p2/Z, [x24, x7, LSL #2]\n"
"fmla z24.s, p3/M, z2.s, z9.s\n"
"fmla z12.s, p3/M, z7.s, z22.s\n"
"fmla z23.s, p3/M, z6.s, z22.s\n"
"fmla z26.s, p3/M, z8.s, z19.s\n"
"fmla z13.s, p3/M, z7.s, z19.s\n"
"fmla z20.s, p3/M, z6.s, z19.s\n"
"fmla z10.s, p3/M, z5.s, z19.s\n"
"ld1w { z21.s }, p2/Z, [x28, x14, LSL #2]\n"
"fmla z25.s, p3/M, z5.s, z9.s\n"
"fmla z12.s, p3/M, z5.s, z21.s\n"
"fmla z23.s, p3/M, z4.s, z21.s\n"
"fmla z24.s, p3/M, z3.s, z21.s\n"
"fmla z11.s, p3/M, z8.s, z9.s\n"
"ld1w { z19.s }, p2/Z, [x24, x14, LSL #2]\n"
"fmla z10.s, p3/M, z8.s, z22.s\n"
"ld1w { z22.s }, p2/Z, [x13, x5, LSL #2]\n"
"fmla z13.s, p3/M, z8.s, z21.s\n"
"fmla z20.s, p3/M, z7.s, z21.s\n"
"fmla z25.s, p3/M, z6.s, z21.s\n"
"fmla z12.s, p3/M, z8.s, z19.s\n"
"ld1w { z29.s }, p2/Z, [x13, x10, LSL #2]\n"
"fmla z23.s, p3/M, z7.s, z19.s\n"
"fmla z24.s, p3/M, z6.s, z19.s\n"
"ld1w { z21.s }, p2/Z, [x28, x5, LSL #2]\n"
"fmla z31.s, p3/M, z4.s, z22.s\n"
"fmla z18.s, p3/M, z3.s, z22.s\n"
"fmax z31.s, p3/M, z31.s, z15.s\n"
"fmax z18.s, p3/M, z18.s, z15.s\n"
"fmla z17.s, p3/M, z1.s, z22.s\n"
"fmla z14.s, p3/M, z0.s, z22.s\n"
"ld1w { z9.s }, p2/Z, [x28, x10, LSL #2]\n"
"fmax z17.s, p3/M, z17.s, z15.s\n"
"fmla z28.s, p3/M, z5.s, z29.s\n"
"fmla z27.s, p3/M, z4.s, z29.s\n"
"fmax z28.s, p3/M, z28.s, z15.s\n"
"fmax z27.s, p3/M, z27.s, z15.s\n"
"fmla z30.s, p3/M, z2.s, z29.s\n"
"fmla z11.s, p3/M, z1.s, z29.s\n"
"fmax z14.s, p3/M, z14.s, z15.s\n"
"fmax z30.s, p3/M, z30.s, z15.s\n"
"fmla z26.s, p3/M, z7.s, z21.s\n"
"fmla z13.s, p3/M, z6.s, z21.s\n"
"fmax z11.s, p3/M, z11.s, z15.s\n"
"fmax z26.s, p3/M, z26.s, z15.s\n"
"fmla z10.s, p3/M, z4.s, z21.s\n"
"fmla z12.s, p3/M, z3.s, z21.s\n"
"fmax z13.s, p3/M, z13.s, z15.s\n"
"fmax z10.s, p3/M, z10.s, z15.s\n"
"fmla z20.s, p3/M, z8.s, z9.s\n"
"fmla z25.s, p3/M, z7.s, z9.s\n"
"fmax z20.s, p3/M, z20.s, z15.s\n"
"fmax z25.s, p3/M, z25.s, z15.s\n"
"fmla z23.s, p3/M, z5.s, z9.s\n"
"fmla z24.s, p3/M, z4.s, z9.s\n"
"fmax z12.s, p3/M, z12.s, z15.s\n"
"fmax z23.s, p3/M, z23.s, z15.s\n"
"fmax z24.s, p3/M, z24.s, z15.s\n"
"fmin z31.s, p3/M, z31.s, z16.s\n"
"st1w { z31.s }, p0, [x15]\n"
"fmin z18.s, p3/M, z18.s, z16.s\n"
"fmin z28.s, p3/M, z28.s, z16.s\n"
"st1w { z18.s }, p0, [x15, x6, LSL #2]\n"
"fmin z27.s, p3/M, z27.s, z16.s\n"
"fmin z17.s, p3/M, z17.s, z16.s\n"
"st1w { z28.s }, p0, [x15, x25, LSL #2]\n"
"fmin z14.s, p3/M, z14.s, z16.s\n"
"fmin z30.s, p3/M, z30.s, z16.s\n"
"st1w { z27.s }, p0, [x15, x22, LSL #2]\n"
"fmin z11.s, p3/M, z11.s, z16.s\n"
"fmin z26.s, p3/M, z26.s, z16.s\n"
"st1w { z17.s }, p0, [x9]\n"
"fmin z13.s, p3/M, z13.s, z16.s\n"
"fmin z20.s, p3/M, z20.s, z16.s\n"
"st1w { z14.s }, p0, [x9, x6, LSL #2]\n"
"fmin z25.s, p3/M, z25.s, z16.s\n"
"fmin z10.s, p3/M, z10.s, z16.s\n"
"st1w { z30.s }, p0, [x9, x25, LSL #2]\n"
"fmin z12.s, p3/M, z12.s, z16.s\n"
"fmin z23.s, p3/M, z23.s, z16.s\n"
"st1w { z11.s }, p0, [x9, x22, LSL #2]\n"
"fmin z24.s, p3/M, z24.s, z16.s\n"
"st1w { z26.s }, p0, [x26]\n"
"st1w { z13.s }, p0, [x26, x6, LSL #2]\n"
"st1w { z20.s }, p0, [x26, x25, LSL #2]\n"
"st1w { z25.s }, p0, [x26, x22, LSL #2]\n"
"st1w { z10.s }, p0, [x23]\n"
"st1w { z12.s }, p0, [x23, x6, LSL #2]\n"
"st1w { z23.s }, p0, [x23, x25, LSL #2]\n"
"st1w { z24.s }, p0, [x23, x22, LSL #2]\n"
"blt 1b\n"
:
: [n_channels] "r" ((unsigned long) n_channels), [offsetof_args_inptr] "I" (offsetof(Args, inptr)), [offsetof_args_ld_input_col] "I" (offsetof(Args, ld_input_col)), [offsetof_args_ld_input_row] "I" (offsetof(Args, ld_input_row)), [offsetof_args_ld_output_col] "I" (offsetof(Args, ld_output_col)), [offsetof_args_ld_output_row] "I" (offsetof(Args, ld_output_row)), [offsetof_args_max] "I" (offsetof(Args, max)), [offsetof_args_min] "I" (offsetof(Args, min)), [offsetof_args_n_tile_cols] "I" (offsetof(Args, n_tile_cols)), [offsetof_args_n_tile_rows] "I" (offsetof(Args, n_tile_rows)), [offsetof_args_outptr] "I" (offsetof(Args, outptr)), [offsetof_args_params] "I" (offsetof(Args, params)), [offsetof_args_tile_i] "I" (offsetof(Args, tile_i)), [offsetof_args_tile_j] "I" (offsetof(Args, tile_j)), [params_struct] "r" (&params_struct)
: "cc", "memory", "p0", "p1", "p2", "p3", "x4", "x5", "x6", "x7", "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15", "x16", "x17", "x20", "x21", "x22", "x23", "x24", "x25", "x26", "x27", "x28", "z0", "z1", "z2", "z3", "z4", "z5", "z6", "z7", "z8", "z9", "z10", "z11", "z12", "z13", "z14", "z15", "z16", "z17", "z18", "z19", "z20", "z21", "z22", "z23", "z24", "z25", "z26", "z27", "z28", "z29", "z30", "z31"
);
}
} // namespace depthwise
} // namespace arm_conv
#endif // defined(ARM_COMPUTE_ENABLE_SVE)