// Auto-generated file. Do not edit! // Template: src/f32-hswish/neon.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 #include #include #include void xnn_f32_hswish_ukernel__neonfma_x8( size_t n, const float* x, float* y, const union xnn_f32_hswish_params params[restrict static 1]) { assert(n != 0); assert(n % sizeof(float) == 0); const float32x4_t vsixth = vld1q_dup_f32(¶ms->scalar.sixth); const float32x4_t vhalf = vld1q_dup_f32(¶ms->scalar.half); const float32x4_t vone = vld1q_dup_f32(¶ms->scalar.one); const float32x4_t vzero = vdupq_n_f32(0.0f); for (; n >= 8 * sizeof(float); n -= 8 * sizeof(float)) { const float32x4_t vx0123 = vld1q_f32(x); x += 4; const float32x4_t vx4567 = vld1q_f32(x); x += 4; float32x4_t vacc0123 = vfmaq_f32(vhalf, vx0123, vsixth); float32x4_t vacc4567 = vfmaq_f32(vhalf, vx4567, vsixth); vacc0123 = vmaxq_f32(vacc0123, vzero); vacc4567 = vmaxq_f32(vacc4567, vzero); vacc0123 = vminq_f32(vacc0123, vone); vacc4567 = vminq_f32(vacc4567, vone); vacc0123 = vmulq_f32(vacc0123, vx0123); vacc4567 = vmulq_f32(vacc4567, vx4567); vst1q_f32(y, vacc0123); y += 4; vst1q_f32(y, vacc4567); y += 4; } for (; n >= 4 * sizeof(float); n -= 4 * sizeof(float)) { const float32x4_t vx0123 = vld1q_f32(x); x += 4; float32x4_t vacc0123 = vfmaq_f32(vhalf, vx0123, vsixth); vacc0123 = vmaxq_f32(vacc0123, vzero); vacc0123 = vminq_f32(vacc0123, vone); vacc0123 = vmulq_f32(vacc0123, vx0123); vst1q_f32(y, vacc0123); y += 4; } if XNN_UNLIKELY(n != 0) { const float32x4_t vx0123 = vld1q_f32(x); float32x4_t vacc0123 = vfmaq_f32(vhalf, vx0123, vsixth); vacc0123 = vmaxq_f32(vacc0123, vzero); vacc0123 = vminq_f32(vacc0123, vone); vacc0123 = vmulq_f32(vacc0123, vx0123); float32x2_t vacc01 = vget_low_f32(vacc0123); if (n & (2 * sizeof(float))) { vst1_f32(y, vacc01); y += 2; vacc01 = vget_high_f32(vacc0123); } if (n & (1 * sizeof(float))) { vst1_lane_f32(y, vacc01, 0); } } }