// Auto-generated file. Do not edit! // Template: src/f16-rsum/neonfp16arith.c.in // Generator: tools/xngen // // Copyright 2023 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_f16_rsum_ukernel__neonfp16arith_x24_acc3( size_t batch, const void* input, void* output, const union xnn_f16_scale_params params[restrict XNN_MIN_ELEMENTS(1)]) { assert(batch != 0); assert(batch % sizeof(uint16_t) == 0); assert(input != NULL); assert(output != NULL); const uint16_t* i = (const uint16_t*) input; uint16_t* o = (uint16_t*) output; float16x8_t vacc0 = vreinterpretq_f16_u16(vmovq_n_u16(0)); float16x8_t vacc1 = vreinterpretq_f16_u16(vmovq_n_u16(0)); float16x8_t vacc2 = vreinterpretq_f16_u16(vmovq_n_u16(0)); for (; batch >= 24 * sizeof(uint16_t); batch -= 24 * sizeof(uint16_t)) { const float16x8_t vt0 = vreinterpretq_f16_u16(vld1q_u16(i)); i += 8; const float16x8_t vt1 = vreinterpretq_f16_u16(vld1q_u16(i)); i += 8; const float16x8_t vt2 = vreinterpretq_f16_u16(vld1q_u16(i)); i += 8; vacc0 = vaddq_f16(vacc0, vt0); vacc1 = vaddq_f16(vacc1, vt1); vacc2 = vaddq_f16(vacc2, vt2); } vacc0 = vaddq_f16(vacc0, vacc1); vacc0 = vaddq_f16(vacc0, vacc2); for (; batch >= 8 * sizeof(uint16_t); batch -= 8 * sizeof(uint16_t)) { const float16x8_t vt = vreinterpretq_f16_u16(vld1q_u16(i)); i += 8; vacc0 = vaddq_f16(vacc0, vt); } const float16x4_t vscale = vreinterpret_f16_u16(vld1_dup_u16(¶ms->fp16arith.scale)); float16x4_t vacc = vadd_f16(vget_low_f16(vacc0), vget_high_f16(vacc0)); if XNN_UNLIKELY(batch & (4 * sizeof(uint16_t))) { const float16x4_t vt = vreinterpret_f16_u16(vld1_u16(i)); i += 4; vacc = vadd_f16(vacc, vt); } vacc = vpadd_f16(vacc, vacc); if XNN_UNLIKELY(batch & (2 * sizeof(uint16_t))) { const float16x4_t vt = vreinterpret_f16_u32(vld1_dup_u32((const void*) i)); i += 2; vacc = vadd_f16(vacc, vt); } vacc = vpadd_f16(vacc, vacc); if XNN_UNLIKELY(batch & (1 * sizeof(uint16_t))) { const float16x4_t vt = vreinterpret_f16_u16(vld1_dup_u16(i)); vacc = vadd_f16(vacc, vt); } vacc = vmul_f16(vacc, vscale); vst1_lane_u16(o, vreinterpret_u16_f16(vacc), 0); }