xref: /aosp_15_r20/external/XNNPACK/src/qu8-vcvt/gen/vcvt-neon-x32.c (revision 4bdc94577ba0e567308109d787f7fec7b531ce36)
1 // Auto-generated file. Do not edit!
2 //   Template: src/qs8-vcvt/neon.c.in
3 //   Generator: tools/xngen
4 //
5 // Copyright 2022 Google LLC
6 //
7 // This source code is licensed under the BSD-style license found in the
8 // LICENSE file in the root directory of this source tree.
9 
10 #include <assert.h>
11 
12 #include <arm_neon.h>
13 
14 #include <xnnpack/common.h>
15 #include <xnnpack/vcvt.h>
16 
17 
xnn_qu8_vcvt_ukernel__neon_x32(size_t n,const uint8_t * x,uint8_t * y,const union xnn_qu8_cvt_params params[restrict XNN_MIN_ELEMENTS (1)])18 void xnn_qu8_vcvt_ukernel__neon_x32(
19     size_t n,
20     const uint8_t* x,
21     uint8_t* y,
22     const union xnn_qu8_cvt_params params[restrict XNN_MIN_ELEMENTS(1)]) XNN_OOB_READS
23 {
24   assert(n != 0);
25   assert(n % sizeof(uint8_t) == 0);
26   assert(x != NULL);
27   assert(y != NULL);
28 
29   const uint16x8_t vinput_zero_point = vld1q_dup_u16(&params->neon.input_zero_point);
30   const int16x8_t vmultiplier = vld1q_dup_s16(&params->neon.multiplier);
31   const int16x8_t voutput_zero_point = vld1q_dup_s16(&params->neon.output_zero_point);
32   for (; n >= 32 * sizeof(uint8_t); n -= 32 * sizeof(uint8_t)) {
33     const uint8x16_t vx0 = vld1q_u8(x); x += 16;
34     const uint8x16_t vx1 = vld1q_u8(x); x += 16;
35 
36     int16x8_t vacc0 = vreinterpretq_s16_u16(vsubw_u8(vinput_zero_point, vget_low_u8(vx0)));
37     int16x8_t vacc1 = vreinterpretq_s16_u16(vsubw_u8(vinput_zero_point, vget_high_u8(vx0)));
38     int16x8_t vacc2 = vreinterpretq_s16_u16(vsubw_u8(vinput_zero_point, vget_low_u8(vx1)));
39     int16x8_t vacc3 = vreinterpretq_s16_u16(vsubw_u8(vinput_zero_point, vget_high_u8(vx1)));
40 
41     vacc0 = vshlq_n_s16(vacc0, 7);
42     vacc1 = vshlq_n_s16(vacc1, 7);
43     vacc2 = vshlq_n_s16(vacc2, 7);
44     vacc3 = vshlq_n_s16(vacc3, 7);
45 
46     vacc0 = vqrdmulhq_s16(vacc0, vmultiplier);
47     vacc1 = vqrdmulhq_s16(vacc1, vmultiplier);
48     vacc2 = vqrdmulhq_s16(vacc2, vmultiplier);
49     vacc3 = vqrdmulhq_s16(vacc3, vmultiplier);
50 
51     vacc0 = vqaddq_s16(vacc0, voutput_zero_point);
52     vacc1 = vqaddq_s16(vacc1, voutput_zero_point);
53     vacc2 = vqaddq_s16(vacc2, voutput_zero_point);
54     vacc3 = vqaddq_s16(vacc3, voutput_zero_point);
55 
56     const uint8x16_t vy0 = vcombine_u8(vqmovun_s16(vacc0), vqmovun_s16(vacc1));
57     const uint8x16_t vy1 = vcombine_u8(vqmovun_s16(vacc2), vqmovun_s16(vacc3));
58 
59     vst1q_u8(y, vy0); y += 16;
60     vst1q_u8(y, vy1); y += 16;
61   }
62   for (; n >= 8 * sizeof(uint8_t); n -= 8 * sizeof(uint8_t)) {
63     const uint8x8_t vx = vld1_u8(x); x += 8;
64     int16x8_t vacc = vreinterpretq_s16_u16(vsubw_u8(vinput_zero_point, vx));
65     vacc = vshlq_n_s16(vacc, 7);
66     vacc = vqrdmulhq_s16(vacc, vmultiplier);
67     vacc = vqaddq_s16(vacc, voutput_zero_point);
68     const uint8x8_t vy = vqmovun_s16(vacc);
69     vst1_u8(y, vy); y += 8;
70   }
71   if XNN_UNLIKELY(n != 0) {
72     assert(n >= 1 * sizeof(uint8_t));
73     assert(n <= 7 * sizeof(uint8_t));
74 
75     const uint8x8_t vx = vld1_u8(x);
76     int16x8_t vacc = vreinterpretq_s16_u16(vsubw_u8(vinput_zero_point, vx));
77     vacc = vshlq_n_s16(vacc, 7);
78     vacc = vqrdmulhq_s16(vacc, vmultiplier);
79     vacc = vqaddq_s16(vacc, voutput_zero_point);
80     uint8x8_t vy = vqmovun_s16(vacc);
81 
82     if (n & (4 * sizeof(uint8_t))) {
83       vst1_lane_u32((void*) y, vreinterpret_u32_u8(vy), 0); y += 4;
84       vy = vext_u8(vy, vy, 4);
85     }
86     if (n & (2 * sizeof(uint8_t))) {
87       vst1_lane_u16((void*) y, vreinterpret_u16_u8(vy), 0); y += 2;
88       vy = vext_u8(vy, vy, 2);
89     }
90     if (n & (1 * sizeof(uint8_t))) {
91       vst1_lane_u8(y, vy, 0);
92     }
93   }
94 }
95