1*4bdc9457SAndroid Build Coastguard Worker // Auto-generated file. Do not edit!
2*4bdc9457SAndroid Build Coastguard Worker // Template: src/f32-vsqrt/avx512f-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/intrinsics-polyfill.h>
16*4bdc9457SAndroid Build Coastguard Worker #include <xnnpack/vunary.h>
17*4bdc9457SAndroid Build Coastguard Worker
18*4bdc9457SAndroid Build Coastguard Worker
xnn_f32_vsqrt_ukernel__avx512f_nr1fma1adj_x96(size_t n,const float * x,float * y,const union xnn_f32_sqrt_params params[restrict XNN_MIN_ELEMENTS (1)])19*4bdc9457SAndroid Build Coastguard Worker void xnn_f32_vsqrt_ukernel__avx512f_nr1fma1adj_x96(
20*4bdc9457SAndroid Build Coastguard Worker size_t n,
21*4bdc9457SAndroid Build Coastguard Worker const float* x,
22*4bdc9457SAndroid Build Coastguard Worker float* y,
23*4bdc9457SAndroid Build Coastguard Worker const union xnn_f32_sqrt_params params[restrict XNN_MIN_ELEMENTS(1)])
24*4bdc9457SAndroid Build Coastguard Worker {
25*4bdc9457SAndroid Build Coastguard Worker assert(n != 0);
26*4bdc9457SAndroid Build Coastguard Worker assert(n % sizeof(float) == 0);
27*4bdc9457SAndroid Build Coastguard Worker
28*4bdc9457SAndroid Build Coastguard Worker const __m512 vhalf = _mm512_set1_ps(params->avx512.half);
29*4bdc9457SAndroid Build Coastguard Worker for (; n >= 96 * sizeof(float); n -= 96 * sizeof(float)) {
30*4bdc9457SAndroid Build Coastguard Worker const __m512 vx0 = _mm512_loadu_ps(x);
31*4bdc9457SAndroid Build Coastguard Worker const __m512 vx1 = _mm512_loadu_ps(x + 16);
32*4bdc9457SAndroid Build Coastguard Worker const __m512 vx2 = _mm512_loadu_ps(x + 32);
33*4bdc9457SAndroid Build Coastguard Worker const __m512 vx3 = _mm512_loadu_ps(x + 48);
34*4bdc9457SAndroid Build Coastguard Worker const __m512 vx4 = _mm512_loadu_ps(x + 64);
35*4bdc9457SAndroid Build Coastguard Worker const __m512 vx5 = _mm512_loadu_ps(x + 80);
36*4bdc9457SAndroid Build Coastguard Worker x += 96;
37*4bdc9457SAndroid Build Coastguard Worker
38*4bdc9457SAndroid Build Coastguard Worker const __m512 vrsqrtx0 = _mm512_rsqrt14_ps(vx0);
39*4bdc9457SAndroid Build Coastguard Worker const __m512 vrsqrtx1 = _mm512_rsqrt14_ps(vx1);
40*4bdc9457SAndroid Build Coastguard Worker const __m512 vrsqrtx2 = _mm512_rsqrt14_ps(vx2);
41*4bdc9457SAndroid Build Coastguard Worker const __m512 vrsqrtx3 = _mm512_rsqrt14_ps(vx3);
42*4bdc9457SAndroid Build Coastguard Worker const __m512 vrsqrtx4 = _mm512_rsqrt14_ps(vx4);
43*4bdc9457SAndroid Build Coastguard Worker const __m512 vrsqrtx5 = _mm512_rsqrt14_ps(vx5);
44*4bdc9457SAndroid Build Coastguard Worker
45*4bdc9457SAndroid Build Coastguard Worker __m512 vsqrtx0 = _mm512_mul_ps(vrsqrtx0, vx0);
46*4bdc9457SAndroid Build Coastguard Worker __m512 vhalfrsqrtx0 = _mm512_mul_ps(vrsqrtx0, vhalf);
47*4bdc9457SAndroid Build Coastguard Worker __m512 vsqrtx1 = _mm512_mul_ps(vrsqrtx1, vx1);
48*4bdc9457SAndroid Build Coastguard Worker __m512 vhalfrsqrtx1 = _mm512_mul_ps(vrsqrtx1, vhalf);
49*4bdc9457SAndroid Build Coastguard Worker __m512 vsqrtx2 = _mm512_mul_ps(vrsqrtx2, vx2);
50*4bdc9457SAndroid Build Coastguard Worker __m512 vhalfrsqrtx2 = _mm512_mul_ps(vrsqrtx2, vhalf);
51*4bdc9457SAndroid Build Coastguard Worker __m512 vsqrtx3 = _mm512_mul_ps(vrsqrtx3, vx3);
52*4bdc9457SAndroid Build Coastguard Worker __m512 vhalfrsqrtx3 = _mm512_mul_ps(vrsqrtx3, vhalf);
53*4bdc9457SAndroid Build Coastguard Worker __m512 vsqrtx4 = _mm512_mul_ps(vrsqrtx4, vx4);
54*4bdc9457SAndroid Build Coastguard Worker __m512 vhalfrsqrtx4 = _mm512_mul_ps(vrsqrtx4, vhalf);
55*4bdc9457SAndroid Build Coastguard Worker __m512 vsqrtx5 = _mm512_mul_ps(vrsqrtx5, vx5);
56*4bdc9457SAndroid Build Coastguard Worker __m512 vhalfrsqrtx5 = _mm512_mul_ps(vrsqrtx5, vhalf);
57*4bdc9457SAndroid Build Coastguard Worker
58*4bdc9457SAndroid Build Coastguard Worker const __m512 vresidual0 = _mm512_fnmadd_ps(vsqrtx0, vhalfrsqrtx0, vhalf);
59*4bdc9457SAndroid Build Coastguard Worker const __m512 vresidual1 = _mm512_fnmadd_ps(vsqrtx1, vhalfrsqrtx1, vhalf);
60*4bdc9457SAndroid Build Coastguard Worker const __m512 vresidual2 = _mm512_fnmadd_ps(vsqrtx2, vhalfrsqrtx2, vhalf);
61*4bdc9457SAndroid Build Coastguard Worker const __m512 vresidual3 = _mm512_fnmadd_ps(vsqrtx3, vhalfrsqrtx3, vhalf);
62*4bdc9457SAndroid Build Coastguard Worker const __m512 vresidual4 = _mm512_fnmadd_ps(vsqrtx4, vhalfrsqrtx4, vhalf);
63*4bdc9457SAndroid Build Coastguard Worker const __m512 vresidual5 = _mm512_fnmadd_ps(vsqrtx5, vhalfrsqrtx5, vhalf);
64*4bdc9457SAndroid Build Coastguard Worker
65*4bdc9457SAndroid Build Coastguard Worker vhalfrsqrtx0 = _mm512_fmadd_ps(vhalfrsqrtx0, vresidual0, vhalfrsqrtx0);
66*4bdc9457SAndroid Build Coastguard Worker vsqrtx0 = _mm512_fmadd_ps(vsqrtx0, vresidual0, vsqrtx0);
67*4bdc9457SAndroid Build Coastguard Worker vhalfrsqrtx1 = _mm512_fmadd_ps(vhalfrsqrtx1, vresidual1, vhalfrsqrtx1);
68*4bdc9457SAndroid Build Coastguard Worker vsqrtx1 = _mm512_fmadd_ps(vsqrtx1, vresidual1, vsqrtx1);
69*4bdc9457SAndroid Build Coastguard Worker vhalfrsqrtx2 = _mm512_fmadd_ps(vhalfrsqrtx2, vresidual2, vhalfrsqrtx2);
70*4bdc9457SAndroid Build Coastguard Worker vsqrtx2 = _mm512_fmadd_ps(vsqrtx2, vresidual2, vsqrtx2);
71*4bdc9457SAndroid Build Coastguard Worker vhalfrsqrtx3 = _mm512_fmadd_ps(vhalfrsqrtx3, vresidual3, vhalfrsqrtx3);
72*4bdc9457SAndroid Build Coastguard Worker vsqrtx3 = _mm512_fmadd_ps(vsqrtx3, vresidual3, vsqrtx3);
73*4bdc9457SAndroid Build Coastguard Worker vhalfrsqrtx4 = _mm512_fmadd_ps(vhalfrsqrtx4, vresidual4, vhalfrsqrtx4);
74*4bdc9457SAndroid Build Coastguard Worker vsqrtx4 = _mm512_fmadd_ps(vsqrtx4, vresidual4, vsqrtx4);
75*4bdc9457SAndroid Build Coastguard Worker vhalfrsqrtx5 = _mm512_fmadd_ps(vhalfrsqrtx5, vresidual5, vhalfrsqrtx5);
76*4bdc9457SAndroid Build Coastguard Worker vsqrtx5 = _mm512_fmadd_ps(vsqrtx5, vresidual5, vsqrtx5);
77*4bdc9457SAndroid Build Coastguard Worker
78*4bdc9457SAndroid Build Coastguard Worker const __m512 vadjustment0 = _mm512_fnmadd_ps(vsqrtx0, vsqrtx0, vx0);
79*4bdc9457SAndroid Build Coastguard Worker const __m512 vadjustment1 = _mm512_fnmadd_ps(vsqrtx1, vsqrtx1, vx1);
80*4bdc9457SAndroid Build Coastguard Worker const __m512 vadjustment2 = _mm512_fnmadd_ps(vsqrtx2, vsqrtx2, vx2);
81*4bdc9457SAndroid Build Coastguard Worker const __m512 vadjustment3 = _mm512_fnmadd_ps(vsqrtx3, vsqrtx3, vx3);
82*4bdc9457SAndroid Build Coastguard Worker const __m512 vadjustment4 = _mm512_fnmadd_ps(vsqrtx4, vsqrtx4, vx4);
83*4bdc9457SAndroid Build Coastguard Worker const __m512 vadjustment5 = _mm512_fnmadd_ps(vsqrtx5, vsqrtx5, vx5);
84*4bdc9457SAndroid Build Coastguard Worker
85*4bdc9457SAndroid Build Coastguard Worker const __m512 vy0 = _mm512_fmadd_ps(vhalfrsqrtx0, vadjustment0, vsqrtx0);
86*4bdc9457SAndroid Build Coastguard Worker const __m512 vy1 = _mm512_fmadd_ps(vhalfrsqrtx1, vadjustment1, vsqrtx1);
87*4bdc9457SAndroid Build Coastguard Worker const __m512 vy2 = _mm512_fmadd_ps(vhalfrsqrtx2, vadjustment2, vsqrtx2);
88*4bdc9457SAndroid Build Coastguard Worker const __m512 vy3 = _mm512_fmadd_ps(vhalfrsqrtx3, vadjustment3, vsqrtx3);
89*4bdc9457SAndroid Build Coastguard Worker const __m512 vy4 = _mm512_fmadd_ps(vhalfrsqrtx4, vadjustment4, vsqrtx4);
90*4bdc9457SAndroid Build Coastguard Worker const __m512 vy5 = _mm512_fmadd_ps(vhalfrsqrtx5, vadjustment5, vsqrtx5);
91*4bdc9457SAndroid Build Coastguard Worker
92*4bdc9457SAndroid Build Coastguard Worker _mm512_storeu_ps(y, vy0);
93*4bdc9457SAndroid Build Coastguard Worker _mm512_storeu_ps(y + 16, vy1);
94*4bdc9457SAndroid Build Coastguard Worker _mm512_storeu_ps(y + 32, vy2);
95*4bdc9457SAndroid Build Coastguard Worker _mm512_storeu_ps(y + 48, vy3);
96*4bdc9457SAndroid Build Coastguard Worker _mm512_storeu_ps(y + 64, vy4);
97*4bdc9457SAndroid Build Coastguard Worker _mm512_storeu_ps(y + 80, vy5);
98*4bdc9457SAndroid Build Coastguard Worker y += 96;
99*4bdc9457SAndroid Build Coastguard Worker }
100*4bdc9457SAndroid Build Coastguard Worker for (; n >= 16 * sizeof(float); n -= 16 * sizeof(float)) {
101*4bdc9457SAndroid Build Coastguard Worker const __m512 vx = _mm512_loadu_ps(x);
102*4bdc9457SAndroid Build Coastguard Worker x += 16;
103*4bdc9457SAndroid Build Coastguard Worker
104*4bdc9457SAndroid Build Coastguard Worker const __m512 vrsqrtx = _mm512_rsqrt14_ps(vx);
105*4bdc9457SAndroid Build Coastguard Worker __m512 vsqrtx = _mm512_mul_ps(vrsqrtx, vx);
106*4bdc9457SAndroid Build Coastguard Worker __m512 vhalfrsqrtx = _mm512_mul_ps(vrsqrtx, vhalf);
107*4bdc9457SAndroid Build Coastguard Worker const __m512 vresidual = _mm512_fnmadd_ps(vsqrtx, vhalfrsqrtx, vhalf);
108*4bdc9457SAndroid Build Coastguard Worker vhalfrsqrtx = _mm512_fmadd_ps(vhalfrsqrtx, vresidual, vhalfrsqrtx);
109*4bdc9457SAndroid Build Coastguard Worker vsqrtx = _mm512_fmadd_ps(vsqrtx, vresidual, vsqrtx);
110*4bdc9457SAndroid Build Coastguard Worker const __m512 vadjustment = _mm512_fnmadd_ps(vsqrtx, vsqrtx, vx);
111*4bdc9457SAndroid Build Coastguard Worker const __m512 vy = _mm512_fmadd_ps(vhalfrsqrtx, vadjustment, vsqrtx);
112*4bdc9457SAndroid Build Coastguard Worker
113*4bdc9457SAndroid Build Coastguard Worker _mm512_storeu_ps(y, vy);
114*4bdc9457SAndroid Build Coastguard Worker y += 16;
115*4bdc9457SAndroid Build Coastguard Worker }
116*4bdc9457SAndroid Build Coastguard Worker if XNN_UNLIKELY(n != 0) {
117*4bdc9457SAndroid Build Coastguard Worker assert(n >= 1 * sizeof(float));
118*4bdc9457SAndroid Build Coastguard Worker assert(n <= 15 * sizeof(float));
119*4bdc9457SAndroid Build Coastguard Worker // Prepare mask for valid 32-bit elements (depends on n).
120*4bdc9457SAndroid Build Coastguard Worker n >>= 2 /* log2(sizeof(float)) */;
121*4bdc9457SAndroid Build Coastguard Worker const __mmask16 vmask = _cvtu32_mask16((uint16_t) ((uint32_t) (UINT32_C(1) << n) - UINT32_C(1)));
122*4bdc9457SAndroid Build Coastguard Worker
123*4bdc9457SAndroid Build Coastguard Worker const __m512 vx = _mm512_maskz_loadu_ps(vmask, x);
124*4bdc9457SAndroid Build Coastguard Worker const __m512 vrsqrtx = _mm512_maskz_rsqrt14_ps(vmask, vx);
125*4bdc9457SAndroid Build Coastguard Worker __m512 vsqrtx = _mm512_mul_ps(vrsqrtx, vx);
126*4bdc9457SAndroid Build Coastguard Worker __m512 vhalfrsqrtx = _mm512_mul_ps(vrsqrtx, vhalf);
127*4bdc9457SAndroid Build Coastguard Worker const __m512 vresidual = _mm512_fnmadd_ps(vsqrtx, vhalfrsqrtx, vhalf);
128*4bdc9457SAndroid Build Coastguard Worker vhalfrsqrtx = _mm512_fmadd_ps(vhalfrsqrtx, vresidual, vhalfrsqrtx);
129*4bdc9457SAndroid Build Coastguard Worker vsqrtx = _mm512_fmadd_ps(vsqrtx, vresidual, vsqrtx);
130*4bdc9457SAndroid Build Coastguard Worker const __m512 vadjustment = _mm512_fnmadd_ps(vsqrtx, vsqrtx, vx);
131*4bdc9457SAndroid Build Coastguard Worker const __m512 vy = _mm512_fmadd_ps(vhalfrsqrtx, vadjustment, vsqrtx);
132*4bdc9457SAndroid Build Coastguard Worker
133*4bdc9457SAndroid Build Coastguard Worker _mm512_mask_storeu_ps(y, vmask, vy);
134*4bdc9457SAndroid Build Coastguard Worker }
135*4bdc9457SAndroid Build Coastguard Worker }
136