blob: 6ac9db29a9b63018ed9a08c086864c7c7d19ab9f [file] [log] [blame]
// Copyright 2019 Google LLC
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree.
$assert NR % 4 == 0
$ABC = "0123456789ABCDEFGHIJKLMN"
#include <assert.h>
#include <psimd.h>
#include <xnnpack/gemm.h>
void xnn_f32_gemm${"inc" if INC else ""}_ukernel_${MR}x${NR}__psimd_loadsplat(
size_t mr,
size_t nc,
size_t kc,
const float*restrict a,
size_t a_stride,
const float*restrict w,
float*restrict c,
size_t cm_stride,
size_t cn_stride,
$if INC:
const float*restrict acc,
const union xnn_f32_output_params params[restrict static 1])
{
assert(mr != 0);
assert(mr <= ${MR});
assert(nc != 0);
assert(kc != 0);
assert(kc % sizeof(float) == 0);
assert(a != NULL);
assert(w != NULL);
assert(c != NULL);
$if INC:
assert(acc != NULL);
const float* a0 = a;
float* c0 = c;
$for M in range(1, MR):
const float* a${M} = (const float*) ((uintptr_t) a${M-1} + a_stride);
float* c${M} = (float*) ((uintptr_t) c${M-1} + cm_stride);
$if M % 2 == 0:
if XNN_UNPREDICTABLE(mr <= ${M}) {
a${M} = a${M-1};
c${M} = c${M-1};
}
$elif M + 1 == MR:
if XNN_UNPREDICTABLE(mr != ${M+1}) {
a${M} = a${M-1};
c${M} = c${M-1};
}
$else:
if XNN_UNPREDICTABLE(mr < ${M+1}) {
a${M} = a${M-1};
c${M} = c${M-1};
}
do {
$if INC:
$for M in range(MR):
$for N in range(0, NR, 4):
psimd_f32 vacc${M}x${ABC[N:N+4]} = psimd_load_f32(acc + ${M*NR+N});
acc += ${MR*NR};
$else:
$for N in range(0, NR, 4):
psimd_f32 vacc0x${ABC[N:N+4]} = psimd_load_f32(w + ${N});
$for M in range(1, MR):
$for N in range(0, NR, 4):
psimd_f32 vacc${M}x${ABC[N:N+4]} = vacc0x${ABC[N:N+4]};
w += ${NR};
size_t k = kc;
do {
$for M in range(MR):
const psimd_f32 va${M} = psimd_load_splat_f32(a${M});
a${M} += 1;
const psimd_f32 vb${ABC[0:4]} = psimd_load_f32(w);
$for N in range(4, NR, 4):
const psimd_f32 vb${ABC[N:N+4]} = psimd_load_f32(w + ${N});
w += ${NR};
$for N in range(0, NR, 4):
$for M in range(MR):
vacc${M}x${ABC[N:N+4]} = psimd_qfma_f32(vacc${M}x${ABC[N:N+4]}, va${M}, vb${ABC[N:N+4]});
k -= sizeof(float);
} while (k != 0);
const psimd_f32 vmax = psimd_load_splat_f32(&params->scalar.max);
$for N in range(0, NR, 4):
$for M in range(MR):
vacc${M}x${ABC[N:N+4]} = psimd_min_f32(vacc${M}x${ABC[N:N+4]}, vmax);
const psimd_f32 vmin = psimd_load_splat_f32(&params->scalar.min);
$for N in range(0, NR, 4):
$for M in range(MR):
vacc${M}x${ABC[N:N+4]} = psimd_max_f32(vacc${M}x${ABC[N:N+4]}, vmin);
if XNN_LIKELY(nc >= ${NR}) {
$for M in reversed(range(MR)):
psimd_store_f32(c${M}, vacc${M}x${ABC[0:4]});
$for N in range(4, NR, 4):
psimd_store_f32(c${M} + ${N}, vacc${M}x${ABC[N:N+4]});
c${M} = (float*) ((uintptr_t) c${M} + cn_stride);
$for M in reversed(range(MR)):
a${M} = (const float*) ((uintptr_t) a${M} - kc);
nc -= ${NR};
} else {
$for LOG2N in reversed(range(NR.bit_length())):
$if NR != 1 << LOG2N:
if (nc & ${1 << LOG2N}) {
$if LOG2N >= 2:
$for M in reversed(range(MR)):
psimd_store_f32(c${M}, vacc${M}x${ABC[0:4]});
$for N in range(4, 1 << LOG2N, 4):
psimd_store_f32(c${M} + ${N}, vacc${M}x${ABC[N:N+4]});
$for M in reversed(range(MR)):
$for N in range(0, 1 << (LOG2N - 1), 4):
vacc${M}x${ABC[N:N+4]} = vacc${M}x${ABC[N + (1 << LOG2N):N + (1 << LOG2N)+4]};
$for M in reversed(range(MR)):
c${M} += ${1 << LOG2N};
$elif LOG2N == 1:
$for M in reversed(range(MR)):
psimd_store2_f32(c${M}, vacc${M}x${ABC[0:4]});
$for M in reversed(range(MR)):
vacc${M}x${ABC[0:4]} = psimd_concat_hi_f32(vacc${M}x${ABC[0:4]}, vacc${M}x${ABC[0:4]});
$for M in reversed(range(MR)):
c${M} += 2;
$elif LOG2N == 0:
$for M in reversed(range(MR)):
psimd_store1_f32(c${M}, vacc${M}x${ABC[0:4]});
}
nc = 0;
}
} while (nc != 0);
}