// Auto-generated file. Do not edit! // Template: src/f32-qs8-vcvt/neon.c.in // Generator: tools/xngen // // Copyright 2021 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 "xnnpack/common.h" #include "xnnpack/intrinsics-polyfill.h" #include "xnnpack/vcvt.h" void xnn_f32_qs8_vcvt_ukernel__neon_u24( size_t batch, const float* input, int8_t* output, const struct xnn_f32_qs8_cvt_params params[restrict XNN_MIN_ELEMENTS(1)]) XNN_OOB_READS { assert(batch != 0); assert(batch % sizeof(float) == 0); assert(input != NULL); assert(output != NULL); const float32x4_t vscale = vld1q_dup_f32(¶ms->scalar.scale); const float32x4_t vmagic_bias = vdupq_n_f32(12582912.0f); const int32x4_t vmagic_bias_less_zero_point = vdupq_n_s32(INT32_C(0x4B400000) - (int32_t) params->scalar.output_zero_point); XNN_FORCE_REALIZATION(vmagic_bias); for (; batch >= 24 * sizeof(float); batch -= 24 * sizeof(float)) { float32x4_t vx0123 = vld1q_f32(input); input += 4; float32x4_t vx4567 = vld1q_f32(input); input += 4; float32x4_t vx89AB = vld1q_f32(input); input += 4; float32x4_t vxCDEF = vld1q_f32(input); input += 4; float32x4_t vxGHIJ = vld1q_f32(input); input += 4; float32x4_t vxKLMN = vld1q_f32(input); input += 4; vx0123 = vmulq_f32(vx0123, vscale); vx4567 = vmulq_f32(vx4567, vscale); vx89AB = vmulq_f32(vx89AB, vscale); vxCDEF = vmulq_f32(vxCDEF, vscale); vxGHIJ = vmulq_f32(vxGHIJ, vscale); vxKLMN = vmulq_f32(vxKLMN, vscale); vx0123 = vaddq_f32(vx0123, vmagic_bias); vx4567 = vaddq_f32(vx4567, vmagic_bias); vx89AB = vaddq_f32(vx89AB, vmagic_bias); vxCDEF = vaddq_f32(vxCDEF, vmagic_bias); vxGHIJ = vaddq_f32(vxGHIJ, vmagic_bias); vxKLMN = vaddq_f32(vxKLMN, vmagic_bias); const int32x4_t vacc0123 = vqsubq_s32(vreinterpretq_s32_f32(vx0123), vmagic_bias_less_zero_point); const int32x4_t vacc4567 = vqsubq_s32(vreinterpretq_s32_f32(vx4567), vmagic_bias_less_zero_point); const int32x4_t vacc89AB = vqsubq_s32(vreinterpretq_s32_f32(vx89AB), vmagic_bias_less_zero_point); const int32x4_t vaccCDEF = vqsubq_s32(vreinterpretq_s32_f32(vxCDEF), vmagic_bias_less_zero_point); const int32x4_t vaccGHIJ = vqsubq_s32(vreinterpretq_s32_f32(vxGHIJ), vmagic_bias_less_zero_point); const int32x4_t vaccKLMN = vqsubq_s32(vreinterpretq_s32_f32(vxKLMN), vmagic_bias_less_zero_point); const int16x8_t vacc01234567 = vcombine_s16(vqmovn_s32(vacc0123), vqmovn_s32(vacc4567)); const int16x8_t vacc89ABCDEF = vcombine_s16(vqmovn_s32(vacc89AB), vqmovn_s32(vaccCDEF)); const int16x8_t vaccGHIJKLMN = vcombine_s16(vqmovn_s32(vaccGHIJ), vqmovn_s32(vaccKLMN)); int8x16_t vy0123456789ABCDEF = vcombine_s8(vqmovn_s16(vacc01234567), vqmovn_s16(vacc89ABCDEF)); int8x8_t vyGHIJKLMN = vqmovn_s16(vaccGHIJKLMN); vst1q_s8(output, vy0123456789ABCDEF); output += 16; vst1_s8(output, vyGHIJKLMN); output += 8; } for (; batch >= 8 * sizeof(float); batch -= 8 * sizeof(float)) { float32x4_t vx_lo = vld1q_f32(input); input += 4; float32x4_t vx_hi = vld1q_f32(input); input += 4; vx_lo = vmulq_f32(vx_lo, vscale); vx_hi = vmulq_f32(vx_hi, vscale); vx_lo = vaddq_f32(vx_lo, vmagic_bias); vx_hi = vaddq_f32(vx_hi, vmagic_bias); const int32x4_t vacc_lo = vqsubq_s32(vreinterpretq_s32_f32(vx_lo), vmagic_bias_less_zero_point); const int32x4_t vacc_hi = vqsubq_s32(vreinterpretq_s32_f32(vx_hi), vmagic_bias_less_zero_point); const int16x8_t vacc = vcombine_s16(vqmovn_s32(vacc_lo), vqmovn_s32(vacc_hi)); int8x8_t vy = vqmovn_s16(vacc); vst1_s8(output, vy); output += 8; } if XNN_UNLIKELY(batch != 0) { assert(batch >= 1 * sizeof(float)); assert(batch <= 7 * sizeof(float)); float32x4_t vx_lo = vld1q_f32(input); const float* x_hi = (const float*) ((uintptr_t) input + (batch & (4 * sizeof(float)))); float32x4_t vx_hi = vld1q_f32(x_hi); vx_lo = vmulq_f32(vx_lo, vscale); vx_hi = vmulq_f32(vx_hi, vscale); vx_lo = vaddq_f32(vx_lo, vmagic_bias); vx_hi = vaddq_f32(vx_hi, vmagic_bias); const int32x4_t vacc_lo = vqsubq_s32(vreinterpretq_s32_f32(vx_lo), vmagic_bias_less_zero_point); const int32x4_t vacc_hi = vqsubq_s32(vreinterpretq_s32_f32(vx_hi), vmagic_bias_less_zero_point); const int16x8_t vacc = vcombine_s16(vqmovn_s32(vacc_lo), vqmovn_s32(vacc_hi)); int8x8_t vy = vqmovn_s16(vacc); if (batch & (4 * sizeof(float))) { vst1_lane_u32((void*) output, vreinterpret_u32_s8(vy), 0); output += 4; vy = vext_s8(vy, vy, 4); } if (batch & (2 * sizeof(float))) { vst1_lane_u16((void*) output, vreinterpret_u16_s8(vy), 0); output += 2; vy = vext_s8(vy, vy, 2); } if (batch & (1 * sizeof(float))) { vst1_lane_s8(output, vy, 0); } } }