blob: b57c0d5016b47155e74957c7b3a767a48e4fd0f3 [file] [log] [blame]
// Auto-generated file. Do not edit!
// Template: src/f32-spmm/neon-blocked.c.in
// Generator: tools/xngen
//
// 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.
#include <assert.h>
#include <arm_neon.h>
#include <xnnpack/spmm.h>
void xnn_f32_spmm_ukernel_4x2__neonfma(
uint32_t m,
uint32_t n,
const float*restrict a,
const float*restrict weights,
const int32_t*restrict widx_dmap,
const uint32_t*restrict nidx_nnzmap,
float*restrict c,
const union xnn_f32_minmax_params params[restrict static 1])
{
assert(m != 0);
const float32x4_t vmin = vld1q_dup_f32(&params->scalar.min);
const float32x4_t vmax = vld1q_dup_f32(&params->scalar.max);
size_t i = m;
while XNN_LIKELY(i >= 4) {
const float*restrict w = weights;
const int32_t* dmap = widx_dmap;
const uint32_t* nnzmap = nidx_nnzmap;
size_t j = n;
while (j >= 2) {
uint32_t nnz = *nnzmap++;
float32x4_t vacc0123c0 = vld1q_dup_f32(w); w += 1;
float32x4_t vacc0123c1 = vld1q_dup_f32(w); w += 1;
if XNN_LIKELY(nnz != 0) {
do {
const intptr_t diff = *dmap++;
const float32x4_t va0123 = vld1q_f32(a);
a = (const float*restrict) ((uintptr_t) a + (uintptr_t) diff);
const float32x2_t vb = vld1_f32(w); w += 2;
vacc0123c0 = vfmaq_lane_f32(vacc0123c0, va0123, vb, 0);
vacc0123c1 = vfmaq_lane_f32(vacc0123c1, va0123, vb, 1);
} while (--nnz != 0);
}
float32x4_t vout0123c0 = vminq_f32(vacc0123c0, vmax);
float32x4_t vout0123c1 = vminq_f32(vacc0123c1, vmax);
vout0123c0 = vmaxq_f32(vout0123c0, vmin);
vout0123c1 = vmaxq_f32(vout0123c1, vmin);
vst1q_f32(c + 0 * m + 0, vout0123c0);
vst1q_f32(c + 1 * m + 0, vout0123c1);
c += 2 * m;
j -= 2;
}
// clean up loop, fall back to nr=1
if XNN_UNLIKELY(j != 0) {
do {
uint32_t nnz = *nnzmap++;
float32x4_t vacc0123 = vld1q_dup_f32(w); w += 1;
if XNN_LIKELY(nnz != 0) {
do {
const intptr_t diff = *dmap++;
const float32x4_t va0123 = vld1q_f32(a);
a = (const float*restrict) ((uintptr_t) a + (uintptr_t) diff);
const float32x4_t vb = vld1q_dup_f32(w); w += 1;
vacc0123 = vfmaq_f32(vacc0123, va0123, vb);
} while (--nnz != 0);
}
float32x4_t vout0123 = vminq_f32(vacc0123, vmax);
vout0123 = vmaxq_f32(vout0123, vmin);
vst1q_f32(c + 0, vout0123);
c += m;
j -= 1;
} while (j != 0);
}
c -= m * n;
c += 4;
a += 4;
i -= 4;
}
if XNN_UNLIKELY(i != 0) {
if (i & 2) {
const float*restrict w = weights;
const int32_t* dmap = widx_dmap;
const uint32_t* nnzmap = nidx_nnzmap;
size_t j = n;
while (j >= 2) {
uint32_t nnz = *nnzmap++;
float32x2_t vacc01c0 = vld1_dup_f32(w); w += 1;
float32x2_t vacc01c1 = vld1_dup_f32(w); w += 1;
if XNN_LIKELY(nnz != 0) {
do {
const intptr_t diff = *dmap++;
const float32x2_t va01 = vld1_f32(a);
a = (const float*restrict) ((uintptr_t) a + (uintptr_t) diff);
const float32x2_t vb = vld1_f32(w); w += 2;
vacc01c0 = vfma_lane_f32(vacc01c0, va01, vb, 0);
vacc01c1 = vfma_lane_f32(vacc01c1, va01, vb, 1);
} while (--nnz != 0);
}
float32x2_t vout01c0 = vmin_f32(vacc01c0, vget_low_f32(vmax));
float32x2_t vout01c1 = vmin_f32(vacc01c1, vget_low_f32(vmax));
vout01c0 = vmax_f32(vout01c0, vget_low_f32(vmin));
vout01c1 = vmax_f32(vout01c1, vget_low_f32(vmin));
vst1_f32(c + 0 * m + 0, vout01c0);
vst1_f32(c + 1 * m + 0, vout01c1);
c += 2 * m;
j -= 2;
}
// clean up loop, fall back to nr=1
if XNN_UNLIKELY(j != 0) {
do {
uint32_t nnz = *nnzmap++;
float32x2_t vacc01 = vld1_dup_f32(w); w += 1;
if XNN_LIKELY(nnz != 0) {
do {
const intptr_t diff = *dmap++;
const float32x2_t va01 = vld1_f32(a);
a = (const float*restrict) ((uintptr_t) a + (uintptr_t) diff);
const float32x2_t vb = vld1_dup_f32(w); w += 1;
vacc01 = vfma_f32(vacc01, va01, vb);
} while (--nnz != 0);
}
float32x2_t vout01 = vmin_f32(vacc01, vget_low_f32(vmax));
vout01 = vmax_f32(vout01, vget_low_f32(vmin));
vst1_f32(c, vout01);
c += m;
j -= 1;
} while (j != 0);
}
c -= m * n;
c += 2;
a += 2;
}
if (i & 1) {
const float*restrict w = weights;
const int32_t* dmap = widx_dmap;
const uint32_t* nnzmap = nidx_nnzmap;
size_t j = n;
while (j >= 2) {
uint32_t nnz = *nnzmap++;
float32x2_t vacc0c0 = vld1_dup_f32(w); w += 1;
float32x2_t vacc0c1 = vld1_dup_f32(w); w += 1;
if XNN_LIKELY(nnz != 0) {
do {
const intptr_t diff = *dmap++;
const float32x2_t va0 = vld1_dup_f32(a);
a = (const float*restrict) ((uintptr_t) a + (uintptr_t) diff);
const float32x2_t vb = vld1_f32(w); w += 2;
vacc0c0 = vfma_lane_f32(vacc0c0, va0, vb, 0);
vacc0c1 = vfma_lane_f32(vacc0c1, va0, vb, 1);
} while (--nnz != 0);
}
float32x2_t vout0c0 = vmin_f32(vacc0c0, vget_low_f32(vmax));
float32x2_t vout0c1 = vmin_f32(vacc0c1, vget_low_f32(vmax));
vout0c0 = vmax_f32(vout0c0, vget_low_f32(vmin));
vout0c1 = vmax_f32(vout0c1, vget_low_f32(vmin));
vst1_lane_f32(c + 0 * m + 0, vout0c0, 0);
vst1_lane_f32(c + 1 * m + 0, vout0c1, 0);
c += 2 * m;
j -= 2;
}
// clean up loop, fall back to nr=1
if XNN_UNLIKELY(j != 0) {
do {
uint32_t nnz = *nnzmap++;
float32x2_t vacc0 = vld1_dup_f32(w); w += 1;
if XNN_LIKELY(nnz != 0) {
do {
const intptr_t diff = *dmap++;
const float32x2_t va0 = vld1_dup_f32(a);
a = (const float*restrict) ((uintptr_t) a + (uintptr_t) diff);
const float32x2_t vb = vld1_dup_f32(w); w += 1;
vacc0 = vfma_f32(vacc0, va0, vb);
} while (--nnz != 0);
}
float32x2_t vout0 = vmin_f32(vacc0, vget_low_f32(vmax));
vout0 = vmax_f32(vout0, vget_low_f32(vmin));
vst1_lane_f32(c, vout0, 1);
c += m;
j -= 1;
} while (j != 0);
}
c -= m * n;
c += 1;
a += 1;
}
}
}