-
Notifications
You must be signed in to change notification settings - Fork 24
/
algorithms.hh
411 lines (389 loc) · 8.71 KB
/
algorithms.hh
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
/*
SIMD-ified LDPC algorithms
Copyright 2018 Ahmet Inan <[email protected]>
*/
#ifndef ALGORITHMS_HH
#define ALGORITHMS_HH
#include "generic.hh"
#include "exclusive_reduce.hh"
template <typename VALUE, int WIDTH>
struct SelfCorrectedUpdate<SIMD<VALUE, WIDTH>>
{
typedef SIMD<VALUE, WIDTH> TYPE;
static void update(TYPE *a, TYPE b)
{
*a = vreinterpret<TYPE>(vand(vmask(b), vorr(vceqz(*a), veor(vcgtz(*a), vcltz(b)))));
}
};
template <typename VALUE, int WIDTH, typename UPDATE>
struct MinSumAlgorithm<SIMD<VALUE, WIDTH>, UPDATE>
{
typedef SIMD<VALUE, WIDTH> TYPE;
static TYPE zero()
{
return vzero<TYPE>();
}
static TYPE one()
{
return vdup<TYPE>(1);
}
static TYPE min(TYPE a, TYPE b)
{
return vmin(a, b);
}
static TYPE sign(TYPE a, TYPE b)
{
return vsign(a, b);
}
static void finalp(TYPE *links, int cnt)
{
TYPE mags[cnt], mins[cnt];
for (int i = 0; i < cnt; ++i)
mags[i] = vabs(links[i]);
CODE::exclusive_reduce(mags, mins, cnt, min);
TYPE signs[cnt];
CODE::exclusive_reduce(links, signs, cnt, sign);
for (int i = 0; i < cnt; ++i)
links[i] = sign(mins[i], signs[i]);
}
static TYPE add(TYPE a, TYPE b)
{
return vadd(a, b);
}
static TYPE sub(TYPE a, TYPE b)
{
return vsub(a, b);
}
static bool bad(TYPE v, int blocks)
{
auto tmp = vcgtz(v);
for (int i = 0; i < blocks; ++i)
if (!tmp.v[i])
return true;
return false;
}
static void update(TYPE *a, TYPE b)
{
UPDATE::update(a, b);
}
};
template <int WIDTH, typename UPDATE>
struct MinSumAlgorithm<SIMD<int8_t, WIDTH>, UPDATE>
{
typedef int8_t VALUE;
typedef SIMD<VALUE, WIDTH> TYPE;
static TYPE zero()
{
return vzero<TYPE>();
}
static TYPE one()
{
return vdup<TYPE>(1);
}
static TYPE sign(TYPE a, TYPE b)
{
return vsign(a, b);
}
static TYPE eor(TYPE a, TYPE b)
{
return vreinterpret<TYPE>(veor(vmask(a), vmask(b)));
}
static TYPE orr(TYPE a, TYPE b)
{
return vreinterpret<TYPE>(vorr(vmask(a), vmask(b)));
}
static TYPE other(TYPE a, TYPE b, TYPE c)
{
return vreinterpret<TYPE>(vbsl(vceq(a, b), vmask(c), vmask(b)));
}
static void finalp(TYPE *links, int cnt)
{
TYPE mags[cnt];
for (int i = 0; i < cnt; ++i)
mags[i] = vqabs(links[i]);
TYPE mins[2];
mins[0] = vmin(mags[0], mags[1]);
mins[1] = vmax(mags[0], mags[1]);
for (int i = 2; i < cnt; ++i) {
mins[1] = vmin(mins[1], vmax(mins[0], mags[i]));
mins[0] = vmin(mins[0], mags[i]);
}
TYPE signs = links[0];
for (int i = 1; i < cnt; ++i)
signs = eor(signs, links[i]);
for (int i = 0; i < cnt; ++i)
links[i] = sign(other(mags[i], mins[0], mins[1]), orr(eor(signs, links[i]), vdup<TYPE>(127)));
}
static TYPE add(TYPE a, TYPE b)
{
return vqadd(a, b);
}
static TYPE sub(TYPE a, TYPE b)
{
return vqsub(a, b);
}
static bool bad(TYPE v, int blocks)
{
auto tmp = vcgtz(v);
for (int i = 0; i < blocks; ++i)
if (!tmp.v[i])
return true;
return false;
}
static void update(TYPE *a, TYPE b)
{
UPDATE::update(a, vmin(vmax(b, vdup<TYPE>(-32)), vdup<TYPE>(31)));
}
};
template <typename VALUE, int WIDTH, typename UPDATE, int FACTOR>
struct OffsetMinSumAlgorithm<SIMD<VALUE, WIDTH>, UPDATE, FACTOR>
{
typedef SIMD<VALUE, WIDTH> TYPE;
static TYPE zero()
{
return vzero<TYPE>();
}
static TYPE one()
{
return vdup<TYPE>(1);
}
static TYPE min(TYPE a, TYPE b)
{
return vmin(a, b);
}
static TYPE sign(TYPE a, TYPE b)
{
return vsign(a, b);
}
static void finalp(TYPE *links, int cnt)
{
TYPE beta = vdup<TYPE>(0.5 * FACTOR);
TYPE mags[cnt], mins[cnt];
for (int i = 0; i < cnt; ++i)
mags[i] = vmax(vsub(vabs(links[i]), beta), vzero<TYPE>());
CODE::exclusive_reduce(mags, mins, cnt, min);
TYPE signs[cnt];
CODE::exclusive_reduce(links, signs, cnt, sign);
for (int i = 0; i < cnt; ++i)
links[i] = sign(mins[i], signs[i]);
}
static TYPE add(TYPE a, TYPE b)
{
return vadd(a, b);
}
static TYPE sub(TYPE a, TYPE b)
{
return vsub(a, b);
}
static bool bad(TYPE v, int blocks)
{
auto tmp = vcgtz(v);
for (int i = 0; i < blocks; ++i)
if (!tmp.v[i])
return true;
return false;
}
static void update(TYPE *a, TYPE b)
{
UPDATE::update(a, b);
}
};
template <int WIDTH, typename UPDATE, int FACTOR>
struct OffsetMinSumAlgorithm<SIMD<int8_t, WIDTH>, UPDATE, FACTOR>
{
typedef int8_t VALUE;
typedef SIMD<VALUE, WIDTH> TYPE;
static TYPE zero()
{
return vzero<TYPE>();
}
static TYPE one()
{
return vdup<TYPE>(1);
}
static TYPE sign(TYPE a, TYPE b)
{
return vsign(a, b);
}
static TYPE eor(TYPE a, TYPE b)
{
return vreinterpret<TYPE>(veor(vmask(a), vmask(b)));
}
static TYPE orr(TYPE a, TYPE b)
{
return vreinterpret<TYPE>(vorr(vmask(a), vmask(b)));
}
static TYPE other(TYPE a, TYPE b, TYPE c)
{
return vreinterpret<TYPE>(vbsl(vceq(a, b), vmask(c), vmask(b)));
}
static void finalp(TYPE *links, int cnt)
{
auto beta = vunsigned(vdup<TYPE>(std::nearbyint(0.5 * FACTOR)));
TYPE mags[cnt];
for (int i = 0; i < cnt; ++i)
mags[i] = vsigned(vqsub(vunsigned(vqabs(links[i])), beta));
TYPE mins[2];
mins[0] = vmin(mags[0], mags[1]);
mins[1] = vmax(mags[0], mags[1]);
for (int i = 2; i < cnt; ++i) {
mins[1] = vmin(mins[1], vmax(mins[0], mags[i]));
mins[0] = vmin(mins[0], mags[i]);
}
TYPE signs = links[0];
for (int i = 1; i < cnt; ++i)
signs = eor(signs, links[i]);
for (int i = 0; i < cnt; ++i)
links[i] = sign(other(mags[i], mins[0], mins[1]), orr(eor(signs, links[i]), vdup<TYPE>(127)));
}
static TYPE add(TYPE a, TYPE b)
{
return vqadd(a, b);
}
static TYPE sub(TYPE a, TYPE b)
{
return vqsub(a, b);
}
static bool bad(TYPE v, int blocks)
{
auto tmp = vcgtz(v);
for (int i = 0; i < blocks; ++i)
if (!tmp.v[i])
return true;
return false;
}
static void update(TYPE *a, TYPE b)
{
UPDATE::update(a, vmin(vmax(b, vdup<TYPE>(-32)), vdup<TYPE>(31)));
}
};
template <typename VALUE, int WIDTH, typename UPDATE, int FACTOR>
struct MinSumCAlgorithm<SIMD<VALUE, WIDTH>, UPDATE, FACTOR>
{
typedef SIMD<VALUE, WIDTH> TYPE;
static TYPE zero()
{
return vzero<TYPE>();
}
static TYPE one()
{
return vdup<TYPE>(1);
}
static TYPE sign(TYPE a, TYPE b)
{
return vsign(a, b);
}
static TYPE correction_factor(TYPE a, TYPE b)
{
TYPE apb = vabs(vadd(a, b));
TYPE apb2 = vadd(apb, apb);
TYPE amb = vabs(vsub(a, b));
TYPE amb2 = vadd(amb, amb);
TYPE factor2 = vdup<TYPE>(FACTOR * 2);
auto pc = vmask(vdup<TYPE>(VALUE(FACTOR) / VALUE(2)));
auto nc = vmask(vdup<TYPE>(-VALUE(FACTOR) / VALUE(2)));
pc = vand(pc, vand(vcgt(factor2, apb), vcgt(amb, apb2)));
nc = vand(nc, vand(vcgt(factor2, amb), vcgt(apb, amb2)));
return vreinterpret<TYPE>(vorr(pc, nc));
}
static TYPE minc(TYPE a, TYPE b)
{
TYPE m = vmin(vabs(a), vabs(b));
TYPE x = vsign(vsign(m, a), b);
x = vadd(x, correction_factor(a, b));
return x;
}
static void finalp(TYPE *links, int cnt)
{
TYPE tmp[cnt];
CODE::exclusive_reduce(links, tmp, cnt, minc);
for (int i = 0; i < cnt; ++i)
links[i] = tmp[i];
}
static TYPE add(TYPE a, TYPE b)
{
return vadd(a, b);
}
static TYPE sub(TYPE a, TYPE b)
{
return vsub(a, b);
}
static bool bad(TYPE v, int blocks)
{
auto tmp = vcgtz(v);
for (int i = 0; i < blocks; ++i)
if (!tmp.v[i])
return true;
return false;
}
static void update(TYPE *a, TYPE b)
{
UPDATE::update(a, b);
}
};
template <int WIDTH, typename UPDATE, int FACTOR>
struct MinSumCAlgorithm<SIMD<int8_t, WIDTH>, UPDATE, FACTOR>
{
typedef int8_t VALUE;
typedef SIMD<VALUE, WIDTH> TYPE;
static TYPE zero()
{
return vzero<TYPE>();
}
static TYPE one()
{
return vdup<TYPE>(1);
}
static TYPE sign(TYPE a, TYPE b)
{
return vsign(a, b);
}
static TYPE correction_factor(TYPE a, TYPE b)
{
TYPE apb = vqabs(vqadd(a, b));
TYPE apb2 = vqadd(apb, apb);
TYPE amb = vqabs(vqsub(a, b));
TYPE amb2 = vqadd(amb, amb);
TYPE factor2 = vdup<TYPE>(FACTOR * 2);
auto pc = vmask(vdup<TYPE>(VALUE(FACTOR) / VALUE(2)));
auto nc = vmask(vdup<TYPE>(-VALUE(FACTOR) / VALUE(2)));
pc = vand(pc, vand(vcgt(factor2, apb), vcgt(amb, apb2)));
nc = vand(nc, vand(vcgt(factor2, amb), vcgt(apb, amb2)));
return vreinterpret<TYPE>(vorr(pc, nc));
}
static TYPE minc(TYPE a, TYPE b)
{
TYPE m = vmin(vqabs(a), vqabs(b));
TYPE x = vsign(vsign(m, a), b);
x = vqadd(x, correction_factor(a, b));
return x;
}
static void finalp(TYPE *links, int cnt)
{
TYPE tmp[cnt];
CODE::exclusive_reduce(links, tmp, cnt, minc);
for (int i = 0; i < cnt; ++i)
links[i] = tmp[i];
}
static TYPE add(TYPE a, TYPE b)
{
return vqadd(a, b);
}
static TYPE sub(TYPE a, TYPE b)
{
return vqsub(a, b);
}
static bool bad(TYPE v, int blocks)
{
auto tmp = vcgtz(v);
for (int i = 0; i < blocks; ++i)
if (!tmp.v[i])
return true;
return false;
}
static void update(TYPE *a, TYPE b)
{
UPDATE::update(a, vmin(vmax(b, vdup<TYPE>(-32)), vdup<TYPE>(31)));
}
};
#endif