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
|
/* -*- c++ -*- */
/*
* Copyright 2015 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <gnuradio/fec/polar_decoder_common.h>
#include <gnuradio/io_signature.h>
#include <volk/volk.h>
#include <cstdio>
namespace gr {
namespace fec {
namespace code {
const float polar_decoder_common::D_LLR_FACTOR = -2.19722458f;
polar_decoder_common::polar_decoder_common(int block_size,
int num_info_bits,
std::vector<int> frozen_bit_positions,
std::vector<uint8_t> frozen_bit_values)
: polar_common(block_size, num_info_bits, frozen_bit_positions, frozen_bit_values),
d_frozen_bit_counter(0)
{
}
polar_decoder_common::~polar_decoder_common() {}
void polar_decoder_common::initialize_decoder(unsigned char* u,
float* llrs,
const float* input)
{
volk_32f_s32f_multiply_32f(
llrs + block_size() * block_power(), input, D_LLR_FACTOR, block_size());
memset(u, 0, sizeof(unsigned char) * block_size() * block_power());
d_frozen_bit_counter = 0;
}
float polar_decoder_common::llr_odd(const float la, const float lb) const
{
return copysignf(1.0f, la) * copysignf(1.0f, lb) * std::min(fabs(la), fabs(lb));
}
float polar_decoder_common::llr_even(const float la,
const float lb,
const unsigned char f) const
{
switch (f) {
case 0:
return lb + la;
default:
return lb - la;
}
}
void polar_decoder_common::butterfly(
float* llrs, unsigned char* u, const int stage, const int u_num, const int row)
{
butterfly_volk(llrs, u, stage, u_num, row);
}
void polar_decoder_common::butterfly_generic(
float* llrs, unsigned char* u, const int stage, const int u_num, const int row)
{
const int next_stage = stage + 1;
const int half_stage_size = 0x01 << stage;
const int stage_size = half_stage_size << 1;
const bool is_upper_stage_half = row % stage_size < half_stage_size;
// // this is a natural bit order impl
float* next_llrs = llrs + block_size(); // LLRs are stored in a consecutive array.
float* call_row_llr = llrs + row;
const int section = row - (row % stage_size);
const int jump_size = ((row % half_stage_size) << 1) % stage_size;
const int next_upper_row = section + jump_size;
const int next_lower_row = next_upper_row + 1;
const float* upper_right_llr_ptr = next_llrs + next_upper_row;
const float* lower_right_llr_ptr = next_llrs + next_lower_row;
if (!is_upper_stage_half) {
const int u_pos = u_num >> stage;
const unsigned char f = u[u_pos - 1];
*call_row_llr = llr_even(*upper_right_llr_ptr, *lower_right_llr_ptr, f);
return;
}
if (block_power() > next_stage) {
unsigned char* u_half = u + block_size();
odd_xor_even_values(u_half, u, u_num);
butterfly(next_llrs, u_half, next_stage, u_num, next_upper_row);
even_u_values(u_half, u, u_num);
butterfly(next_llrs, u_half, next_stage, u_num, next_lower_row);
}
*call_row_llr = llr_odd(*upper_right_llr_ptr, *lower_right_llr_ptr);
}
void polar_decoder_common::butterfly_volk(
float* llrs, unsigned char* u, const int stage, const int u_num, const int row)
{
volk_32f_8u_polarbutterfly_32f(llrs, u, block_power(), stage, u_num, row);
}
void polar_decoder_common::even_u_values(unsigned char* u_even,
const unsigned char* u,
const int u_num)
{
u++;
for (int i = 1; i < u_num; i += 2) {
*u_even++ = *u;
u += 2;
}
}
void polar_decoder_common::odd_xor_even_values(unsigned char* u_xor,
const unsigned char* u,
const int u_num)
{
for (int i = 1; i < u_num; i += 2) {
*u_xor++ = *u ^ *(u + 1);
u += 2;
}
}
const bool polar_decoder_common::is_frozen_bit(const int u_num) const
{
return d_frozen_bit_counter < d_frozen_bit_positions.size() &&
u_num == d_frozen_bit_positions.at(d_frozen_bit_counter);
}
const unsigned char polar_decoder_common::next_frozen_bit()
{
return d_frozen_bit_values[d_frozen_bit_counter++];
}
void polar_decoder_common::extract_info_bits(unsigned char* output,
const unsigned char* input) const
{
unsigned int frozenbit_num = 0;
for (int i = 0; i < block_size(); i++) {
if (frozenbit_num < d_frozen_bit_positions.size() &&
d_frozen_bit_positions.at(frozenbit_num) == i) {
frozenbit_num++;
} else {
*output++ = *input;
}
input++;
}
}
void polar_decoder_common::print_pretty_llr_vector(const float* llr_vec) const
{
for (int row = 0; row < block_size(); row++) {
std::cout << row << "->" << int(bit_reverse(row, block_power())) << ":\t";
for (int stage = 0; stage < block_power() + 1; stage++) {
printf("%+4.2f, ", llr_vec[(stage * block_size()) + row]);
}
std::cout << std::endl;
}
}
} /* namespace code */
} /* namespace fec */
} /* namespace gr */
|