blob: f0cd23d3d0c41a7eb7edda50eb7214cc2536354c [file] [log] [blame]
// Auto-generated file. Do not edit!
// Template: src/f32-velu/scalar-rr2-lut16-p3.c.in
// Generator: tools/xngen
//
// Copyright 2020 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 <math.h>
#include <xnnpack/common.h>
#include <xnnpack/vunary.h>
#include <fp16/bitcasts.h>
extern XNN_INTERNAL const uint32_t xnn_table_exp2minus_k_over_16[16];
void xnn_f32_velu_ukernel__scalar_rr2_lut16_p3_x5(
size_t n,
const float* x,
float* y,
const union xnn_f32_elu_params params[restrict XNN_MIN_ELEMENTS(1)])
{
assert(n % sizeof(float) == 0);
const float vprescale = params->scalar_rr2_lut16_p3.prescale;
const float valpha = params->scalar_rr2_lut16_p3.alpha;
const float vbeta = params->scalar_rr2_lut16_p3.beta;
const float vmagic_bias = params->scalar_rr2_lut16_p3.magic_bias;
const float vlog2e = params->scalar_rr2_lut16_p3.log2e;
const uint32_t vindex_mask = UINT32_C(0xF);
const float vsat_cutoff = params->scalar_rr2_lut16_p3.sat_cutoff;
const float vminus_ln2_hi = params->scalar_rr2_lut16_p3.minus_ln2_hi;
const float vminus_ln2_lo = params->scalar_rr2_lut16_p3.minus_ln2_lo;
const float vc3 = params->scalar_rr2_lut16_p3.c3;
const float vc2 = params->scalar_rr2_lut16_p3.c2;
const float vone = params->scalar_rr2_lut16_p3.one;
for (; n >= 5 * sizeof(float); n -= 5 * sizeof(float)) {
float vx0 = x[0];
float vx1 = x[1];
float vx2 = x[2];
float vx3 = x[3];
float vx4 = x[4];
x += 5;
const float vz0 = vx0 * vprescale;
const float vz1 = vx1 * vprescale;
const float vz2 = vx2 * vprescale;
const float vz3 = vx3 * vprescale;
const float vz4 = vx4 * vprescale;
float vn0 = vz0 * vlog2e + vmagic_bias;
float vn1 = vz1 * vlog2e + vmagic_bias;
float vn2 = vz2 * vlog2e + vmagic_bias;
float vn3 = vz3 * vlog2e + vmagic_bias;
float vn4 = vz4 * vlog2e + vmagic_bias;
const uint32_t ven0 = fp32_to_bits(vn0) << 19;
const uint32_t vidx0 = fp32_to_bits(vn0) & vindex_mask;
vn0 -= vmagic_bias;
const uint32_t ven1 = fp32_to_bits(vn1) << 19;
const uint32_t vidx1 = fp32_to_bits(vn1) & vindex_mask;
vn1 -= vmagic_bias;
const uint32_t ven2 = fp32_to_bits(vn2) << 19;
const uint32_t vidx2 = fp32_to_bits(vn2) & vindex_mask;
vn2 -= vmagic_bias;
const uint32_t ven3 = fp32_to_bits(vn3) << 19;
const uint32_t vidx3 = fp32_to_bits(vn3) & vindex_mask;
vn3 -= vmagic_bias;
const uint32_t ven4 = fp32_to_bits(vn4) << 19;
const uint32_t vidx4 = fp32_to_bits(vn4) & vindex_mask;
vn4 -= vmagic_bias;
float vt0 = vn0 * vminus_ln2_hi + vz0;
float vs0 = fp32_from_bits(xnn_table_exp2minus_k_over_16[vidx0] + ven0);
float vt1 = vn1 * vminus_ln2_hi + vz1;
float vs1 = fp32_from_bits(xnn_table_exp2minus_k_over_16[vidx1] + ven1);
float vt2 = vn2 * vminus_ln2_hi + vz2;
float vs2 = fp32_from_bits(xnn_table_exp2minus_k_over_16[vidx2] + ven2);
float vt3 = vn3 * vminus_ln2_hi + vz3;
float vs3 = fp32_from_bits(xnn_table_exp2minus_k_over_16[vidx3] + ven3);
float vt4 = vn4 * vminus_ln2_hi + vz4;
float vs4 = fp32_from_bits(xnn_table_exp2minus_k_over_16[vidx4] + ven4);
vt0 = vn0 * vminus_ln2_lo + vt0;
if XNN_UNPREDICTABLE(vz0 <= vsat_cutoff) {
vs0 = 0.0f;
vt0 = 0.0f;
}
vt1 = vn1 * vminus_ln2_lo + vt1;
if XNN_UNPREDICTABLE(vz1 <= vsat_cutoff) {
vs1 = 0.0f;
vt1 = 0.0f;
}
vt2 = vn2 * vminus_ln2_lo + vt2;
if XNN_UNPREDICTABLE(vz2 <= vsat_cutoff) {
vs2 = 0.0f;
vt2 = 0.0f;
}
vt3 = vn3 * vminus_ln2_lo + vt3;
if XNN_UNPREDICTABLE(vz3 <= vsat_cutoff) {
vs3 = 0.0f;
vt3 = 0.0f;
}
vt4 = vn4 * vminus_ln2_lo + vt4;
if XNN_UNPREDICTABLE(vz4 <= vsat_cutoff) {
vs4 = 0.0f;
vt4 = 0.0f;
}
float vp0 = vc3 * vt0 + vc2;
float vp1 = vc3 * vt1 + vc2;
float vp2 = vc3 * vt2 + vc2;
float vp3 = vc3 * vt3 + vc2;
float vp4 = vc3 * vt4 + vc2;
vp0 *= vt0;
vp1 *= vt1;
vp2 *= vt2;
vp3 *= vt3;
vp4 *= vt4;
vt0 *= vs0;
vs0 -= vone;
vt1 *= vs1;
vs1 -= vone;
vt2 *= vs2;
vs2 -= vone;
vt3 *= vs3;
vs3 -= vone;
vt4 *= vs4;
vs4 -= vone;
vp0 = vp0 * vt0 + vt0;
vp1 = vp1 * vt1 + vt1;
vp2 = vp2 * vt2 + vt2;
vp3 = vp3 * vt3 + vt3;
vp4 = vp4 * vt4 + vt4;
const float ve0 = (vp0 + vs0) * valpha;
float vy0 = vx0 * vbeta;
const float ve1 = (vp1 + vs1) * valpha;
float vy1 = vx1 * vbeta;
const float ve2 = (vp2 + vs2) * valpha;
float vy2 = vx2 * vbeta;
const float ve3 = (vp3 + vs3) * valpha;
float vy3 = vx3 * vbeta;
const float ve4 = (vp4 + vs4) * valpha;
float vy4 = vx4 * vbeta;
if XNN_UNPREDICTABLE(vx0 < 0.0f) {
vy0 = ve0;
}
if XNN_UNPREDICTABLE(vx1 < 0.0f) {
vy1 = ve1;
}
if XNN_UNPREDICTABLE(vx2 < 0.0f) {
vy2 = ve2;
}
if XNN_UNPREDICTABLE(vx3 < 0.0f) {
vy3 = ve3;
}
if XNN_UNPREDICTABLE(vx4 < 0.0f) {
vy4 = ve4;
}
y[0] = vy0;
y[1] = vy1;
y[2] = vy2;
y[3] = vy3;
y[4] = vy4;
y += 5;
}
if XNN_UNLIKELY(n != 0) {
do {
float vx = *x++;
const float vz = vx * vprescale;
float vn = vz * vlog2e + vmagic_bias;
const uint32_t ven = fp32_to_bits(vn) << 19;
const uint32_t vidx = fp32_to_bits(vn) & vindex_mask;
vn -= vmagic_bias;
float vt = vn * vminus_ln2_hi + vz;
float vs = fp32_from_bits(xnn_table_exp2minus_k_over_16[vidx] + ven);
vt = vn * vminus_ln2_lo + vt;
if XNN_UNPREDICTABLE(vz <= vsat_cutoff) {
vs = 0.0f;
vt = 0.0f;
}
float vp = vc3 * vt + vc2;
vp *= vt;
vt *= vs;
vs -= vone;
vp = vp * vt + vt;
const float ve = (vp + vs) * valpha;
float vy = vx * vbeta;
if XNN_UNPREDICTABLE(vx < 0.0f) {
vy = ve;
}
*y++ = vy;
n -= sizeof(float);
} while (n != 0);
}
}