|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <assert.h> |
|
|
|
#include <arm_neon.h> |
|
|
|
#include <xnnpack/gemm.h> |
|
|
|
|
|
void xnn_f32_gemminc_minmax_ukernel_1x8s4__neon( |
|
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, |
|
const float* restrict acc, |
|
const union xnn_f32_minmax_params params[restrict XNN_MIN_ELEMENTS(1)]) |
|
{ |
|
assert(mr != 0); |
|
assert(mr <= 1); |
|
assert(nc != 0); |
|
assert(kc != 0); |
|
assert(kc % sizeof(float) == 0); |
|
assert(a != NULL); |
|
assert(w != NULL); |
|
assert(c != NULL); |
|
assert(acc != NULL); |
|
|
|
const float* a0 = a; |
|
float* c0 = c; |
|
|
|
do { |
|
float32x4_t vacc0x0123 = vld1q_f32(acc); acc += 4; |
|
float32x4_t vacc0x4567 = vld1q_f32(acc); acc += 4; |
|
|
|
size_t k = kc; |
|
while (k >= 4 * sizeof(float)) { |
|
float32x4_t va0 = vld1q_f32(a0); a0 += 4; |
|
|
|
|
|
const float32x4_t vb0123c0 = vld1q_f32(w); w += 4; |
|
const float32x4_t vb4567c0 = vld1q_f32(w); w += 4; |
|
|
|
vacc0x0123 = vmlaq_f32(vacc0x0123, va0, vb0123c0); |
|
vacc0x4567 = vmlaq_f32(vacc0x4567, va0, vb4567c0); |
|
|
|
va0 = vextq_f32(va0, va0, 1); |
|
|
|
const float32x4_t vb0123c1 = vld1q_f32(w); w += 4; |
|
const float32x4_t vb4567c1 = vld1q_f32(w); w += 4; |
|
|
|
vacc0x0123 = vmlaq_f32(vacc0x0123, va0, vb0123c1); |
|
vacc0x4567 = vmlaq_f32(vacc0x4567, va0, vb4567c1); |
|
|
|
va0 = vextq_f32(va0, va0, 1); |
|
|
|
const float32x4_t vb0123c2 = vld1q_f32(w); w += 4; |
|
const float32x4_t vb4567c2 = vld1q_f32(w); w += 4; |
|
|
|
vacc0x0123 = vmlaq_f32(vacc0x0123, va0, vb0123c2); |
|
vacc0x4567 = vmlaq_f32(vacc0x4567, va0, vb4567c2); |
|
|
|
va0 = vextq_f32(va0, va0, 1); |
|
|
|
const float32x4_t vb0123c3 = vld1q_f32(w); w += 4; |
|
const float32x4_t vb4567c3 = vld1q_f32(w); w += 4; |
|
|
|
vacc0x0123 = vmlaq_f32(vacc0x0123, va0, vb0123c3); |
|
vacc0x4567 = vmlaq_f32(vacc0x4567, va0, vb4567c3); |
|
|
|
|
|
k -= 4 * sizeof(float); |
|
} |
|
if XNN_UNLIKELY(k != 0) { |
|
float32x4_t va0 = vld1q_f32(a0); a0 = (const float*) ((uintptr_t) a0 + k); |
|
|
|
|
|
const float32x4_t vb0123c0 = vld1q_f32(w); w += 4; |
|
const float32x4_t vb4567c0 = vld1q_f32(w); w += 4; |
|
|
|
const float32x4_t vmska0x0123c0 = vreinterpretq_f32_u32(vbicq_u32(vreinterpretq_u32_f32(va0), vceqq_f32(vb0123c0, vmovq_n_f32(0.0f)))); |
|
vacc0x0123 = vmlaq_f32(vacc0x0123, vmska0x0123c0, vb0123c0); |
|
const float32x4_t vmska0x4567c0 = vreinterpretq_f32_u32(vbicq_u32(vreinterpretq_u32_f32(va0), vceqq_f32(vb4567c0, vmovq_n_f32(0.0f)))); |
|
vacc0x4567 = vmlaq_f32(vacc0x4567, vmska0x4567c0, vb4567c0); |
|
|
|
va0 = vextq_f32(va0, va0, 1); |
|
|
|
const float32x4_t vb0123c1 = vld1q_f32(w); w += 4; |
|
const float32x4_t vb4567c1 = vld1q_f32(w); w += 4; |
|
|
|
const float32x4_t vmska0x0123c1 = vreinterpretq_f32_u32(vbicq_u32(vreinterpretq_u32_f32(va0), vceqq_f32(vb0123c1, vmovq_n_f32(0.0f)))); |
|
vacc0x0123 = vmlaq_f32(vacc0x0123, vmska0x0123c1, vb0123c1); |
|
const float32x4_t vmska0x4567c1 = vreinterpretq_f32_u32(vbicq_u32(vreinterpretq_u32_f32(va0), vceqq_f32(vb4567c1, vmovq_n_f32(0.0f)))); |
|
vacc0x4567 = vmlaq_f32(vacc0x4567, vmska0x4567c1, vb4567c1); |
|
|
|
va0 = vextq_f32(va0, va0, 1); |
|
|
|
const float32x4_t vb0123c2 = vld1q_f32(w); w += 4; |
|
const float32x4_t vb4567c2 = vld1q_f32(w); w += 4; |
|
|
|
const float32x4_t vmska0x0123c2 = vreinterpretq_f32_u32(vbicq_u32(vreinterpretq_u32_f32(va0), vceqq_f32(vb0123c2, vmovq_n_f32(0.0f)))); |
|
vacc0x0123 = vmlaq_f32(vacc0x0123, vmska0x0123c2, vb0123c2); |
|
const float32x4_t vmska0x4567c2 = vreinterpretq_f32_u32(vbicq_u32(vreinterpretq_u32_f32(va0), vceqq_f32(vb4567c2, vmovq_n_f32(0.0f)))); |
|
vacc0x4567 = vmlaq_f32(vacc0x4567, vmska0x4567c2, vb4567c2); |
|
|
|
va0 = vextq_f32(va0, va0, 1); |
|
|
|
const float32x4_t vb0123c3 = vld1q_f32(w); w += 4; |
|
const float32x4_t vb4567c3 = vld1q_f32(w); w += 4; |
|
|
|
const float32x4_t vmska0x0123c3 = vreinterpretq_f32_u32(vbicq_u32(vreinterpretq_u32_f32(va0), vceqq_f32(vb0123c3, vmovq_n_f32(0.0f)))); |
|
vacc0x0123 = vmlaq_f32(vacc0x0123, vmska0x0123c3, vb0123c3); |
|
const float32x4_t vmska0x4567c3 = vreinterpretq_f32_u32(vbicq_u32(vreinterpretq_u32_f32(va0), vceqq_f32(vb4567c3, vmovq_n_f32(0.0f)))); |
|
vacc0x4567 = vmlaq_f32(vacc0x4567, vmska0x4567c3, vb4567c3); |
|
|
|
} |
|
const float32x4_t vmax = vld1q_dup_f32(¶ms->scalar.max); |
|
vacc0x0123 = vminq_f32(vacc0x0123, vmax); |
|
vacc0x4567 = vminq_f32(vacc0x4567, vmax); |
|
|
|
const float32x4_t vmin = vld1q_dup_f32(¶ms->scalar.min); |
|
vacc0x0123 = vmaxq_f32(vacc0x0123, vmin); |
|
vacc0x4567 = vmaxq_f32(vacc0x4567, vmin); |
|
|
|
if XNN_LIKELY(nc >= 8) { |
|
vst1q_f32(c0, vacc0x0123); |
|
vst1q_f32(c0 + 4, vacc0x4567); |
|
c0 = (float*) ((uintptr_t) c0 + cn_stride); |
|
|
|
a0 = (const float*) ((uintptr_t) a0 - kc); |
|
|
|
nc -= 8; |
|
|
|
} else { |
|
if (nc & 4) { |
|
vst1q_f32(c0, vacc0x0123); c0 += 4; |
|
|
|
vacc0x0123 = vacc0x4567; |
|
} |
|
float32x2_t vacc0x01 = vget_low_f32(vacc0x0123); |
|
if (nc & 2) { |
|
vst1_f32(c0, vacc0x01); c0 += 2; |
|
|
|
vacc0x01 = vget_high_f32(vacc0x0123); |
|
} |
|
if (nc & 1) { |
|
vst1_lane_f32(c0, vacc0x01, 0); |
|
} |
|
|
|
nc = 0; |
|
} |
|
} while (nc != 0); |
|
} |
|
|