xref: /aosp_15_r20/external/XNNPACK/src/qc8-igemm/gen/4x4-minmax-fp32-wasm-fmagic.c (revision 4bdc94577ba0e567308109d787f7fec7b531ce36)
1 // Auto-generated file. Do not edit!
2 //   Template: src/qs8-igemm/scalar.c.in
3 //   Generator: tools/xngen
4 //
5 // Copyright 2021 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 <xnnpack/math.h>
13 #include <xnnpack/gemm.h>
14 
15 
xnn_qc8_igemm_minmax_fp32_ukernel_4x4__wasm_fmagic(size_t mr,size_t nc,size_t kc,size_t ks,const int8_t ** restrict a,const void * restrict w,int8_t * restrict c,size_t cm_stride,size_t cn_stride,size_t a_offset,const int8_t * zero,const union xnn_qc8_conv_minmax_params params[restrict XNN_MIN_ELEMENTS (1)])16 void xnn_qc8_igemm_minmax_fp32_ukernel_4x4__wasm_fmagic(
17     size_t mr,
18     size_t nc,
19     size_t kc,
20     size_t ks,
21     const int8_t**restrict a,
22     const void*restrict w,
23     int8_t*restrict c,
24     size_t cm_stride,
25     size_t cn_stride,
26     size_t a_offset,
27     const int8_t* zero,
28     const union xnn_qc8_conv_minmax_params params[restrict XNN_MIN_ELEMENTS(1)])
29 {
30   assert(mr != 0);
31   assert(mr <= 4);
32   assert(nc != 0);
33   assert(kc != 0);
34   assert(ks != 0);
35   assert(ks % (4 * sizeof(void*)) == 0);
36   assert(a != NULL);
37   assert(w != NULL);
38   assert(c != NULL);
39 
40   int8_t* c0 = c;
41   int8_t* c1 = (int8_t*) ((uintptr_t) c0 + cm_stride);
42   if XNN_UNPREDICTABLE(mr < 2) {
43     c1 = c0;
44   }
45   int8_t* c2 = (int8_t*) ((uintptr_t) c1 + cm_stride);
46   if XNN_UNPREDICTABLE(mr <= 2) {
47     c2 = c1;
48   }
49   int8_t* c3 = (int8_t*) ((uintptr_t) c2 + cm_stride);
50   if XNN_UNPREDICTABLE(mr != 4) {
51     c3 = c2;
52   }
53 
54   do {
55     int32_t vacc0x0 = ((const int32_t*) w)[0];
56     int32_t vacc0x1 = ((const int32_t*) w)[1];
57     int32_t vacc0x2 = ((const int32_t*) w)[2];
58     int32_t vacc0x3 = ((const int32_t*) w)[3];
59     int32_t vacc1x0 = vacc0x0;
60     int32_t vacc1x1 = vacc0x1;
61     int32_t vacc1x2 = vacc0x2;
62     int32_t vacc1x3 = vacc0x3;
63     int32_t vacc2x0 = vacc0x0;
64     int32_t vacc2x1 = vacc0x1;
65     int32_t vacc2x2 = vacc0x2;
66     int32_t vacc2x3 = vacc0x3;
67     int32_t vacc3x0 = vacc0x0;
68     int32_t vacc3x1 = vacc0x1;
69     int32_t vacc3x2 = vacc0x2;
70     int32_t vacc3x3 = vacc0x3;
71     w = (const void*) ((const int32_t*) w + 4);
72 
73     size_t p = ks;
74     do {
75       const int8_t* restrict a0 = a[0];
76       assert(a0 != NULL);
77       if XNN_UNPREDICTABLE(a0 != zero) {
78         a0 = (const int8_t*) ((uintptr_t) a0 + a_offset);
79       }
80       const int8_t* restrict a1 = a[1];
81       assert(a1 != NULL);
82       if XNN_UNPREDICTABLE(a1 != zero) {
83         a1 = (const int8_t*) ((uintptr_t) a1 + a_offset);
84       }
85       const int8_t* restrict a2 = a[2];
86       assert(a2 != NULL);
87       if XNN_UNPREDICTABLE(a2 != zero) {
88         a2 = (const int8_t*) ((uintptr_t) a2 + a_offset);
89       }
90       const int8_t* restrict a3 = a[3];
91       assert(a3 != NULL);
92       if XNN_UNPREDICTABLE(a3 != zero) {
93         a3 = (const int8_t*) ((uintptr_t) a3 + a_offset);
94       }
95       a += 4;
96 
97       size_t k = kc;
98       do {
99         const int32_t va0 = (int32_t) *a0++;
100         const int32_t va1 = (int32_t) *a1++;
101         const int32_t va2 = (int32_t) *a2++;
102         const int32_t va3 = (int32_t) *a3++;
103 
104         const int32_t vb0 = (int32_t) ((const int8_t*) w)[0];
105         const int32_t vb1 = (int32_t) ((const int8_t*) w)[1];
106         const int32_t vb2 = (int32_t) ((const int8_t*) w)[2];
107         const int32_t vb3 = (int32_t) ((const int8_t*) w)[3];
108         w = (const void*) ((const int8_t*) w + 4);
109 
110         vacc0x0 += va0 * vb0;
111         vacc0x1 += va0 * vb1;
112         vacc0x2 += va0 * vb2;
113         vacc0x3 += va0 * vb3;
114         vacc1x0 += va1 * vb0;
115         vacc1x1 += va1 * vb1;
116         vacc1x2 += va1 * vb2;
117         vacc1x3 += va1 * vb3;
118         vacc2x0 += va2 * vb0;
119         vacc2x1 += va2 * vb1;
120         vacc2x2 += va2 * vb2;
121         vacc2x3 += va2 * vb3;
122         vacc3x0 += va3 * vb0;
123         vacc3x1 += va3 * vb1;
124         vacc3x2 += va3 * vb2;
125         vacc3x3 += va3 * vb3;
126 
127         k -= sizeof(int8_t);
128       } while (k != 0);
129       p -= 4 * sizeof(void*);
130     } while (p != 0);
131 
132     float vfpacc0x0 = (float) vacc0x0;
133     float vfpacc0x1 = (float) vacc0x1;
134     float vfpacc0x2 = (float) vacc0x2;
135     float vfpacc0x3 = (float) vacc0x3;
136     float vfpacc1x0 = (float) vacc1x0;
137     float vfpacc1x1 = (float) vacc1x1;
138     float vfpacc1x2 = (float) vacc1x2;
139     float vfpacc1x3 = (float) vacc1x3;
140     float vfpacc2x0 = (float) vacc2x0;
141     float vfpacc2x1 = (float) vacc2x1;
142     float vfpacc2x2 = (float) vacc2x2;
143     float vfpacc2x3 = (float) vacc2x3;
144     float vfpacc3x0 = (float) vacc3x0;
145     float vfpacc3x1 = (float) vacc3x1;
146     float vfpacc3x2 = (float) vacc3x2;
147     float vfpacc3x3 = (float) vacc3x3;
148 
149     const float vscale0 = ((const float*) w)[0];
150     vfpacc0x0 *= vscale0;
151     vfpacc1x0 *= vscale0;
152     vfpacc2x0 *= vscale0;
153     vfpacc3x0 *= vscale0;
154     const float vscale1 = ((const float*) w)[1];
155     vfpacc0x1 *= vscale1;
156     vfpacc1x1 *= vscale1;
157     vfpacc2x1 *= vscale1;
158     vfpacc3x1 *= vscale1;
159     const float vscale2 = ((const float*) w)[2];
160     vfpacc0x2 *= vscale2;
161     vfpacc1x2 *= vscale2;
162     vfpacc2x2 *= vscale2;
163     vfpacc3x2 *= vscale2;
164     const float vscale3 = ((const float*) w)[3];
165     vfpacc0x3 *= vscale3;
166     vfpacc1x3 *= vscale3;
167     vfpacc2x3 *= vscale3;
168     vfpacc3x3 *= vscale3;
169     w = (const void*) ((const float*) w + 4);
170 
171     const float voutput_min_less_zero_point = params->fp32_scalar_fmagic.output_min_less_zero_point;
172     vfpacc0x0 = __builtin_wasm_max_f32(vfpacc0x0, voutput_min_less_zero_point);
173     vfpacc0x1 = __builtin_wasm_max_f32(vfpacc0x1, voutput_min_less_zero_point);
174     vfpacc0x2 = __builtin_wasm_max_f32(vfpacc0x2, voutput_min_less_zero_point);
175     vfpacc0x3 = __builtin_wasm_max_f32(vfpacc0x3, voutput_min_less_zero_point);
176     vfpacc1x0 = __builtin_wasm_max_f32(vfpacc1x0, voutput_min_less_zero_point);
177     vfpacc1x1 = __builtin_wasm_max_f32(vfpacc1x1, voutput_min_less_zero_point);
178     vfpacc1x2 = __builtin_wasm_max_f32(vfpacc1x2, voutput_min_less_zero_point);
179     vfpacc1x3 = __builtin_wasm_max_f32(vfpacc1x3, voutput_min_less_zero_point);
180     vfpacc2x0 = __builtin_wasm_max_f32(vfpacc2x0, voutput_min_less_zero_point);
181     vfpacc2x1 = __builtin_wasm_max_f32(vfpacc2x1, voutput_min_less_zero_point);
182     vfpacc2x2 = __builtin_wasm_max_f32(vfpacc2x2, voutput_min_less_zero_point);
183     vfpacc2x3 = __builtin_wasm_max_f32(vfpacc2x3, voutput_min_less_zero_point);
184     vfpacc3x0 = __builtin_wasm_max_f32(vfpacc3x0, voutput_min_less_zero_point);
185     vfpacc3x1 = __builtin_wasm_max_f32(vfpacc3x1, voutput_min_less_zero_point);
186     vfpacc3x2 = __builtin_wasm_max_f32(vfpacc3x2, voutput_min_less_zero_point);
187     vfpacc3x3 = __builtin_wasm_max_f32(vfpacc3x3, voutput_min_less_zero_point);
188 
189     const float voutput_max_less_zero_point = params->fp32_scalar_fmagic.output_max_less_zero_point;
190     vfpacc0x0 = __builtin_wasm_min_f32(vfpacc0x0, voutput_max_less_zero_point);
191     vfpacc0x1 = __builtin_wasm_min_f32(vfpacc0x1, voutput_max_less_zero_point);
192     vfpacc0x2 = __builtin_wasm_min_f32(vfpacc0x2, voutput_max_less_zero_point);
193     vfpacc0x3 = __builtin_wasm_min_f32(vfpacc0x3, voutput_max_less_zero_point);
194     vfpacc1x0 = __builtin_wasm_min_f32(vfpacc1x0, voutput_max_less_zero_point);
195     vfpacc1x1 = __builtin_wasm_min_f32(vfpacc1x1, voutput_max_less_zero_point);
196     vfpacc1x2 = __builtin_wasm_min_f32(vfpacc1x2, voutput_max_less_zero_point);
197     vfpacc1x3 = __builtin_wasm_min_f32(vfpacc1x3, voutput_max_less_zero_point);
198     vfpacc2x0 = __builtin_wasm_min_f32(vfpacc2x0, voutput_max_less_zero_point);
199     vfpacc2x1 = __builtin_wasm_min_f32(vfpacc2x1, voutput_max_less_zero_point);
200     vfpacc2x2 = __builtin_wasm_min_f32(vfpacc2x2, voutput_max_less_zero_point);
201     vfpacc2x3 = __builtin_wasm_min_f32(vfpacc2x3, voutput_max_less_zero_point);
202     vfpacc3x0 = __builtin_wasm_min_f32(vfpacc3x0, voutput_max_less_zero_point);
203     vfpacc3x1 = __builtin_wasm_min_f32(vfpacc3x1, voutput_max_less_zero_point);
204     vfpacc3x2 = __builtin_wasm_min_f32(vfpacc3x2, voutput_max_less_zero_point);
205     vfpacc3x3 = __builtin_wasm_min_f32(vfpacc3x3, voutput_max_less_zero_point);
206 
207     const float vmagic_bias = params->fp32_scalar_fmagic.magic_bias;
208     vfpacc0x0 += vmagic_bias;
209     vfpacc0x1 += vmagic_bias;
210     vfpacc0x2 += vmagic_bias;
211     vfpacc0x3 += vmagic_bias;
212     vfpacc1x0 += vmagic_bias;
213     vfpacc1x1 += vmagic_bias;
214     vfpacc1x2 += vmagic_bias;
215     vfpacc1x3 += vmagic_bias;
216     vfpacc2x0 += vmagic_bias;
217     vfpacc2x1 += vmagic_bias;
218     vfpacc2x2 += vmagic_bias;
219     vfpacc2x3 += vmagic_bias;
220     vfpacc3x0 += vmagic_bias;
221     vfpacc3x1 += vmagic_bias;
222     vfpacc3x2 += vmagic_bias;
223     vfpacc3x3 += vmagic_bias;
224 
225     const int32_t vmagic_bias_less_output_zero_point = params->fp32_scalar_fmagic.magic_bias_less_output_zero_point;
226     int32_t vout0x0 = (int32_t) float_as_uint32(vfpacc0x0) - vmagic_bias_less_output_zero_point;
227     int32_t vout0x1 = (int32_t) float_as_uint32(vfpacc0x1) - vmagic_bias_less_output_zero_point;
228     int32_t vout0x2 = (int32_t) float_as_uint32(vfpacc0x2) - vmagic_bias_less_output_zero_point;
229     int32_t vout0x3 = (int32_t) float_as_uint32(vfpacc0x3) - vmagic_bias_less_output_zero_point;
230     int32_t vout1x0 = (int32_t) float_as_uint32(vfpacc1x0) - vmagic_bias_less_output_zero_point;
231     int32_t vout1x1 = (int32_t) float_as_uint32(vfpacc1x1) - vmagic_bias_less_output_zero_point;
232     int32_t vout1x2 = (int32_t) float_as_uint32(vfpacc1x2) - vmagic_bias_less_output_zero_point;
233     int32_t vout1x3 = (int32_t) float_as_uint32(vfpacc1x3) - vmagic_bias_less_output_zero_point;
234     int32_t vout2x0 = (int32_t) float_as_uint32(vfpacc2x0) - vmagic_bias_less_output_zero_point;
235     int32_t vout2x1 = (int32_t) float_as_uint32(vfpacc2x1) - vmagic_bias_less_output_zero_point;
236     int32_t vout2x2 = (int32_t) float_as_uint32(vfpacc2x2) - vmagic_bias_less_output_zero_point;
237     int32_t vout2x3 = (int32_t) float_as_uint32(vfpacc2x3) - vmagic_bias_less_output_zero_point;
238     int32_t vout3x0 = (int32_t) float_as_uint32(vfpacc3x0) - vmagic_bias_less_output_zero_point;
239     int32_t vout3x1 = (int32_t) float_as_uint32(vfpacc3x1) - vmagic_bias_less_output_zero_point;
240     int32_t vout3x2 = (int32_t) float_as_uint32(vfpacc3x2) - vmagic_bias_less_output_zero_point;
241     int32_t vout3x3 = (int32_t) float_as_uint32(vfpacc3x3) - vmagic_bias_less_output_zero_point;
242 
243     if XNN_LIKELY(nc >= 4) {
244       c3[0] = (int8_t) vout3x0;
245       c3[1] = (int8_t) vout3x1;
246       c3[2] = (int8_t) vout3x2;
247       c3[3] = (int8_t) vout3x3;
248       c2[0] = (int8_t) vout2x0;
249       c2[1] = (int8_t) vout2x1;
250       c2[2] = (int8_t) vout2x2;
251       c2[3] = (int8_t) vout2x3;
252       c1[0] = (int8_t) vout1x0;
253       c1[1] = (int8_t) vout1x1;
254       c1[2] = (int8_t) vout1x2;
255       c1[3] = (int8_t) vout1x3;
256       c0[0] = (int8_t) vout0x0;
257       c0[1] = (int8_t) vout0x1;
258       c0[2] = (int8_t) vout0x2;
259       c0[3] = (int8_t) vout0x3;
260 
261       c3 = (int8_t*) ((uintptr_t) c3 + cn_stride);
262       c2 = (int8_t*) ((uintptr_t) c2 + cn_stride);
263       c1 = (int8_t*) ((uintptr_t) c1 + cn_stride);
264       c0 = (int8_t*) ((uintptr_t) c0 + cn_stride);
265 
266       a = (const int8_t**restrict) ((uintptr_t) a - ks);
267       nc -= 4;
268     } else {
269       if (nc & 2) {
270         c3[0] = (int8_t) vout3x0;
271         c3[1] = (int8_t) vout3x1;
272         vout3x0 = vout3x2;
273         c3 += 2;
274         c2[0] = (int8_t) vout2x0;
275         c2[1] = (int8_t) vout2x1;
276         vout2x0 = vout2x2;
277         c2 += 2;
278         c1[0] = (int8_t) vout1x0;
279         c1[1] = (int8_t) vout1x1;
280         vout1x0 = vout1x2;
281         c1 += 2;
282         c0[0] = (int8_t) vout0x0;
283         c0[1] = (int8_t) vout0x1;
284         vout0x0 = vout0x2;
285         c0 += 2;
286       }
287       if (nc & 1) {
288         c3[0] = (int8_t) vout3x0;
289         c2[0] = (int8_t) vout2x0;
290         c1[0] = (int8_t) vout1x0;
291         c0[0] = (int8_t) vout0x0;
292       }
293 
294       nc = 0;
295     }
296   } while (nc != 0);
297 }
298