blob: ed9b54f236f1607b261aeb44fc2e6f572b09af2a [file] [log] [blame]
// Copyright 2022 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 BATCH_TILE % 8 == 0
$assert BATCH_TILE >= 8
$SIMD_TILE = BATCH_TILE // 8
$assert DIV_ALGO in ["div", "recpe"]
$ABC = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
#include <assert.h>
#include <arm_neon.h>
#include <xnnpack/common.h>
#include <xnnpack/vunary.h>
void xnn_f16_vsigmoid_ukernel__neonfp16arith_rr1_p3_${DIV_ALGO}_x${BATCH_TILE}(
size_t batch,
const void* input,
void* output,
const union xnn_f16_sigmoid_params params[restrict XNN_MIN_ELEMENTS(1)]) XNN_OOB_READS
{
assert(batch % sizeof(__fp16) == 0);
const float16x8_t vmagic_bias = vreinterpretq_f16_u16(vld1q_dup_u16(&params->neonfp16arith_rr1_p3.magic_bias));
const float16x8_t vminus_log2e = vreinterpretq_f16_u16(vld1q_dup_u16(&params->neonfp16arith_rr1_p3.minus_log2e));
const float16x8_t vln2 = vreinterpretq_f16_u16(vld1q_dup_u16(&params->neonfp16arith_rr1_p3.ln2));
const float16x8_t vc3 = vreinterpretq_f16_u16(vld1q_dup_u16(&params->neonfp16arith_rr1_p3.c3));
const float16x8_t vc2 = vreinterpretq_f16_u16(vld1q_dup_u16(&params->neonfp16arith_rr1_p3.c2));
const float16x8_t vone = vmovq_n_f16(1.0f);
const float16x8_t vdenorm_cutoff = vreinterpretq_f16_u16(vld1q_dup_u16(&params->neonfp16arith_rr1_p3.denorm_cutoff));
const __fp16* i = (const __fp16*) input;
__fp16* o = (__fp16*) output;
$if BATCH_TILE > 8:
for (; batch >= ${BATCH_TILE} * sizeof(__fp16); batch -= ${BATCH_TILE} * sizeof(__fp16)) {
$for N in range(SIMD_TILE):
const float16x8_t vx${ABC[N]} = vld1q_f16(i); i += 8;
$for N in range(SIMD_TILE):
const float16x8_t vz${ABC[N]} = vabsq_f16(vx${ABC[N]});
$for N in range(SIMD_TILE):
float16x8_t vn${ABC[N]} = vfmaq_f16(vmagic_bias, vz${ABC[N]}, vminus_log2e);
$for N in range(SIMD_TILE):
const float16x8_t vs${ABC[N]} = vreinterpretq_f16_s16(vshlq_n_s16(vreinterpretq_s16_f16(vn${ABC[N]}), 10));
$for N in range(SIMD_TILE):
vn${ABC[N]} = vsubq_f16(vn${ABC[N]}, vmagic_bias);
$for N in range(SIMD_TILE):
float16x8_t vt${ABC[N]} = vfmaq_f16(vz${ABC[N]}, vn${ABC[N]}, vln2);
$for N in range(SIMD_TILE):
float16x8_t vp${ABC[N]} = vfmaq_f16(vc2, vc3, vt${ABC[N]});
$for N in range(SIMD_TILE):
vp${ABC[N]} = vfmsq_f16(vone, vp${ABC[N]}, vt${ABC[N]});
$for N in range(SIMD_TILE):
vt${ABC[N]} = vmulq_f16(vt${ABC[N]}, vs${ABC[N]});
$for N in range(SIMD_TILE):
const float16x8_t ve${ABC[N]} = vfmsq_f16(vs${ABC[N]}, vp${ABC[N]}, vt${ABC[N]});
$for N in range(SIMD_TILE):
const float16x8_t vd${ABC[N]} = vaddq_f16(ve${ABC[N]}, vone);
$if DIV_ALGO == "div":
$for N in range(SIMD_TILE):
float16x8_t vf${ABC[N]} = vdivq_f16(ve${ABC[N]}, vd${ABC[N]});
$else:
$for N in range(SIMD_TILE):
float16x8_t vr${ABC[N]} = vrecpeq_f16(vd${ABC[N]});
$for N in range(SIMD_TILE):
float16x8_t vf${ABC[N]} = vmulq_f16(ve${ABC[N]}, vr${ABC[N]});
$for N in range(SIMD_TILE):
vf${ABC[N]} = vreinterpretq_f16_u16(vbicq_u16(vreinterpretq_u16_f16(vf${ABC[N]}), vcagtq_f16(vx${ABC[N]}, vdenorm_cutoff)));
$for N in range(SIMD_TILE):
const uint16x8_t vm${ABC[N]} = vcltq_f16(vx${ABC[N]}, vmovq_n_f16(0.0f));
$for N in range(SIMD_TILE):
vf${ABC[N]} = vbslq_f16(vm${ABC[N]}, vf${ABC[N]}, vsubq_f16(vone, vf${ABC[N]}));
$for N in range(SIMD_TILE):
vst1q_f16(o, vf${ABC[N]}); o += 8;
}
for (; batch >= 8 * sizeof(__fp16); batch -= 8 * sizeof(__fp16)) {
const float16x8_t vx = vld1q_f16(i); i += 8;
const float16x8_t vz = vabsq_f16(vx);
float16x8_t vn = vfmaq_f16(vmagic_bias, vz, vminus_log2e);
const float16x8_t vs = vreinterpretq_f16_s16(vshlq_n_s16(vreinterpretq_s16_f16(vn), 10));
vn = vsubq_f16(vn, vmagic_bias);
float16x8_t vt = vfmaq_f16(vz, vn, vln2);
float16x8_t vp = vfmaq_f16(vc2, vc3, vt);
vp = vfmsq_f16(vone, vp, vt);
vt = vmulq_f16(vt, vs);
const float16x8_t ve = vfmsq_f16(vs, vp, vt);
const float16x8_t vd = vaddq_f16(ve, vone);
$if DIV_ALGO == "div":
float16x8_t vf = vdivq_f16(ve, vd);
$else:
const float16x8_t vr = vrecpeq_f16(vd);
float16x8_t vf = vmulq_f16(ve, vr);
vf = vreinterpretq_f16_u16(vbicq_u16(vreinterpretq_u16_f16(vf), vcagtq_f16(vx, vdenorm_cutoff)));
const uint16x8_t vm = vcltq_f16(vx, vmovq_n_f16(0.0f));
vf = vbslq_f16(vm, vf, vsubq_f16(vone, vf));
vst1q_f16(o, vf); o += 8;
}
if XNN_UNLIKELY(batch != 0) {
const float16x8_t vx = vld1q_f16(i);
const float16x8_t vz = vabsq_f16(vx);
float16x8_t vn = vfmaq_f16(vmagic_bias, vz, vminus_log2e);
const float16x8_t vs = vreinterpretq_f16_s16(vshlq_n_s16(vreinterpretq_s16_f16(vn), 10));
vn = vsubq_f16(vn, vmagic_bias);
float16x8_t vt = vfmaq_f16(vz, vn, vln2);
float16x8_t vp = vfmaq_f16(vc2, vc3, vt);
vp = vfmsq_f16(vone, vp, vt);
vt = vmulq_f16(vt, vs);
const float16x8_t ve = vfmsq_f16(vs, vp, vt);
const float16x8_t vd = vaddq_f16(ve, vone);
$if DIV_ALGO == "div":
float16x8_t vf = vdivq_f16(ve, vd);
$else:
const float16x8_t vr = vrecpeq_f16(vd);
float16x8_t vf = vmulq_f16(ve, vr);
vf = vreinterpretq_f16_u16(vbicq_u16(vreinterpretq_u16_f16(vf), vcagtq_f16(vx, vdenorm_cutoff)));
const uint16x8_t vm = vcltq_f16(vx, vmovq_n_f16(0.0f));
vf = vbslq_f16(vm, vf, vsubq_f16(vone, vf));
float16x4_t vf_lo = vget_low_f16(vf);
if (batch & (4 * sizeof(__fp16))) {
vst1_f16(o, vf_lo); o += 4;
vf_lo = vget_high_f16(vf);
}
if (batch & (2 * sizeof(__fp16))) {
vst1_f16(o, vf_lo); o += 2;
vf_lo = vext_f16(vf_lo, vf_lo, 2);
}
if (batch & (1 * sizeof(__fp16))) {
vst1_lane_f16(o, vf_lo, 0);
}
}
}