-
Notifications
You must be signed in to change notification settings - Fork 1
/
PhaseHalfPi8F64Avx512.hpp
251 lines (187 loc) · 6.62 KB
/
PhaseHalfPi8F64Avx512.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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
/*****************************************************************************
PhaseHalfPi8F64Avx512.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://www.wtfpl.net/ for more details.
*Tab=3***********************************************************************/
#if ! defined (hiir_PhaseHalfPi8F64Avx512_CODEHEADER_INCLUDED)
#define hiir_PhaseHalfPi8F64Avx512_CODEHEADER_INCLUDED
/*\\\ INCLUDE FILES \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
#include "hiir/StageProc8F64Avx512.h"
#include <cassert>
namespace hiir
{
/*\\\ PUBLIC \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
/*
==============================================================================
Name: ctor
Throws: Nothing
==============================================================================
*/
template <int NC>
PhaseHalfPi8F64Avx512 <NC>::PhaseHalfPi8F64Avx512 ()
: _bifilter ()
, _phase (0)
{
for (int i = 0; i < NBR_COEFS + 2; ++i)
{
_mm512_store_pd (_bifilter [0] [i]._coef, _mm512_setzero_pd ());
_mm512_store_pd (_bifilter [1] [i]._coef, _mm512_setzero_pd ());
}
clear_buffers ();
}
/*
==============================================================================
Name: set_coefs
Description:
Sets filter coefficients. Generate them with the PolyphaseIir2Designer
class.
Call this function before doing any processing.
Input parameters:
- coef_arr: Array of coefficients. There should be as many coefficients as
mentioned in the class template parameter.
Throws: Nothing
==============================================================================
*/
template <int NC>
void PhaseHalfPi8F64Avx512 <NC>::set_coefs (const double coef_arr [])
{
assert (coef_arr != nullptr);
for (int i = 0; i < NBR_COEFS; ++i)
{
const __m512d c = _mm512_set1_pd (DataType (coef_arr [i]));
_mm512_store_pd (_bifilter [0] [i + 2]._coef, c);
_mm512_store_pd (_bifilter [1] [i + 2]._coef, c);
}
}
/*
==============================================================================
Name: process_sample
Description:
From one 8-channel input vector, generates two vectors with a pi/2 phase
shift between these signals.
Input parameters:
- input: The input sample.
Output parameters:
- out_0: Output sample, ahead.
- out_1: Output sample, late.
Throws: Nothing
==============================================================================
*/
template <int NC>
void PhaseHalfPi8F64Avx512 <NC>::process_sample (__m512d &out_0, __m512d &out_1, __m512d input)
{
out_0 = input; // Even coefs
out_1 = _mm512_load_pd (_prev); // Odd coefs
#if defined (_MSC_VER)
#pragma inline_depth (255)
#endif // _MSC_VER
StageProc8F64Avx512 <NBR_COEFS>::process_sample_neg (
NBR_COEFS, out_0, out_1, &_bifilter [_phase] [0]
);
_mm512_store_pd (_prev, input);
_phase = 1 - _phase;
}
/*
==============================================================================
Name: process_block
Description:
From a block of 8-channel input vectors, generates two blocks of vectors
with a pi/2 phase shift between these signals.
Input and output blocks may overlap, see assert() for details.
Input parameters:
- in_ptr: Input array, containing nbr_spl samples.
- nbr_spl: Number of input samples to process, > 0
Output parameters:
- out_0_ptr: Output sample array (ahead), capacity: nbr_spl samples.
- out_1_ptr: Output sample array (late), capacity: nbr_spl samples.
Throws: Nothing
==============================================================================
*/
template <int NC>
void PhaseHalfPi8F64Avx512 <NC>::process_block (double out_0_ptr [], double out_1_ptr [], const double in_ptr [], long nbr_spl)
{
assert (out_0_ptr != nullptr);
assert (out_1_ptr != nullptr);
assert (in_ptr != nullptr);
assert (out_0_ptr <= in_ptr || out_0_ptr >= in_ptr + nbr_spl * _nbr_chn);
assert (out_1_ptr <= in_ptr || out_1_ptr >= in_ptr + nbr_spl * _nbr_chn);
assert ( out_0_ptr + nbr_spl * _nbr_chn <= out_1_ptr
|| out_1_ptr + nbr_spl * _nbr_chn <= out_0_ptr);
assert (nbr_spl > 0);
long pos = 0;
if (_phase == 1)
{
__m512d out_0;
__m512d out_1;
process_sample (out_0, out_1, _mm512_loadu_pd (in_ptr));
_mm512_storeu_pd (out_0_ptr, out_0);
_mm512_storeu_pd (out_1_ptr, out_1);
++ pos;
}
const long end = ((nbr_spl - pos) & -_nbr_phases) + pos;
__m512d prev = _mm512_load_pd (_prev);
while (pos < end)
{
const auto ofs_0 = pos * _nbr_chn;
const __m512d input_0 = _mm512_loadu_pd (in_ptr + ofs_0);
__m512d out_0 = input_0;
__m512d out_1 = prev;
StageProc8F64Avx512 <NBR_COEFS>::process_sample_neg (
NBR_COEFS, out_0, out_1, &_bifilter [0] [0]
);
_mm512_storeu_pd (out_0_ptr + ofs_0, out_0);
_mm512_storeu_pd (out_1_ptr + ofs_0, out_1);
const auto ofs_1 = ofs_0 + _nbr_chn;
const __m512d input_1 = _mm512_loadu_pd (in_ptr + ofs_1);
out_0 = input_1;
out_1 = input_0; // prev
StageProc8F64Avx512 <NBR_COEFS>::process_sample_neg (
NBR_COEFS, out_0, out_1, &_bifilter [1] [0]
);
_mm512_storeu_pd (out_0_ptr + ofs_1, out_0);
_mm512_storeu_pd (out_1_ptr + ofs_1, out_1);
prev = input_1;
pos += 2;
}
_mm512_store_pd (_prev, prev);
if (pos < nbr_spl)
{
assert (pos + 1 == nbr_spl);
__m512d out_0;
__m512d out_1;
const auto ofs = pos * _nbr_chn;
process_sample (out_0, out_1, _mm512_loadu_pd (in_ptr + ofs));
_mm512_storeu_pd (out_0_ptr + ofs, out_0);
_mm512_storeu_pd (out_1_ptr + ofs, out_1);
}
}
/*
==============================================================================
Name: clear_buffers
Description:
Clears filter memory, as if it processed silence since an infinite amount
of time.
Throws: Nothing
==============================================================================
*/
template <int NC>
void PhaseHalfPi8F64Avx512 <NC>::clear_buffers ()
{
_phase = 0;
for (int i = 0; i < NBR_COEFS + 2; ++i)
{
_mm512_store_pd (_bifilter [0] [i]._mem, _mm512_setzero_pd ());
_mm512_store_pd (_bifilter [1] [i]._mem, _mm512_setzero_pd ());
}
_mm512_store_pd (_prev, _mm512_setzero_pd ());
}
/*\\\ PROTECTED \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
/*\\\ PRIVATE \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
} // namespace hiir
#endif // hiir_PhaseHalfPi8F64Avx512_CODEHEADER_INCLUDED
/*\\\ EOF \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/