-
Notifications
You must be signed in to change notification settings - Fork 24
/
flooding_decoder.hh
171 lines (165 loc) · 3.75 KB
/
flooding_decoder.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
/*
LDPC SISO flooding decoder
Copyright 2018 Ahmet Inan <[email protected]>
*/
#ifndef FLOODING_DECODER_HH
#define FLOODING_DECODER_HH
#include "exclusive_reduce.hh"
#include "ldpc.hh"
template <typename TYPE, typename ALG>
class LDPCDecoder
{
TYPE *bnl, *bnv, *cnl, *cnv;
uint8_t *cnc;
LDPCInterface *ldpc;
ALG alg;
int N, K, R, CNL, LT;
bool initialized;
void bit_node_init(TYPE *data, TYPE *parity)
{
TYPE *bl = bnl;
for (int i = 0; i < R-1; ++i) {
bnv[i] = parity[i];
*bl++ = parity[i];
*bl++ = parity[i];
}
bnv[R-1] = parity[R-1];
*bl++ = parity[R-1];
ldpc->first_bit();
for (int j = 0; j < K; ++j) {
bnv[j+R] = data[j];
int bit_deg = ldpc->bit_deg();
for (int n = 0; n < bit_deg; ++n)
*bl++ = data[j];
ldpc->next_bit();
}
}
void check_node_update()
{
TYPE *bl = bnl;
cnv[0] = alg.sign(alg.one(), bnv[0]);
cnl[0] = *bl++;
cnc[0] = 1;
for (int i = 1; i < R; ++i) {
cnv[i] = alg.sign(alg.sign(alg.one(), bnv[i-1]), bnv[i]);
cnl[CNL*i] = *bl++;
cnl[CNL*i+1] = *bl++;
cnc[i] = 2;
}
ldpc->first_bit();
for (int j = 0; j < K; ++j) {
int *acc_pos = ldpc->acc_pos();
int bit_deg = ldpc->bit_deg();
for (int n = 0; n < bit_deg; ++n) {
int i = acc_pos[n];
cnv[i] = alg.sign(cnv[i], bnv[j+R]);
cnl[CNL*i+cnc[i]++] = *bl++;
}
ldpc->next_bit();
}
for (int i = 0; i < R; ++i)
alg.finalp(cnl+CNL*i, cnc[i]);
}
void bit_node_update(TYPE *data, TYPE *parity)
{
TYPE *bl = bnl;
bnv[0] = alg.add(parity[0], alg.add(cnl[0], cnl[CNL]));
alg.update(bl++, alg.add(parity[0], cnl[CNL]));
alg.update(bl++, alg.add(parity[0], cnl[0]));
cnc[0] = 1;
for (int i = 1; i < R-1; ++i) {
bnv[i] = alg.add(parity[i], alg.add(cnl[CNL*i+1], cnl[CNL*(i+1)]));
alg.update(bl++, alg.add(parity[i], cnl[CNL*(i+1)]));
alg.update(bl++, alg.add(parity[i], cnl[CNL*i+1]));
cnc[i] = 2;
}
bnv[R-1] = alg.add(parity[R-1], cnl[CNL*(R-1)+1]);
alg.update(bl++, parity[R-1]);
cnc[R-1] = 2;
ldpc->first_bit();
for (int j = 0; j < K; ++j) {
int *acc_pos = ldpc->acc_pos();
int bit_deg = ldpc->bit_deg();
TYPE inp[bit_deg];
for (int n = 0; n < bit_deg; ++n) {
int i = acc_pos[n];
inp[n] = cnl[CNL*i+cnc[i]++];
}
TYPE out[bit_deg];
CODE::exclusive_reduce(inp, out, bit_deg, alg.add);
bnv[j+R] = alg.add(data[j], alg.add(out[0], inp[0]));
for (int n = 0; n < bit_deg; ++n)
alg.update(bl++, alg.add(data[j], out[n]));
ldpc->next_bit();
}
}
bool hard_decision(int blocks)
{
for (int i = 0; i < R; ++i)
if (alg.bad(cnv[i], blocks))
return true;
return false;
}
void update_user(TYPE *data, TYPE *parity)
{
for (int i = 0; i < R; ++i)
parity[i] = bnv[i];
for (int i = 0; i < K; ++i)
data[i] = bnv[i+R];
}
public:
LDPCDecoder() : initialized(false)
{
}
void init(LDPCInterface *it)
{
if (initialized) {
delete[] bnl;
delete[] bnv;
delete[] cnl;
delete[] cnv;
delete[] cnc;
delete ldpc;
}
initialized = true;
ldpc = it->clone();
N = ldpc->code_len();
K = ldpc->data_len();
R = N - K;
CNL = ldpc->links_max_cn();
LT = ldpc->links_total();
bnl = new TYPE[LT];
bnv = new TYPE[N];
cnl = new TYPE[R * CNL];
cnv = new TYPE[R];
cnc = new uint8_t[R];
}
int operator()(TYPE *data, TYPE *parity, int trials = 50, int blocks = 1)
{
bit_node_init(data, parity);
check_node_update();
if (!hard_decision(blocks))
return trials;
--trials;
bit_node_update(data, parity);
check_node_update();
while (hard_decision(blocks) && --trials >= 0) {
bit_node_update(data, parity);
check_node_update();
}
update_user(data, parity);
return trials;
}
~LDPCDecoder()
{
if (initialized) {
delete[] bnl;
delete[] bnv;
delete[] cnl;
delete[] cnv;
delete[] cnc;
delete ldpc;
}
}
};
#endif