|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <assert.h> |
|
|
|
#include <arm_neon.h> |
|
|
|
#include <xnnpack/common.h> |
|
|
|
#include <xnnpack/gemm.h> |
|
#include <xnnpack/intrinsics-polyfill.h> |
|
|
|
|
|
void xnn_f16_gemminc_minmax_ukernel_6x8__neonfp16arith_ld64( |
|
size_t mr, |
|
size_t nc, |
|
size_t kc, |
|
const void* restrict a, |
|
size_t a_stride, |
|
const void* restrict w, |
|
void* restrict c, |
|
size_t cm_stride, |
|
size_t cn_stride, |
|
const void* restrict acc, |
|
const union xnn_f16_minmax_params params[restrict XNN_MIN_ELEMENTS(1)]) |
|
{ |
|
assert(mr != 0); |
|
assert(mr <= 6); |
|
assert(nc != 0); |
|
assert(kc != 0); |
|
assert(kc % sizeof(uint16_t) == 0); |
|
assert(a != NULL); |
|
assert(w != NULL); |
|
assert(c != NULL); |
|
assert(acc != NULL); |
|
|
|
const uint16_t* a0 = (const uint16_t*) a; |
|
uint16_t* c0 = (uint16_t*) c; |
|
const uint16_t* a1 = (const uint16_t*) ((uintptr_t) a0 + a_stride); |
|
uint16_t* c1 = (uint16_t*) ((uintptr_t) c0 + cm_stride); |
|
if XNN_UNPREDICTABLE(mr < 2) { |
|
a1 = a0; |
|
c1 = c0; |
|
} |
|
const uint16_t* a2 = (const uint16_t*) ((uintptr_t) a1 + a_stride); |
|
uint16_t* c2 = (uint16_t*) ((uintptr_t) c1 + cm_stride); |
|
if XNN_UNPREDICTABLE(mr <= 2) { |
|
a2 = a1; |
|
c2 = c1; |
|
} |
|
const uint16_t* a3 = (const uint16_t*) ((uintptr_t) a2 + a_stride); |
|
uint16_t* c3 = (uint16_t*) ((uintptr_t) c2 + cm_stride); |
|
if XNN_UNPREDICTABLE(mr < 4) { |
|
a3 = a2; |
|
c3 = c2; |
|
} |
|
const uint16_t* a4 = (const uint16_t*) ((uintptr_t) a3 + a_stride); |
|
uint16_t* c4 = (uint16_t*) ((uintptr_t) c3 + cm_stride); |
|
if XNN_UNPREDICTABLE(mr <= 4) { |
|
a4 = a3; |
|
c4 = c3; |
|
} |
|
const uint16_t* a5 = (const uint16_t*) ((uintptr_t) a4 + a_stride); |
|
uint16_t* c5 = (uint16_t*) ((uintptr_t) c4 + cm_stride); |
|
if XNN_UNPREDICTABLE(mr != 6) { |
|
a5 = a4; |
|
c5 = c4; |
|
} |
|
|
|
do { |
|
float16x8_t vacc0x01234567 = vreinterpretq_f16_u16(vld1q_u16(acc)); acc = (const void*) ((uintptr_t) acc + sizeof(float16x8_t)); |
|
float16x8_t vacc1x01234567 = vreinterpretq_f16_u16(vld1q_u16(acc)); acc = (const void*) ((uintptr_t) acc + sizeof(float16x8_t)); |
|
float16x8_t vacc2x01234567 = vreinterpretq_f16_u16(vld1q_u16(acc)); acc = (const void*) ((uintptr_t) acc + sizeof(float16x8_t)); |
|
float16x8_t vacc3x01234567 = vreinterpretq_f16_u16(vld1q_u16(acc)); acc = (const void*) ((uintptr_t) acc + sizeof(float16x8_t)); |
|
float16x8_t vacc4x01234567 = vreinterpretq_f16_u16(vld1q_u16(acc)); acc = (const void*) ((uintptr_t) acc + sizeof(float16x8_t)); |
|
float16x8_t vacc5x01234567 = vreinterpretq_f16_u16(vld1q_u16(acc)); acc = (const void*) ((uintptr_t) acc + sizeof(float16x8_t)); |
|
|
|
size_t k = kc; |
|
while (k >= 4 * sizeof(uint16_t)) { |
|
const float16x4_t va0 = vreinterpret_f16_u16(vld1_u16(a0)); a0 += 4; |
|
const float16x4_t va1 = vreinterpret_f16_u16(vld1_u16(a1)); a1 += 4; |
|
const float16x4_t va2 = vreinterpret_f16_u16(vld1_u16(a2)); a2 += 4; |
|
const float16x4_t va3 = vreinterpret_f16_u16(vld1_u16(a3)); a3 += 4; |
|
const float16x4_t va4 = vreinterpret_f16_u16(vld1_u16(a4)); a4 += 4; |
|
const float16x4_t va5 = vreinterpret_f16_u16(vld1_u16(a5)); a5 += 4; |
|
|
|
const float16x8_t vb01234567c0 = vreinterpretq_f16_u16(vld1q_u16(w)); w = (const void*) ((uintptr_t) w + sizeof(float16x8_t)); |
|
|
|
#if XNN_ARCH_ARM64 |
|
vacc0x01234567 = vfmaq_lane_f16(vacc0x01234567, vb01234567c0, va0, 0); |
|
vacc1x01234567 = vfmaq_lane_f16(vacc1x01234567, vb01234567c0, va1, 0); |
|
vacc2x01234567 = vfmaq_lane_f16(vacc2x01234567, vb01234567c0, va2, 0); |
|
vacc3x01234567 = vfmaq_lane_f16(vacc3x01234567, vb01234567c0, va3, 0); |
|
vacc4x01234567 = vfmaq_lane_f16(vacc4x01234567, vb01234567c0, va4, 0); |
|
vacc5x01234567 = vfmaq_lane_f16(vacc5x01234567, vb01234567c0, va5, 0); |
|
#else |
|
vacc0x01234567 = vmlaq_lane_f16(vacc0x01234567, vb01234567c0, va0, 0); |
|
vacc1x01234567 = vmlaq_lane_f16(vacc1x01234567, vb01234567c0, va1, 0); |
|
vacc2x01234567 = vmlaq_lane_f16(vacc2x01234567, vb01234567c0, va2, 0); |
|
vacc3x01234567 = vmlaq_lane_f16(vacc3x01234567, vb01234567c0, va3, 0); |
|
vacc4x01234567 = vmlaq_lane_f16(vacc4x01234567, vb01234567c0, va4, 0); |
|
vacc5x01234567 = vmlaq_lane_f16(vacc5x01234567, vb01234567c0, va5, 0); |
|
#endif |
|
const float16x8_t vb01234567c1 = vreinterpretq_f16_u16(vld1q_u16(w)); w = (const void*) ((uintptr_t) w + sizeof(float16x8_t)); |
|
|
|
#if XNN_ARCH_ARM64 |
|
vacc0x01234567 = vfmaq_lane_f16(vacc0x01234567, vb01234567c1, va0, 1); |
|
vacc1x01234567 = vfmaq_lane_f16(vacc1x01234567, vb01234567c1, va1, 1); |
|
vacc2x01234567 = vfmaq_lane_f16(vacc2x01234567, vb01234567c1, va2, 1); |
|
vacc3x01234567 = vfmaq_lane_f16(vacc3x01234567, vb01234567c1, va3, 1); |
|
vacc4x01234567 = vfmaq_lane_f16(vacc4x01234567, vb01234567c1, va4, 1); |
|
vacc5x01234567 = vfmaq_lane_f16(vacc5x01234567, vb01234567c1, va5, 1); |
|
#else |
|
vacc0x01234567 = vmlaq_lane_f16(vacc0x01234567, vb01234567c1, va0, 1); |
|
vacc1x01234567 = vmlaq_lane_f16(vacc1x01234567, vb01234567c1, va1, 1); |
|
vacc2x01234567 = vmlaq_lane_f16(vacc2x01234567, vb01234567c1, va2, 1); |
|
vacc3x01234567 = vmlaq_lane_f16(vacc3x01234567, vb01234567c1, va3, 1); |
|
vacc4x01234567 = vmlaq_lane_f16(vacc4x01234567, vb01234567c1, va4, 1); |
|
vacc5x01234567 = vmlaq_lane_f16(vacc5x01234567, vb01234567c1, va5, 1); |
|
#endif |
|
const float16x8_t vb01234567c2 = vreinterpretq_f16_u16(vld1q_u16(w)); w = (const void*) ((uintptr_t) w + sizeof(float16x8_t)); |
|
|
|
#if XNN_ARCH_ARM64 |
|
vacc0x01234567 = vfmaq_lane_f16(vacc0x01234567, vb01234567c2, va0, 2); |
|
vacc1x01234567 = vfmaq_lane_f16(vacc1x01234567, vb01234567c2, va1, 2); |
|
vacc2x01234567 = vfmaq_lane_f16(vacc2x01234567, vb01234567c2, va2, 2); |
|
vacc3x01234567 = vfmaq_lane_f16(vacc3x01234567, vb01234567c2, va3, 2); |
|
vacc4x01234567 = vfmaq_lane_f16(vacc4x01234567, vb01234567c2, va4, 2); |
|
vacc5x01234567 = vfmaq_lane_f16(vacc5x01234567, vb01234567c2, va5, 2); |
|
#else |
|
vacc0x01234567 = vmlaq_lane_f16(vacc0x01234567, vb01234567c2, va0, 2); |
|
vacc1x01234567 = vmlaq_lane_f16(vacc1x01234567, vb01234567c2, va1, 2); |
|
vacc2x01234567 = vmlaq_lane_f16(vacc2x01234567, vb01234567c2, va2, 2); |
|
vacc3x01234567 = vmlaq_lane_f16(vacc3x01234567, vb01234567c2, va3, 2); |
|
vacc4x01234567 = vmlaq_lane_f16(vacc4x01234567, vb01234567c2, va4, 2); |
|
vacc5x01234567 = vmlaq_lane_f16(vacc5x01234567, vb01234567c2, va5, 2); |
|
#endif |
|
const float16x8_t vb01234567c3 = vreinterpretq_f16_u16(vld1q_u16(w)); w = (const void*) ((uintptr_t) w + sizeof(float16x8_t)); |
|
|
|
#if XNN_ARCH_ARM64 |
|
vacc0x01234567 = vfmaq_lane_f16(vacc0x01234567, vb01234567c3, va0, 3); |
|
vacc1x01234567 = vfmaq_lane_f16(vacc1x01234567, vb01234567c3, va1, 3); |
|
vacc2x01234567 = vfmaq_lane_f16(vacc2x01234567, vb01234567c3, va2, 3); |
|
vacc3x01234567 = vfmaq_lane_f16(vacc3x01234567, vb01234567c3, va3, 3); |
|
vacc4x01234567 = vfmaq_lane_f16(vacc4x01234567, vb01234567c3, va4, 3); |
|
vacc5x01234567 = vfmaq_lane_f16(vacc5x01234567, vb01234567c3, va5, 3); |
|
#else |
|
vacc0x01234567 = vmlaq_lane_f16(vacc0x01234567, vb01234567c3, va0, 3); |
|
vacc1x01234567 = vmlaq_lane_f16(vacc1x01234567, vb01234567c3, va1, 3); |
|
vacc2x01234567 = vmlaq_lane_f16(vacc2x01234567, vb01234567c3, va2, 3); |
|
vacc3x01234567 = vmlaq_lane_f16(vacc3x01234567, vb01234567c3, va3, 3); |
|
vacc4x01234567 = vmlaq_lane_f16(vacc4x01234567, vb01234567c3, va4, 3); |
|
vacc5x01234567 = vmlaq_lane_f16(vacc5x01234567, vb01234567c3, va5, 3); |
|
#endif |
|
|
|
k -= 4 * sizeof(uint16_t); |
|
} |
|
if XNN_UNLIKELY(k != 0) { |
|
do { |
|
const float16x8_t va0 = vreinterpretq_f16_u16(vld1q_dup_u16(a0)); a0 += 1; |
|
const float16x8_t va1 = vreinterpretq_f16_u16(vld1q_dup_u16(a1)); a1 += 1; |
|
const float16x8_t va2 = vreinterpretq_f16_u16(vld1q_dup_u16(a2)); a2 += 1; |
|
const float16x8_t va3 = vreinterpretq_f16_u16(vld1q_dup_u16(a3)); a3 += 1; |
|
const float16x8_t va4 = vreinterpretq_f16_u16(vld1q_dup_u16(a4)); a4 += 1; |
|
const float16x8_t va5 = vreinterpretq_f16_u16(vld1q_dup_u16(a5)); a5 += 1; |
|
|
|
const float16x8_t vb01234567 = vreinterpretq_f16_u16(vld1q_u16(w)); w = (const void*) ((uintptr_t) w + sizeof(float16x8_t)); |
|
|
|
vacc0x01234567 = vfmaq_f16(vacc0x01234567, va0, vb01234567); |
|
vacc1x01234567 = vfmaq_f16(vacc1x01234567, va1, vb01234567); |
|
vacc2x01234567 = vfmaq_f16(vacc2x01234567, va2, vb01234567); |
|
vacc3x01234567 = vfmaq_f16(vacc3x01234567, va3, vb01234567); |
|
vacc4x01234567 = vfmaq_f16(vacc4x01234567, va4, vb01234567); |
|
vacc5x01234567 = vfmaq_f16(vacc5x01234567, va5, vb01234567); |
|
|
|
k -= sizeof(uint16_t); |
|
} while (k != 0); |
|
} |
|
|
|
|
|
const float16x8_t vmin = vreinterpretq_f16_u16(vld1q_dup_u16(¶ms->fp16arith.min)); |
|
vacc0x01234567 = vmaxq_f16(vacc0x01234567, vmin); |
|
vacc1x01234567 = vmaxq_f16(vacc1x01234567, vmin); |
|
vacc2x01234567 = vmaxq_f16(vacc2x01234567, vmin); |
|
vacc3x01234567 = vmaxq_f16(vacc3x01234567, vmin); |
|
vacc4x01234567 = vmaxq_f16(vacc4x01234567, vmin); |
|
vacc5x01234567 = vmaxq_f16(vacc5x01234567, vmin); |
|
|
|
const float16x8_t vmax = vreinterpretq_f16_u16(vld1q_dup_u16(¶ms->fp16arith.max)); |
|
vacc0x01234567 = vminq_f16(vacc0x01234567, vmax); |
|
vacc1x01234567 = vminq_f16(vacc1x01234567, vmax); |
|
vacc2x01234567 = vminq_f16(vacc2x01234567, vmax); |
|
vacc3x01234567 = vminq_f16(vacc3x01234567, vmax); |
|
vacc4x01234567 = vminq_f16(vacc4x01234567, vmax); |
|
vacc5x01234567 = vminq_f16(vacc5x01234567, vmax); |
|
|
|
if XNN_LIKELY(nc >= 8) { |
|
vst1q_u16(c0, vreinterpretq_u16_f16(vacc0x01234567)); |
|
c0 = (uint16_t*) ((uintptr_t) c0 + cn_stride); |
|
vst1q_u16(c1, vreinterpretq_u16_f16(vacc1x01234567)); |
|
c1 = (uint16_t*) ((uintptr_t) c1 + cn_stride); |
|
vst1q_u16(c2, vreinterpretq_u16_f16(vacc2x01234567)); |
|
c2 = (uint16_t*) ((uintptr_t) c2 + cn_stride); |
|
vst1q_u16(c3, vreinterpretq_u16_f16(vacc3x01234567)); |
|
c3 = (uint16_t*) ((uintptr_t) c3 + cn_stride); |
|
vst1q_u16(c4, vreinterpretq_u16_f16(vacc4x01234567)); |
|
c4 = (uint16_t*) ((uintptr_t) c4 + cn_stride); |
|
vst1q_u16(c5, vreinterpretq_u16_f16(vacc5x01234567)); |
|
c5 = (uint16_t*) ((uintptr_t) c5 + cn_stride); |
|
|
|
a0 = (const uint16_t*) ((uintptr_t) a0 - kc); |
|
a1 = (const uint16_t*) ((uintptr_t) a1 - kc); |
|
a2 = (const uint16_t*) ((uintptr_t) a2 - kc); |
|
a3 = (const uint16_t*) ((uintptr_t) a3 - kc); |
|
a4 = (const uint16_t*) ((uintptr_t) a4 - kc); |
|
a5 = (const uint16_t*) ((uintptr_t) a5 - kc); |
|
|
|
nc -= 8; |
|
} else { |
|
float16x4_t vacc0x0123 = vget_low_f16(vacc0x01234567); |
|
float16x4_t vacc1x0123 = vget_low_f16(vacc1x01234567); |
|
float16x4_t vacc2x0123 = vget_low_f16(vacc2x01234567); |
|
float16x4_t vacc3x0123 = vget_low_f16(vacc3x01234567); |
|
float16x4_t vacc4x0123 = vget_low_f16(vacc4x01234567); |
|
float16x4_t vacc5x0123 = vget_low_f16(vacc5x01234567); |
|
if (nc & 4) { |
|
vst1_u16(c0, vreinterpret_u16_f16(vacc0x0123)); c0 += 4; |
|
vst1_u16(c1, vreinterpret_u16_f16(vacc1x0123)); c1 += 4; |
|
vst1_u16(c2, vreinterpret_u16_f16(vacc2x0123)); c2 += 4; |
|
vst1_u16(c3, vreinterpret_u16_f16(vacc3x0123)); c3 += 4; |
|
vst1_u16(c4, vreinterpret_u16_f16(vacc4x0123)); c4 += 4; |
|
vst1_u16(c5, vreinterpret_u16_f16(vacc5x0123)); c5 += 4; |
|
|
|
vacc0x0123 = vget_high_f16(vacc0x01234567); |
|
vacc1x0123 = vget_high_f16(vacc1x01234567); |
|
vacc2x0123 = vget_high_f16(vacc2x01234567); |
|
vacc3x0123 = vget_high_f16(vacc3x01234567); |
|
vacc4x0123 = vget_high_f16(vacc4x01234567); |
|
vacc5x0123 = vget_high_f16(vacc5x01234567); |
|
} |
|
if (nc & 2) { |
|
vst1_lane_u32((void*) c0, vreinterpret_u32_f16(vacc0x0123), 0); c0 += 2; |
|
vst1_lane_u32((void*) c1, vreinterpret_u32_f16(vacc1x0123), 0); c1 += 2; |
|
vst1_lane_u32((void*) c2, vreinterpret_u32_f16(vacc2x0123), 0); c2 += 2; |
|
vst1_lane_u32((void*) c3, vreinterpret_u32_f16(vacc3x0123), 0); c3 += 2; |
|
vst1_lane_u32((void*) c4, vreinterpret_u32_f16(vacc4x0123), 0); c4 += 2; |
|
vst1_lane_u32((void*) c5, vreinterpret_u32_f16(vacc5x0123), 0); c5 += 2; |
|
|
|
vacc0x0123 = vext_f16(vacc0x0123, vacc0x0123, 2); |
|
vacc1x0123 = vext_f16(vacc1x0123, vacc1x0123, 2); |
|
vacc2x0123 = vext_f16(vacc2x0123, vacc2x0123, 2); |
|
vacc3x0123 = vext_f16(vacc3x0123, vacc3x0123, 2); |
|
vacc4x0123 = vext_f16(vacc4x0123, vacc4x0123, 2); |
|
vacc5x0123 = vext_f16(vacc5x0123, vacc5x0123, 2); |
|
} |
|
if (nc & 1) { |
|
vst1_lane_u16(c0, vreinterpret_u16_f16(vacc0x0123), 0); |
|
vst1_lane_u16(c1, vreinterpret_u16_f16(vacc1x0123), 0); |
|
vst1_lane_u16(c2, vreinterpret_u16_f16(vacc2x0123), 0); |
|
vst1_lane_u16(c3, vreinterpret_u16_f16(vacc3x0123), 0); |
|
vst1_lane_u16(c4, vreinterpret_u16_f16(vacc4x0123), 0); |
|
vst1_lane_u16(c5, vreinterpret_u16_f16(vacc5x0123), 0); |
|
} |
|
|
|
nc = 0; |
|
} |
|
} while (nc != 0); |
|
} |
|
|