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
|
/* -*- 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_common.h>
#include <gnuradio/io_signature.h>
#include <volk/volk.h>
#include <gnuradio/blocks/pack_k_bits.h>
#include <gnuradio/blocks/unpack_k_bits.h>
#include <cmath>
#include <iostream>
#include <stdexcept>
#include <vector>
namespace gr {
namespace fec {
namespace code {
polar_common::polar_common(int block_size,
int num_info_bits,
std::vector<int> frozen_bit_positions,
std::vector<uint8_t> frozen_bit_values)
: d_frozen_bit_positions(frozen_bit_positions),
d_frozen_bit_values(frozen_bit_values),
d_block_size(block_size),
d_block_power((int)log2(float(block_size))),
d_num_info_bits(num_info_bits)
{
if (pow(2, d_block_power) != d_block_size) {
throw std::runtime_error("block_size MUST be a power of 2!");
}
unsigned int num_frozen_bits = d_block_size - d_num_info_bits;
if (num_frozen_bits != d_frozen_bit_positions.size()) {
throw std::runtime_error(
"number of frozen bit positions must equal block_size - num_info_bits");
}
// According to papers frozen bits default to '0'.
while (d_frozen_bit_values.size() < num_frozen_bits) {
d_frozen_bit_values.push_back(0);
}
initialize_info_bit_position_vector();
setup_volk_vectors();
setup_info_bit_positions_reversed();
d_unpacker = new gr::blocks::kernel::unpack_k_bits(8);
}
void polar_common::initialize_info_bit_position_vector()
{
int num_frozen_bit = 0;
int frozen_pos = d_frozen_bit_positions.at(num_frozen_bit);
for (int i = 0; i < d_block_size; i++) {
if (i != frozen_pos) {
d_info_bit_positions.push_back((int)i);
} else {
num_frozen_bit++;
num_frozen_bit =
std::min(num_frozen_bit, (int)(d_frozen_bit_positions.size() - 1));
frozen_pos = d_frozen_bit_positions.at(num_frozen_bit);
}
}
if ((int)d_info_bit_positions.size() != num_info_bits()) {
throw std::runtime_error(
"polar_common: number of info bit positions MUST equal num_info_bits (K)!");
}
}
void polar_common::setup_info_bit_positions_reversed()
{
for (unsigned int i = 0; i < d_info_bit_positions.size(); i++) {
d_info_bit_positions_reversed.push_back(
(int)bit_reverse((long)d_info_bit_positions.at(i), block_power()));
}
if ((int)d_info_bit_positions_reversed.size() != num_info_bits()) {
throw std::runtime_error(
"polar_encoder: number of info bit positions MUST equal num_info_bits (K)!");
}
}
void polar_common::setup_volk_vectors()
{
int nfrozen = block_size() - num_info_bits();
d_volk_temp = (unsigned char*)volk_malloc(sizeof(unsigned char) * block_size(),
volk_get_alignment());
d_volk_frozen_bit_mask = (unsigned char*)volk_malloc(
sizeof(unsigned char) * block_size(), volk_get_alignment());
d_volk_frozen_bits = (unsigned char*)volk_malloc(sizeof(unsigned char) * nfrozen,
volk_get_alignment());
std::copy(d_frozen_bit_values.begin(), d_frozen_bit_values.end(), d_volk_frozen_bits);
std::fill(
d_volk_frozen_bits + d_frozen_bit_values.size(), d_volk_frozen_bits + nfrozen, 0);
unsigned int nfbit = 0;
for (int i = 0; i < block_size(); i++) {
unsigned char m = 0x00;
if (nfbit < d_frozen_bit_positions.size() && d_frozen_bit_positions[nfbit] == i) {
m = 0xFF;
nfbit++;
}
d_volk_frozen_bit_mask[i] = m;
}
}
void polar_common::volk_encode(unsigned char* out_buf, const unsigned char* in_buf)
{
volk_8u_x3_encodepolar_8u_x2(out_buf,
d_volk_temp,
d_volk_frozen_bit_mask,
d_volk_frozen_bits,
in_buf,
block_size());
}
void polar_common::volk_encode_block(unsigned char* out_buf, unsigned char* in_buf)
{
volk_8u_x2_encodeframepolar_8u(out_buf, in_buf, block_size());
}
polar_common::~polar_common()
{
delete d_unpacker;
volk_free(d_volk_temp);
volk_free(d_volk_frozen_bit_mask);
volk_free(d_volk_frozen_bits);
}
long polar_common::bit_reverse(long value, int active_bits) const
{
long r = 0;
for (int i = 0; i < active_bits; i++) {
r <<= 1;
r |= value & 1;
value >>= 1;
}
return r;
}
void polar_common::print_packed_bit_array(const unsigned char* printed_array,
const int num_bytes) const
{
int num_bits = num_bytes << 3;
unsigned char* temp = new unsigned char[num_bits];
d_unpacker->unpack(temp, printed_array, num_bytes);
std::cout << "[";
for (int i = 0; i < num_bits; i++) {
std::cout << (int)*(temp + i) << " ";
}
std::cout << "]" << std::endl;
delete[] temp;
}
void polar_common::print_unpacked_bit_array(const unsigned char* bits,
const unsigned int num_bytes) const
{
std::cout << "( ";
for (unsigned int i = 0; i < num_bytes; i++) {
std::cout << (int)*bits++ << ", ";
}
std::cout << ")" << std::endl;
}
} /* namespace code */
} /* namespace fec */
} /* namespace gr */
|