xref: /aosp_15_r20/external/XNNPACK/src/f32-vsqrt/gen/fma3-nr1fma1adj-x64.c (revision 4bdc94577ba0e567308109d787f7fec7b531ce36)
1*4bdc9457SAndroid Build Coastguard Worker // Auto-generated file. Do not edit!
2*4bdc9457SAndroid Build Coastguard Worker //   Template: src/f32-vsqrt/fma3-nr1fma1adj.c.in
3*4bdc9457SAndroid Build Coastguard Worker //   Generator: tools/xngen
4*4bdc9457SAndroid Build Coastguard Worker //
5*4bdc9457SAndroid Build Coastguard Worker // Copyright 2020 Google LLC
6*4bdc9457SAndroid Build Coastguard Worker //
7*4bdc9457SAndroid Build Coastguard Worker // This source code is licensed under the BSD-style license found in the
8*4bdc9457SAndroid Build Coastguard Worker // LICENSE file in the root directory of this source tree.
9*4bdc9457SAndroid Build Coastguard Worker 
10*4bdc9457SAndroid Build Coastguard Worker #include <assert.h>
11*4bdc9457SAndroid Build Coastguard Worker 
12*4bdc9457SAndroid Build Coastguard Worker #include <immintrin.h>
13*4bdc9457SAndroid Build Coastguard Worker 
14*4bdc9457SAndroid Build Coastguard Worker #include <xnnpack/common.h>
15*4bdc9457SAndroid Build Coastguard Worker #include <xnnpack/vunary.h>
16*4bdc9457SAndroid Build Coastguard Worker 
17*4bdc9457SAndroid Build Coastguard Worker 
xnn_f32_vsqrt_ukernel__fma3_nr1fma1adj_x64(size_t n,const float * x,float * y,const union xnn_f32_sqrt_params params[restrict XNN_MIN_ELEMENTS (1)])18*4bdc9457SAndroid Build Coastguard Worker void xnn_f32_vsqrt_ukernel__fma3_nr1fma1adj_x64(
19*4bdc9457SAndroid Build Coastguard Worker     size_t n,
20*4bdc9457SAndroid Build Coastguard Worker     const float* x,
21*4bdc9457SAndroid Build Coastguard Worker     float* y,
22*4bdc9457SAndroid Build Coastguard Worker     const union xnn_f32_sqrt_params params[restrict XNN_MIN_ELEMENTS(1)])
23*4bdc9457SAndroid Build Coastguard Worker {
24*4bdc9457SAndroid Build Coastguard Worker   assert(n != 0);
25*4bdc9457SAndroid Build Coastguard Worker   assert(n % sizeof(float) == 0);
26*4bdc9457SAndroid Build Coastguard Worker 
27*4bdc9457SAndroid Build Coastguard Worker   const __m256 vhalf = _mm256_load_ps(params->fma.half);
28*4bdc9457SAndroid Build Coastguard Worker   for (; n >= 64 * sizeof(float); n -= 64 * sizeof(float)) {
29*4bdc9457SAndroid Build Coastguard Worker     const __m256 vx0 = _mm256_loadu_ps(x);
30*4bdc9457SAndroid Build Coastguard Worker     const __m256 vx1 = _mm256_loadu_ps(x + 8);
31*4bdc9457SAndroid Build Coastguard Worker     const __m256 vx2 = _mm256_loadu_ps(x + 16);
32*4bdc9457SAndroid Build Coastguard Worker     const __m256 vx3 = _mm256_loadu_ps(x + 24);
33*4bdc9457SAndroid Build Coastguard Worker     const __m256 vx4 = _mm256_loadu_ps(x + 32);
34*4bdc9457SAndroid Build Coastguard Worker     const __m256 vx5 = _mm256_loadu_ps(x + 40);
35*4bdc9457SAndroid Build Coastguard Worker     const __m256 vx6 = _mm256_loadu_ps(x + 48);
36*4bdc9457SAndroid Build Coastguard Worker     const __m256 vx7 = _mm256_loadu_ps(x + 56);
37*4bdc9457SAndroid Build Coastguard Worker     x += 64;
38*4bdc9457SAndroid Build Coastguard Worker 
39*4bdc9457SAndroid Build Coastguard Worker     const __m256 vrsqrtx0 = _mm256_rsqrt_ps(vx0);
40*4bdc9457SAndroid Build Coastguard Worker     const __m256 vrsqrtx1 = _mm256_rsqrt_ps(vx1);
41*4bdc9457SAndroid Build Coastguard Worker     const __m256 vrsqrtx2 = _mm256_rsqrt_ps(vx2);
42*4bdc9457SAndroid Build Coastguard Worker     const __m256 vrsqrtx3 = _mm256_rsqrt_ps(vx3);
43*4bdc9457SAndroid Build Coastguard Worker     const __m256 vrsqrtx4 = _mm256_rsqrt_ps(vx4);
44*4bdc9457SAndroid Build Coastguard Worker     const __m256 vrsqrtx5 = _mm256_rsqrt_ps(vx5);
45*4bdc9457SAndroid Build Coastguard Worker     const __m256 vrsqrtx6 = _mm256_rsqrt_ps(vx6);
46*4bdc9457SAndroid Build Coastguard Worker     const __m256 vrsqrtx7 = _mm256_rsqrt_ps(vx7);
47*4bdc9457SAndroid Build Coastguard Worker 
48*4bdc9457SAndroid Build Coastguard Worker     __m256 vsqrtx0 = _mm256_mul_ps(vrsqrtx0, vx0);
49*4bdc9457SAndroid Build Coastguard Worker     __m256 vhalfrsqrtx0 = _mm256_mul_ps(vrsqrtx0, vhalf);
50*4bdc9457SAndroid Build Coastguard Worker     __m256 vsqrtx1 = _mm256_mul_ps(vrsqrtx1, vx1);
51*4bdc9457SAndroid Build Coastguard Worker     __m256 vhalfrsqrtx1 = _mm256_mul_ps(vrsqrtx1, vhalf);
52*4bdc9457SAndroid Build Coastguard Worker     __m256 vsqrtx2 = _mm256_mul_ps(vrsqrtx2, vx2);
53*4bdc9457SAndroid Build Coastguard Worker     __m256 vhalfrsqrtx2 = _mm256_mul_ps(vrsqrtx2, vhalf);
54*4bdc9457SAndroid Build Coastguard Worker     __m256 vsqrtx3 = _mm256_mul_ps(vrsqrtx3, vx3);
55*4bdc9457SAndroid Build Coastguard Worker     __m256 vhalfrsqrtx3 = _mm256_mul_ps(vrsqrtx3, vhalf);
56*4bdc9457SAndroid Build Coastguard Worker     __m256 vsqrtx4 = _mm256_mul_ps(vrsqrtx4, vx4);
57*4bdc9457SAndroid Build Coastguard Worker     __m256 vhalfrsqrtx4 = _mm256_mul_ps(vrsqrtx4, vhalf);
58*4bdc9457SAndroid Build Coastguard Worker     __m256 vsqrtx5 = _mm256_mul_ps(vrsqrtx5, vx5);
59*4bdc9457SAndroid Build Coastguard Worker     __m256 vhalfrsqrtx5 = _mm256_mul_ps(vrsqrtx5, vhalf);
60*4bdc9457SAndroid Build Coastguard Worker     __m256 vsqrtx6 = _mm256_mul_ps(vrsqrtx6, vx6);
61*4bdc9457SAndroid Build Coastguard Worker     __m256 vhalfrsqrtx6 = _mm256_mul_ps(vrsqrtx6, vhalf);
62*4bdc9457SAndroid Build Coastguard Worker     __m256 vsqrtx7 = _mm256_mul_ps(vrsqrtx7, vx7);
63*4bdc9457SAndroid Build Coastguard Worker     __m256 vhalfrsqrtx7 = _mm256_mul_ps(vrsqrtx7, vhalf);
64*4bdc9457SAndroid Build Coastguard Worker 
65*4bdc9457SAndroid Build Coastguard Worker     const __m256 vresidual0 = _mm256_fnmadd_ps(vsqrtx0, vhalfrsqrtx0, vhalf);
66*4bdc9457SAndroid Build Coastguard Worker     const __m256 vresidual1 = _mm256_fnmadd_ps(vsqrtx1, vhalfrsqrtx1, vhalf);
67*4bdc9457SAndroid Build Coastguard Worker     const __m256 vresidual2 = _mm256_fnmadd_ps(vsqrtx2, vhalfrsqrtx2, vhalf);
68*4bdc9457SAndroid Build Coastguard Worker     const __m256 vresidual3 = _mm256_fnmadd_ps(vsqrtx3, vhalfrsqrtx3, vhalf);
69*4bdc9457SAndroid Build Coastguard Worker     const __m256 vresidual4 = _mm256_fnmadd_ps(vsqrtx4, vhalfrsqrtx4, vhalf);
70*4bdc9457SAndroid Build Coastguard Worker     const __m256 vresidual5 = _mm256_fnmadd_ps(vsqrtx5, vhalfrsqrtx5, vhalf);
71*4bdc9457SAndroid Build Coastguard Worker     const __m256 vresidual6 = _mm256_fnmadd_ps(vsqrtx6, vhalfrsqrtx6, vhalf);
72*4bdc9457SAndroid Build Coastguard Worker     const __m256 vresidual7 = _mm256_fnmadd_ps(vsqrtx7, vhalfrsqrtx7, vhalf);
73*4bdc9457SAndroid Build Coastguard Worker 
74*4bdc9457SAndroid Build Coastguard Worker     vhalfrsqrtx0 = _mm256_fmadd_ps(vhalfrsqrtx0, vresidual0, vhalfrsqrtx0);
75*4bdc9457SAndroid Build Coastguard Worker     vsqrtx0 = _mm256_fmadd_ps(vsqrtx0, vresidual0, vsqrtx0);
76*4bdc9457SAndroid Build Coastguard Worker     vhalfrsqrtx1 = _mm256_fmadd_ps(vhalfrsqrtx1, vresidual1, vhalfrsqrtx1);
77*4bdc9457SAndroid Build Coastguard Worker     vsqrtx1 = _mm256_fmadd_ps(vsqrtx1, vresidual1, vsqrtx1);
78*4bdc9457SAndroid Build Coastguard Worker     vhalfrsqrtx2 = _mm256_fmadd_ps(vhalfrsqrtx2, vresidual2, vhalfrsqrtx2);
79*4bdc9457SAndroid Build Coastguard Worker     vsqrtx2 = _mm256_fmadd_ps(vsqrtx2, vresidual2, vsqrtx2);
80*4bdc9457SAndroid Build Coastguard Worker     vhalfrsqrtx3 = _mm256_fmadd_ps(vhalfrsqrtx3, vresidual3, vhalfrsqrtx3);
81*4bdc9457SAndroid Build Coastguard Worker     vsqrtx3 = _mm256_fmadd_ps(vsqrtx3, vresidual3, vsqrtx3);
82*4bdc9457SAndroid Build Coastguard Worker     vhalfrsqrtx4 = _mm256_fmadd_ps(vhalfrsqrtx4, vresidual4, vhalfrsqrtx4);
83*4bdc9457SAndroid Build Coastguard Worker     vsqrtx4 = _mm256_fmadd_ps(vsqrtx4, vresidual4, vsqrtx4);
84*4bdc9457SAndroid Build Coastguard Worker     vhalfrsqrtx5 = _mm256_fmadd_ps(vhalfrsqrtx5, vresidual5, vhalfrsqrtx5);
85*4bdc9457SAndroid Build Coastguard Worker     vsqrtx5 = _mm256_fmadd_ps(vsqrtx5, vresidual5, vsqrtx5);
86*4bdc9457SAndroid Build Coastguard Worker     vhalfrsqrtx6 = _mm256_fmadd_ps(vhalfrsqrtx6, vresidual6, vhalfrsqrtx6);
87*4bdc9457SAndroid Build Coastguard Worker     vsqrtx6 = _mm256_fmadd_ps(vsqrtx6, vresidual6, vsqrtx6);
88*4bdc9457SAndroid Build Coastguard Worker     vhalfrsqrtx7 = _mm256_fmadd_ps(vhalfrsqrtx7, vresidual7, vhalfrsqrtx7);
89*4bdc9457SAndroid Build Coastguard Worker     vsqrtx7 = _mm256_fmadd_ps(vsqrtx7, vresidual7, vsqrtx7);
90*4bdc9457SAndroid Build Coastguard Worker 
91*4bdc9457SAndroid Build Coastguard Worker     const __m256 vadjustment0 = _mm256_fnmadd_ps(vsqrtx0, vsqrtx0, vx0);
92*4bdc9457SAndroid Build Coastguard Worker     const __m256 vadjustment1 = _mm256_fnmadd_ps(vsqrtx1, vsqrtx1, vx1);
93*4bdc9457SAndroid Build Coastguard Worker     const __m256 vadjustment2 = _mm256_fnmadd_ps(vsqrtx2, vsqrtx2, vx2);
94*4bdc9457SAndroid Build Coastguard Worker     const __m256 vadjustment3 = _mm256_fnmadd_ps(vsqrtx3, vsqrtx3, vx3);
95*4bdc9457SAndroid Build Coastguard Worker     const __m256 vadjustment4 = _mm256_fnmadd_ps(vsqrtx4, vsqrtx4, vx4);
96*4bdc9457SAndroid Build Coastguard Worker     const __m256 vadjustment5 = _mm256_fnmadd_ps(vsqrtx5, vsqrtx5, vx5);
97*4bdc9457SAndroid Build Coastguard Worker     const __m256 vadjustment6 = _mm256_fnmadd_ps(vsqrtx6, vsqrtx6, vx6);
98*4bdc9457SAndroid Build Coastguard Worker     const __m256 vadjustment7 = _mm256_fnmadd_ps(vsqrtx7, vsqrtx7, vx7);
99*4bdc9457SAndroid Build Coastguard Worker 
100*4bdc9457SAndroid Build Coastguard Worker     const __m256 vy0 = _mm256_fmadd_ps(vhalfrsqrtx0, vadjustment0, vsqrtx0);
101*4bdc9457SAndroid Build Coastguard Worker     const __m256 vy1 = _mm256_fmadd_ps(vhalfrsqrtx1, vadjustment1, vsqrtx1);
102*4bdc9457SAndroid Build Coastguard Worker     const __m256 vy2 = _mm256_fmadd_ps(vhalfrsqrtx2, vadjustment2, vsqrtx2);
103*4bdc9457SAndroid Build Coastguard Worker     const __m256 vy3 = _mm256_fmadd_ps(vhalfrsqrtx3, vadjustment3, vsqrtx3);
104*4bdc9457SAndroid Build Coastguard Worker     const __m256 vy4 = _mm256_fmadd_ps(vhalfrsqrtx4, vadjustment4, vsqrtx4);
105*4bdc9457SAndroid Build Coastguard Worker     const __m256 vy5 = _mm256_fmadd_ps(vhalfrsqrtx5, vadjustment5, vsqrtx5);
106*4bdc9457SAndroid Build Coastguard Worker     const __m256 vy6 = _mm256_fmadd_ps(vhalfrsqrtx6, vadjustment6, vsqrtx6);
107*4bdc9457SAndroid Build Coastguard Worker     const __m256 vy7 = _mm256_fmadd_ps(vhalfrsqrtx7, vadjustment7, vsqrtx7);
108*4bdc9457SAndroid Build Coastguard Worker 
109*4bdc9457SAndroid Build Coastguard Worker     _mm256_storeu_ps(y, vy0);
110*4bdc9457SAndroid Build Coastguard Worker     _mm256_storeu_ps(y + 8, vy1);
111*4bdc9457SAndroid Build Coastguard Worker     _mm256_storeu_ps(y + 16, vy2);
112*4bdc9457SAndroid Build Coastguard Worker     _mm256_storeu_ps(y + 24, vy3);
113*4bdc9457SAndroid Build Coastguard Worker     _mm256_storeu_ps(y + 32, vy4);
114*4bdc9457SAndroid Build Coastguard Worker     _mm256_storeu_ps(y + 40, vy5);
115*4bdc9457SAndroid Build Coastguard Worker     _mm256_storeu_ps(y + 48, vy6);
116*4bdc9457SAndroid Build Coastguard Worker     _mm256_storeu_ps(y + 56, vy7);
117*4bdc9457SAndroid Build Coastguard Worker     y += 64;
118*4bdc9457SAndroid Build Coastguard Worker   }
119*4bdc9457SAndroid Build Coastguard Worker   for (; n >= 8 * sizeof(float); n -= 8 * sizeof(float)) {
120*4bdc9457SAndroid Build Coastguard Worker     const __m256 vx = _mm256_loadu_ps(x);
121*4bdc9457SAndroid Build Coastguard Worker     x += 8;
122*4bdc9457SAndroid Build Coastguard Worker 
123*4bdc9457SAndroid Build Coastguard Worker     const __m256 vrsqrtx = _mm256_rsqrt_ps(vx);
124*4bdc9457SAndroid Build Coastguard Worker     __m256 vsqrtx = _mm256_mul_ps(vrsqrtx, vx);
125*4bdc9457SAndroid Build Coastguard Worker     __m256 vhalfrsqrtx = _mm256_mul_ps(vrsqrtx, vhalf);
126*4bdc9457SAndroid Build Coastguard Worker     const __m256 vresidual = _mm256_fnmadd_ps(vsqrtx, vhalfrsqrtx, vhalf);
127*4bdc9457SAndroid Build Coastguard Worker     vhalfrsqrtx = _mm256_fmadd_ps(vhalfrsqrtx, vresidual, vhalfrsqrtx);
128*4bdc9457SAndroid Build Coastguard Worker     vsqrtx = _mm256_fmadd_ps(vsqrtx, vresidual, vsqrtx);
129*4bdc9457SAndroid Build Coastguard Worker     const __m256 vadjustment = _mm256_fnmadd_ps(vsqrtx, vsqrtx, vx);
130*4bdc9457SAndroid Build Coastguard Worker     const __m256 vy = _mm256_fmadd_ps(vhalfrsqrtx, vadjustment, vsqrtx);
131*4bdc9457SAndroid Build Coastguard Worker 
132*4bdc9457SAndroid Build Coastguard Worker     _mm256_storeu_ps(y, vy);
133*4bdc9457SAndroid Build Coastguard Worker     y += 8;
134*4bdc9457SAndroid Build Coastguard Worker   }
135*4bdc9457SAndroid Build Coastguard Worker   if XNN_UNLIKELY(n != 0) {
136*4bdc9457SAndroid Build Coastguard Worker     assert(n >= 1 * sizeof(float));
137*4bdc9457SAndroid Build Coastguard Worker     assert(n <= 7 * sizeof(float));
138*4bdc9457SAndroid Build Coastguard Worker     const __m256i vmask = _mm256_loadu_si256((const __m256i*) ((uintptr_t) &params->fma.mask_table[7] - n));
139*4bdc9457SAndroid Build Coastguard Worker 
140*4bdc9457SAndroid Build Coastguard Worker     const __m256 vx = _mm256_maskload_ps(x, vmask);
141*4bdc9457SAndroid Build Coastguard Worker 
142*4bdc9457SAndroid Build Coastguard Worker     const __m256 vrsqrtx = _mm256_rsqrt_ps(vx);
143*4bdc9457SAndroid Build Coastguard Worker     __m256 vsqrtx = _mm256_mul_ps(vrsqrtx, vx);
144*4bdc9457SAndroid Build Coastguard Worker     __m256 vhalfrsqrtx = _mm256_mul_ps(vrsqrtx, vhalf);
145*4bdc9457SAndroid Build Coastguard Worker     const __m256 vresidual = _mm256_fnmadd_ps(vsqrtx, vhalfrsqrtx, vhalf);
146*4bdc9457SAndroid Build Coastguard Worker     vhalfrsqrtx = _mm256_fmadd_ps(vhalfrsqrtx, vresidual, vhalfrsqrtx);
147*4bdc9457SAndroid Build Coastguard Worker     vsqrtx = _mm256_fmadd_ps(vsqrtx, vresidual, vsqrtx);
148*4bdc9457SAndroid Build Coastguard Worker     const __m256 vadjustment = _mm256_fnmadd_ps(vsqrtx, vsqrtx, vx);
149*4bdc9457SAndroid Build Coastguard Worker     const __m256 vy = _mm256_fmadd_ps(vhalfrsqrtx, vadjustment, vsqrtx);
150*4bdc9457SAndroid Build Coastguard Worker 
151*4bdc9457SAndroid Build Coastguard Worker     __m128 vy_lo = _mm256_castps256_ps128(vy);
152*4bdc9457SAndroid Build Coastguard Worker     if (n & (4 * sizeof(float))) {
153*4bdc9457SAndroid Build Coastguard Worker       _mm_storeu_ps(y, vy_lo);
154*4bdc9457SAndroid Build Coastguard Worker       vy_lo = _mm256_extractf128_ps(vy, 1);
155*4bdc9457SAndroid Build Coastguard Worker       y += 4;
156*4bdc9457SAndroid Build Coastguard Worker     }
157*4bdc9457SAndroid Build Coastguard Worker     if (n & (2 * sizeof(float))) {
158*4bdc9457SAndroid Build Coastguard Worker       _mm_storel_pi((__m64*) y, vy_lo);
159*4bdc9457SAndroid Build Coastguard Worker       vy_lo = _mm_movehl_ps(vy_lo, vy_lo);
160*4bdc9457SAndroid Build Coastguard Worker       y += 2;
161*4bdc9457SAndroid Build Coastguard Worker     }
162*4bdc9457SAndroid Build Coastguard Worker     if (n & (1 * sizeof(float))) {
163*4bdc9457SAndroid Build Coastguard Worker       _mm_store_ss(y, vy_lo);
164*4bdc9457SAndroid Build Coastguard Worker     }
165*4bdc9457SAndroid Build Coastguard Worker   }
166*4bdc9457SAndroid Build Coastguard Worker }
167