blob: f4ca8587416492c9a2ced32e7366de7dc44e5033 [file] [log] [blame]
Marat Dukhanfc188ed2021-06-03 12:21:22 -07001// Auto-generated file. Do not edit!
2// Template: src/qs8-igemm/MRx4c8-sse.c.in
3// Generator: tools/xngen
4//
5// Copyright 2020 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 <emmintrin.h>
13
14#include <xnnpack/igemm.h>
15#include <xnnpack/math.h>
16
17
18void xnn_qc8_igemm_minmax_fp32_ukernel_1x4c8__sse2_ld128(
19 size_t mr,
20 size_t nc,
21 size_t kc,
22 size_t ks,
23 const int8_t** restrict a,
24 const void* restrict w,
25 int8_t* restrict c,
26 size_t cm_stride,
27 size_t cn_stride,
28 size_t a_offset,
29 const int8_t* zero,
30 const union xnn_qs8_minmax_params params[restrict XNN_MIN_ELEMENTS(1)]) XNN_DISABLE_TSAN XNN_DISABLE_MSAN
31{
32 assert(mr != 0);
33 assert(mr <= 1);
34 assert(nc != 0);
35 assert(kc != 0);
36 assert(ks != 0);
37 assert(ks % (1 * sizeof(void*)) == 0);
38 assert(a_offset % sizeof(int8_t) == 0);
39 assert(a != NULL);
40 assert(w != NULL);
41 assert(c != NULL);
42
43 kc = round_up_po2(kc, 8);
44 int8_t* c0 = c;
45
46 do {
47 __m128i vacc0x0 = _mm_cvtsi32_si128((int) ((const int32_t*) w)[0]);
48 __m128i vacc0x1 = _mm_cvtsi32_si128((int) ((const int32_t*) w)[1]);
49 __m128i vacc0x2 = _mm_cvtsi32_si128((int) ((const int32_t*) w)[2]);
50 __m128i vacc0x3 = _mm_cvtsi32_si128((int) ((const int32_t*) w)[3]);
Marat Dukhane5eee462021-07-01 19:34:39 -070051 w = (const void*) ((const int32_t*) w + 4);
Marat Dukhanfc188ed2021-06-03 12:21:22 -070052
53 size_t p = ks;
54 do {
55 const int8_t* restrict a0 = a[0];
56 if XNN_UNPREDICTABLE(a0 != zero) {
57 a0 = (const int8_t*) ((uintptr_t) a0 + a_offset);
58 }
59 a += 1;
60
61 size_t k = 0;
62 while (k < kc) {
63 const __m128i va0 = _mm_loadl_epi64((const __m128i*) a0);
Marat Dukhane5eee462021-07-01 19:34:39 -070064 const __m128i vxa0 = _mm_srai_epi16(_mm_unpacklo_epi8(va0, va0), 8);
Marat Dukhanfc188ed2021-06-03 12:21:22 -070065 a0 += 8;
66
67 const __m128i vb01 = _mm_load_si128((const __m128i*) w);
68 const __m128i vsb01 = _mm_cmpgt_epi8(_mm_setzero_si128(), vb01);
69 const __m128i vxb0 = _mm_unpacklo_epi8(vb01, vsb01);
70 const __m128i vxb1 = _mm_unpackhi_epi8(vb01, vsb01);
71
72 vacc0x0 = _mm_add_epi32(vacc0x0, _mm_madd_epi16(vxa0, vxb0));
73 vacc0x1 = _mm_add_epi32(vacc0x1, _mm_madd_epi16(vxa0, vxb1));
Marat Dukhane5eee462021-07-01 19:34:39 -070074 const __m128i vb23 = _mm_load_si128((const __m128i*) ((const int8_t*) w + 16));
Marat Dukhanfc188ed2021-06-03 12:21:22 -070075 const __m128i vsb23 = _mm_cmpgt_epi8(_mm_setzero_si128(), vb23);
76 const __m128i vxb2 = _mm_unpacklo_epi8(vb23, vsb23);
77 const __m128i vxb3 = _mm_unpackhi_epi8(vb23, vsb23);
78
79 vacc0x2 = _mm_add_epi32(vacc0x2, _mm_madd_epi16(vxa0, vxb2));
80 vacc0x3 = _mm_add_epi32(vacc0x3, _mm_madd_epi16(vxa0, vxb3));
81
Marat Dukhane5eee462021-07-01 19:34:39 -070082 w = (const void*) ((const int8_t*) w + 32);
Marat Dukhanfc188ed2021-06-03 12:21:22 -070083 k += 8 * sizeof(int8_t);
84 }
85 p -= 1 * sizeof(void*);
86 } while (p != 0);
87
88 const __m128i vacc0x02 = _mm_add_epi32(_mm_unpacklo_epi32(vacc0x0, vacc0x2), _mm_unpackhi_epi32(vacc0x0, vacc0x2));
89 const __m128i vacc0x13 = _mm_add_epi32(_mm_unpacklo_epi32(vacc0x1, vacc0x3), _mm_unpackhi_epi32(vacc0x1, vacc0x3));
90
91 __m128i vacc0x0123 = _mm_add_epi32(_mm_unpacklo_epi32(vacc0x02, vacc0x13), _mm_unpackhi_epi32(vacc0x02, vacc0x13));
92
93 __m128 vscaled0x0123 = _mm_cvtepi32_ps(vacc0x0123);
94
95 const __m128 vscale0123 = _mm_load_ps((const float*) w);
Marat Dukhane5eee462021-07-01 19:34:39 -070096 w = (const void*) ((const float*) w + 4);
Marat Dukhanfc188ed2021-06-03 12:21:22 -070097 vscaled0x0123 = _mm_mul_ps(vscaled0x0123, vscale0123);
98
99 vacc0x0123 = _mm_cvtps_epi32(vscaled0x0123);
100
101 const __m128i voutput_zero_point = _mm_load_si128((const __m128i*) params->sse2.output_zero_point);
102 __m128i vacc00x0123 = _mm_adds_epi16(_mm_packs_epi32(vacc0x0123, vacc0x0123), voutput_zero_point);
103
104 const __m128i voutput_min = _mm_load_si128((const __m128i*) params->sse2.output_min);
105 const __m128i voutput_max = _mm_load_si128((const __m128i*) params->sse2.output_max);
106 vacc00x0123 = _mm_min_epi16(_mm_max_epi16(vacc00x0123, voutput_min), voutput_max);
107
108 __m128i vout = _mm_packs_epi16(vacc00x0123, vacc00x0123);
109
110
111 if (nc >= 4) {
112 *((uint32_t*) c0) = (uint32_t) _mm_cvtsi128_si32(vout);
113 c0 = (int8_t*) ((uintptr_t) c0 + cn_stride);
114
115 a = (const int8_t**restrict) ((uintptr_t) a - ks);
116
117 nc -= 4;
118 } else {
119 if (nc & 2) {
120 *((uint16_t*) c0) = (uint16_t) _mm_extract_epi16(vout, 0);
121 c0 += 2;
122 vout = _mm_srli_epi32(vout, 16);
123 }
124 if (nc & 1) {
Marat Dukhancdbe9a32021-07-01 23:52:04 -0700125 *c0 = (int8_t) _mm_cvtsi128_si32(vout);
Marat Dukhanfc188ed2021-06-03 12:21:22 -0700126 }
127
128 nc = 0;
129 }
130 } while (nc != 0);
131}