// Auto-generated file. Do not edit! // Template: src/qs8-vcvt/neon.c.in // Generator: tools/xngen // // 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. #include #include #include "xnnpack/common.h" #include "xnnpack/vcvt.h" void xnn_qs8_vcvt_ukernel__neon_u32( size_t batch, const int8_t* input, int8_t* output, const struct xnn_qs8_cvt_params params[restrict XNN_MIN_ELEMENTS(1)]) XNN_OOB_READS { assert(batch != 0); assert(batch % sizeof(int8_t) == 0); assert(input != NULL); assert(output != NULL); const int16x8_t vinput_zero_point = vld1q_dup_s16(¶ms->scalar.input_zero_point); const int16x8_t vmultiplier = vdupq_n_s16(-params->scalar.multiplier); const int16x8_t voutput_zero_point = vld1q_dup_s16(¶ms->scalar.output_zero_point); for (; batch >= 32 * sizeof(int8_t); batch -= 32 * sizeof(int8_t)) { const int8x16_t vx0 = vld1q_s8(input); input += 16; const int8x16_t vx1 = vld1q_s8(input); input += 16; int16x8_t vacc0 = vsubw_s8(vinput_zero_point, vget_low_s8(vx0)); int16x8_t vacc1 = vsubw_s8(vinput_zero_point, vget_high_s8(vx0)); int16x8_t vacc2 = vsubw_s8(vinput_zero_point, vget_low_s8(vx1)); int16x8_t vacc3 = vsubw_s8(vinput_zero_point, vget_high_s8(vx1)); vacc0 = vshlq_n_s16(vacc0, 7); vacc1 = vshlq_n_s16(vacc1, 7); vacc2 = vshlq_n_s16(vacc2, 7); vacc3 = vshlq_n_s16(vacc3, 7); vacc0 = vqrdmulhq_s16(vacc0, vmultiplier); vacc1 = vqrdmulhq_s16(vacc1, vmultiplier); vacc2 = vqrdmulhq_s16(vacc2, vmultiplier); vacc3 = vqrdmulhq_s16(vacc3, vmultiplier); vacc0 = vqaddq_s16(vacc0, voutput_zero_point); vacc1 = vqaddq_s16(vacc1, voutput_zero_point); vacc2 = vqaddq_s16(vacc2, voutput_zero_point); vacc3 = vqaddq_s16(vacc3, voutput_zero_point); const int8x16_t vy0 = vcombine_s8(vqmovn_s16(vacc0), vqmovn_s16(vacc1)); const int8x16_t vy1 = vcombine_s8(vqmovn_s16(vacc2), vqmovn_s16(vacc3)); vst1q_s8(output, vy0); output += 16; vst1q_s8(output, vy1); output += 16; } for (; batch >= 8 * sizeof(int8_t); batch -= 8 * sizeof(int8_t)) { const int8x8_t vx = vld1_s8(input); input += 8; int16x8_t vacc = vsubw_s8(vinput_zero_point, vx); vacc = vshlq_n_s16(vacc, 7); vacc = vqrdmulhq_s16(vacc, vmultiplier); vacc = vqaddq_s16(vacc, voutput_zero_point); const int8x8_t vy = vqmovn_s16(vacc); vst1_s8(output, vy); output += 8; } if XNN_UNLIKELY(batch != 0) { assert(batch >= 1 * sizeof(int8_t)); assert(batch <= 7 * sizeof(int8_t)); const int8x8_t vx = vld1_s8(input); int16x8_t vacc = vsubw_s8(vinput_zero_point, vx); vacc = vshlq_n_s16(vacc, 7); vacc = vqrdmulhq_s16(vacc, vmultiplier); vacc = vqaddq_s16(vacc, voutput_zero_point); int8x8_t vy = vqmovn_s16(vacc); if (batch & (4 * sizeof(int8_t))) { vst1_lane_u32((void*) output, vreinterpret_u32_s8(vy), 0); output += 4; vy = vext_s8(vy, vy, 4); } if (batch & (2 * sizeof(int8_t))) { vst1_lane_u16((void*) output, vreinterpret_u16_s8(vy), 0); output += 2; vy = vext_s8(vy, vy, 2); } if (batch & (1 * sizeof(int8_t))) { vst1_lane_s8(output, vy, 0); } } }