-
Notifications
You must be signed in to change notification settings - Fork 1
/
StageProc16Avx512.hpp
205 lines (134 loc) · 5.04 KB
/
StageProc16Avx512.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/*****************************************************************************
StageProc16Avx512.hpp
Author: Laurent de Soras, 2020
--- Legal stuff ---
This program is free software. It comes without any warranty, to
the extent permitted by applicable law. You can redistribute it
and/or modify it under the terms of the Do What The Fuck You Want
To Public License, Version 2, as published by Sam Hocevar. See
http://sam.zoy.org/wtfpl/COPYING for more details.
*Tab=3***********************************************************************/
#if defined (hiir_StageProc16Avx512_CURRENT_CODEHEADER)
#error Recursive inclusion of StageProc16Avx512 code header.
#endif
#define hiir_StageProc16Avx512_CURRENT_CODEHEADER
#if ! defined (hiir_StageProc16Avx512_CODEHEADER_INCLUDED)
#define hiir_StageProc16Avx512_CODEHEADER_INCLUDED
/*\\\ INCLUDE FILES \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
#include "hiir/StageDataAvx512.h"
#if defined (_MSC_VER)
#pragma inline_depth (255)
#endif
namespace hiir
{
/*\\\ PUBLIC \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
template <>
hiir_FORCEINLINE void StageProc16Avx512 <1>::process_sample_pos (const int nbr_coefs, __m512 &spl_0, __m512 &spl_1, StageDataAvx512 *stage_arr)
{
const int cnt = nbr_coefs + 2 - 1;
const __m512 tmp_0 = _mm512_add_ps (
_mm512_mul_ps (
_mm512_sub_ps (spl_0, _mm512_load_ps (stage_arr [cnt ]._mem)),
_mm512_load_ps (stage_arr [cnt ]._coef)
),
_mm512_load_ps (stage_arr [cnt - 2]._mem)
);
_mm512_store_ps (stage_arr [cnt - 2]._mem, spl_0);
_mm512_store_ps (stage_arr [cnt - 1]._mem, spl_1);
_mm512_store_ps (stage_arr [cnt ]._mem, tmp_0);
spl_0 = tmp_0;
}
template <>
hiir_FORCEINLINE void StageProc16Avx512 <0>::process_sample_pos (const int nbr_coefs, __m512 &spl_0, __m512 &spl_1, StageDataAvx512 *stage_arr)
{
const int cnt = nbr_coefs + 2;
_mm512_store_ps (stage_arr [cnt - 2]._mem, spl_0);
_mm512_store_ps (stage_arr [cnt - 1]._mem, spl_1);
}
template <int REMAINING>
void StageProc16Avx512 <REMAINING>::process_sample_pos (const int nbr_coefs, __m512 &spl_0, __m512 &spl_1, StageDataAvx512 *stage_arr)
{
const int cnt = nbr_coefs + 2 - REMAINING;
const __m512 tmp_0 = _mm512_add_ps (
_mm512_mul_ps (
_mm512_sub_ps (spl_0, _mm512_load_ps (stage_arr [cnt ]._mem)),
_mm512_load_ps (stage_arr [cnt ]._coef)
),
_mm512_load_ps (stage_arr [cnt - 2]._mem)
);
const __m512 tmp_1 = _mm512_add_ps (
_mm512_mul_ps (
_mm512_sub_ps (spl_1, _mm512_load_ps (stage_arr [cnt + 1]._mem)),
_mm512_load_ps (stage_arr [cnt + 1]._coef)
),
_mm512_load_ps (stage_arr [cnt - 1]._mem)
);
_mm512_store_ps (stage_arr [cnt - 2]._mem, spl_0);
_mm512_store_ps (stage_arr [cnt - 1]._mem, spl_1);
spl_0 = tmp_0;
spl_1 = tmp_1;
StageProc16Avx512 <REMAINING - 2>::process_sample_pos (
nbr_coefs,
spl_0,
spl_1,
stage_arr
);
}
template <>
hiir_FORCEINLINE void StageProc16Avx512 <1>::process_sample_neg (const int nbr_coefs, __m512 &spl_0, __m512 &spl_1, StageDataAvx512 *stage_arr)
{
const int cnt = nbr_coefs + 2 - 1;
const __m512 tmp_0 = _mm512_sub_ps (
_mm512_mul_ps (
_mm512_add_ps (spl_0, _mm512_load_ps (stage_arr [cnt ]._mem)),
_mm512_load_ps (stage_arr [cnt ]._coef)
),
_mm512_load_ps (stage_arr [cnt - 2]._mem)
);
_mm512_store_ps (stage_arr [cnt - 2]._mem, spl_0);
_mm512_store_ps (stage_arr [cnt - 1]._mem, spl_1);
_mm512_store_ps (stage_arr [cnt ]._mem, tmp_0);
spl_0 = tmp_0;
}
template <>
hiir_FORCEINLINE void StageProc16Avx512 <0>::process_sample_neg (const int nbr_coefs, __m512 &spl_0, __m512 &spl_1, StageDataAvx512 *stage_arr)
{
const int cnt = nbr_coefs + 2;
_mm512_store_ps (stage_arr [cnt - 2]._mem, spl_0);
_mm512_store_ps (stage_arr [cnt - 1]._mem, spl_1);
}
template <int REMAINING>
void StageProc16Avx512 <REMAINING>::process_sample_neg (const int nbr_coefs, __m512 &spl_0, __m512 &spl_1, StageDataAvx512 *stage_arr)
{
const int cnt = nbr_coefs + 2 - REMAINING;
const __m512 tmp_0 = _mm512_sub_ps (
_mm512_mul_ps (
_mm512_add_ps (spl_0, _mm512_load_ps (stage_arr [cnt ]._mem)),
_mm512_load_ps (stage_arr [cnt ]._coef)
),
_mm512_load_ps (stage_arr [cnt - 2]._mem)
);
const __m512 tmp_1 = _mm512_sub_ps (
_mm512_mul_ps (
_mm512_add_ps (spl_1, _mm512_load_ps (stage_arr [cnt + 1]._mem)),
_mm512_load_ps (stage_arr [cnt + 1]._coef)
),
_mm512_load_ps (stage_arr [cnt - 1]._mem)
);
_mm512_store_ps (stage_arr [cnt - 2]._mem, spl_0);
_mm512_store_ps (stage_arr [cnt - 1]._mem, spl_1);
spl_0 = tmp_0;
spl_1 = tmp_1;
StageProc16Avx512 <REMAINING - 2>::process_sample_neg (
nbr_coefs,
spl_0,
spl_1,
stage_arr
);
}
/*\\\ PROTECTED \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
/*\\\ PRIVATE \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
} // namespace hiir
#endif // hiir_StageProc16Avx512_CODEHEADER_INCLUDED
#undef hiir_StageProc16Avx512_CURRENT_CODEHEADER
/*\\\ EOF \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/