mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 12:40:28 +00:00
Compare commits
7 Commits
pdsch-debu
...
ldpc_decod
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4161485716 | ||
|
|
7a70155d0a | ||
|
|
c44646ae9d | ||
|
|
751f1b1917 | ||
|
|
f86f4fda37 | ||
|
|
e49f68dc50 | ||
|
|
2912abde44 |
@@ -148,23 +148,19 @@
|
||||
\tableofcontents
|
||||
|
||||
\newpage
|
||||
\section{Introduction}
|
||||
\label{sec:introduction}
|
||||
\section{Introduction}#sec:introduction
|
||||
|
||||
Low Density Parity Check (LDPC) codes have been developed by Gallager in 1963 \cite{gallager1962low}. They are linear error correcting codes that are capacity-achieving for large block length and are completely described by their Parity Check Matrix (PCM) $\H^{M\times N}$. The PCM $\H$ defines $M$ constraints on the codeword $\c$ of length $N$ such that
|
||||
\begin{equation}
|
||||
\label{eq:29}
|
||||
\H\c = \0.
|
||||
\end{equation}
|
||||
\H\c = \0.
|
||||
\end{equation} {#eq:29}
|
||||
The number of information bits $B$ that can be encoded with $\H$ is given by $B=N-M$. Hence the code rate $R$ of $\H$ reads
|
||||
\begin{equation}
|
||||
\label{eq:37}
|
||||
R = \frac{B}{N} = 1-\frac{M}{N}.
|
||||
\end{equation}
|
||||
\end{equation} {#eq:37}
|
||||
|
||||
|
||||
\subsection{LDPC in NR}
|
||||
\label{sec:ldpc-nr}
|
||||
\subsection{LDPC in NR}{#sec:ldpc-nr}
|
||||
|
||||
NR uses quasi-cyclic (QC) Protograph LDPC codes, i.e. a smaller graph, called Base Graph (BG), is defined and utilized to construct the larger PCM. This has the advantage that the large PCM does not have to be stored in memory and allows for a more efficient implementation while maintaining good decoding properties.
|
||||
Two BGs $\Hbg\in\Nbb^{\Mb\times \Nb}$ are defined in NR:
|
||||
@@ -176,51 +172,45 @@ where $\Nbb$ is the set of integers. For instance the first 3 rows and 13 column
|
||||
|
||||
\setcounter{MaxMatrixCols}{30}
|
||||
\begin{equation*}
|
||||
\label{eq:33}
|
||||
\Hbgt =
|
||||
\begin{bmatrix}
|
||||
9 & 117 & 204 & 26 & \emptyset & \emptyset & 189 & \emptyset & \emptyset & 205 & 0 & 0 & \emptyset & \emptyset \\
|
||||
127 & \emptyset & \emptyset & 166 & 253 & 125 & 226 & 156 & 224 & 252 & \emptyset & 0 & 0 & \emptyset \\
|
||||
81 & 114 & \emptyset & 44 & 52 & \emptyset & \emptyset & \emptyset & 240 & \emptyset & 1 & \emptyset & 0 & 0
|
||||
\end{bmatrix}.
|
||||
\end{equation*}
|
||||
\end{equation*}{#eq:33}
|
||||
|
||||
To obtain the PCM $\H$ from the BG $\Hbg$, each element $\Hbg(i,j)$ in the BG is replaced by a lifting matrix of size $\Zc\times \Zc$ according to
|
||||
\begin{equation}
|
||||
\label{eq:35}
|
||||
\Hbg(i,j) =
|
||||
\begin{cases}
|
||||
\0 & \textrm{if}~ \Hbg(i,j)=\emptyset \\
|
||||
\I_{P_{ij}} & \textrm{otherwise}
|
||||
\end{cases}
|
||||
\end{equation}
|
||||
\end{equation} {eq:35}
|
||||
where $\I_{P_{ij}}$ is the identity matrix circularly shifted to the right by $P_{ij} = \Hbg(i,j)\mod \Zc$. Hence, the resulting PCM $\H$ will be of size $\Mb\Zc\times\Nb\Zc$.
|
||||
|
||||
The lifting size $\Zc$ depends on the number of bits to encode. To limit the complexity, a discrete set $\mathcal{Z}$ of possible values of $\Zc$ has been defined in \cite{3gpp2017_38212} and the optimal value $\Zc$ is calculated according to
|
||||
\begin{equation}
|
||||
\label{eq:36}
|
||||
\Zc = \min_{\Z\in\mathcal{Z}}\left[Z\geq\frac{B}{\Nb}\right].
|
||||
\end{equation}
|
||||
\end{equation}{eq:36}
|
||||
|
||||
The base rate of the two BGs is $1/3$ and $1/5$ for BG1 and BG2, respectively. That is, BG1 encodes $K=22\Zc$ bits and BG2 encodes $K=10\Zc$ bits. Note that the first 2 columns of BG 1 and 2 are always punctured, that is after encoding, the first $2\Zc$ bits are discarded and not transmitted.
|
||||
For instance, consider $B=500$ information bits to encode using BG2, \eqref{eq:36} yields $\Zc=64$ hence $K=640$. Since $K>B$, $K-B=140$ filler bits are appended to the information bits. The PCM $\Hbgt$ is of size $2688\times 3328$ and the $640$ bits $\b$ are encoded according to \eqref{eq:29} at a rate $R \approx 0.192$. To achieve the higher base rate of $0.2$, the first $128$ are punctured, i.e. instead of transmitting all $3328$ bits, only $3200$ are transmitted resulting in the desired rate $R=640/3200=0.2$.
|
||||
For instance, consider $B=500$ information bits to encode using BG2, @eq:36 yields $\Zc=64$ hence $K=640$. Since $K>B$, $K-B=140$ filler bits are appended to the information bits. The PCM $\Hbgt$ is of size $2688\times 3328$ and the $640$ bits $\b$ are encoded according to @eq:29 at a rate $R \approx 0.192$. To achieve the higher base rate of $0.2$, the first $128$ are punctured, i.e. instead of transmitting all $3328$ bits, only $3200$ are transmitted resulting in the desired rate $R=640/3200=0.2$.
|
||||
|
||||
\subsection{LDPC Decoding}
|
||||
\label{sec:ldpc-decoding}
|
||||
\subsection{LDPC Decoding}{#sec:ldpc-decoding}
|
||||
|
||||
The decoding of codeword $\c$ can be achieved via the classical message passing algorithm. This algorithm can be illustrated best using the Tanner graph of the PCM. The rows of the PCM are called check nodes (CN) since they represent the parity check equations. The parity check equation of each of these check nodes involves various bits in the codeword. Similarly, every column of the PCM corresponds to a bit and each bit is involved in several parity check equations. In the Tanner graph representation, the bits are called bit nodes (BN). Let's go back to the previous example of BG2 and assume $\Zc=2$, hence the first 3 rows and 13 columns of BG2 $\Hbgt$ read
|
||||
\begin{equation*}
|
||||
\label{eq:36}
|
||||
\Hbgt =
|
||||
\begin{bmatrix}
|
||||
1 & 1 & 0 & 0 & \emptyset & \emptyset & 1 & \emptyset & \emptyset & 1 & 0 & 0 & \emptyset & \emptyset \\
|
||||
1 & \emptyset & \emptyset & 0 & 1 & 1 & 0 & 0 & 0 & 0 & \emptyset & 0 & 0 & \emptyset \\
|
||||
1 & 0 & \emptyset & 0 & 0 & \emptyset & \emptyset & \emptyset & 0 & \emptyset & 1 & \emptyset & 0 & 0
|
||||
\end{bmatrix}.
|
||||
\end{equation*}
|
||||
Replacing the elements according to \eqref{eq:35}, we obtain the first 6 rows and 26 columns of the PCM as
|
||||
\end{equation*}{eq:36}
|
||||
Replacing the elements according to @eq:35, we obtain the first 6 rows and 26 columns of the PCM as
|
||||
\begin{equation*}
|
||||
\label{eq:39}
|
||||
\H =
|
||||
\begin{bmatrix}
|
||||
0 & 1 & 0 & 1 & 1 & 0 & 1 & 0 & 0 & 0 & 0 & 0 & 0 & 1 & 0 & 0 & 0 & 0 & 0 & 1 & 1 & 0 & 1 & 0 & 0 & 0 & 0 & 0\\
|
||||
@@ -230,12 +220,11 @@ Replacing the elements according to \eqref{eq:35}, we obtain the first 6 rows an
|
||||
0 & 1 & 1 & 0 & 0 & 0 & 1 & 0 & 1 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 1 & 0 & 0 & 0 & 0 & 1 & 0 & 0 & 1 & 0 & 1 & 0\\
|
||||
1 & 0 & 0 & 1 & 0 & 0 & 0 & 1 & 0 & 1 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 1 & 0 & 0 & 1 & 0 & 0 & 0 & 0 & 1 & 0 & 1
|
||||
\end{bmatrix}.
|
||||
\end{equation*}
|
||||
\end{equation*}{eq:39}
|
||||
|
||||
The Tanner graph of the first 8 BNs is shown in Figure \ref{fig:tannergraph}.
|
||||
The Tanner graph of the first 8 BNs is shown in Figure {@fig:tannergraph}.
|
||||
|
||||
\begin{figure}[ht]
|
||||
\label{fig:tannergraph}
|
||||
\centering
|
||||
\def\ww{0.3cm}
|
||||
\def\hh{0.3cm}
|
||||
@@ -272,19 +261,17 @@ The Tanner graph of the first 8 BNs is shown in Figure \ref{fig:tannergraph}.
|
||||
|
||||
\end{tikzpicture}
|
||||
|
||||
\caption{Tanner graph for first 7 bits nodes and 3 check nodes from \eqref{eq:39}.}
|
||||
\end{figure}
|
||||
\caption{Tanner graph for first 7 bits nodes and 3 check nodes from @eq:39.}
|
||||
\end{figure}{fig:tannergraph}
|
||||
|
||||
The message passing algorithm is an iterative algorithm where probabilities of the bits (being either 0 or 1) are exchanged between the BNs and CNs. After sufficient iterations, the probabilities will have either converged to either 0 or 1 and the parity check equations will be satisfied, at this point, the codeword has been decoded correctly.
|
||||
|
||||
\newpage
|
||||
\section{LDPC Decoder Implementation}
|
||||
\label{sec:ldpc-implementation}
|
||||
\section{LDPC Decoder Implementation}{#sec:ldpc-implementation}
|
||||
|
||||
The implementation on a general purpose processor (GPP) has to take advantage of potential instruction extension of the processor architecture. We focus on the Intel x86 instruction set architecture (ISA) and its advanced vector extension (AVX). In particular, we utilize AVX2 with its 256-bit single instruction multiple data (SIMD) format. In order to utilize AVX2 to speed up the processing at the CNs and BNs, the corresponding data has to be ordered/aligned in a specific way. The processing flow of the LDPC decoder is depicted in \ref{fig:ldpc_decoder_flow}.
|
||||
The implementation on a general purpose processor (GPP) has to take advantage of potential instruction extension of the processor architecture. We focus on the Intel x86 instruction set architecture (ISA) and its advanced vector extension (AVX). In particular, we utilize AVX2 with its 256-bit single instruction multiple data (SIMD) format. In order to utilize AVX2 to speed up the processing at the CNs and BNs, the corresponding data has to be ordered/aligned in a specific way. The processing flow of the LDPC decoder is depicted in {@fig:ldpcdecoderflow}.
|
||||
|
||||
\begin{figure}[ht]
|
||||
\label{fig:ldpc_decoder_flow}
|
||||
\centering
|
||||
\def\ww{0.3cm}
|
||||
\def\hh{0.3cm}
|
||||
@@ -341,9 +328,9 @@ The implementation on a general purpose processor (GPP) has to take advantage of
|
||||
\end{tikzpicture}
|
||||
|
||||
\caption{LDPC Decoder processing flow.}
|
||||
\end{figure}
|
||||
\end{figure}{fig:ldpcdecoderflow}
|
||||
|
||||
The functions involved are described in more detail in Table \ref{tab:sum_func}.
|
||||
The functions involved are described in more detail in Table \ref{tbl:sum-func}.
|
||||
|
||||
\begin{table}[ht]
|
||||
\centering
|
||||
@@ -364,20 +351,17 @@ The functions involved are described in more detail in Table \ref{tab:sum_func}.
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
\caption{Summary of the LDPC decoder functions.}
|
||||
\label{tab:sum_func}
|
||||
\end{table}
|
||||
\end{table}{tbl:sum-func}
|
||||
|
||||
The input LLRs are assumed to be 8-bit and aligned on 32 bytes. CN processing is carried out in 8-bit whereas BN processing is done in 16 bit. Subsequently, the processing tasks at the CNs and BNs are explained in more detail.
|
||||
|
||||
\newpage
|
||||
\subsection{Check Node Processing}
|
||||
\label{sec:check-node-proc}
|
||||
\subsection{Check Node Processing}{#sec:check-node-proc}
|
||||
|
||||
Denote $q_{ij}$ the value from BN $j$ to CN $i$ and let $\Bcal_i$ be the set of connected BNs to the $i$th CN. Then, using the min-sum approximation, CN $i$ has to carry out the following operation for each connected BN.
|
||||
\begin{equation}
|
||||
\label{eq:40}
|
||||
r_{ji} = \prod_{j'\in\Bcal_i\setminus j}\sgn q_{ij'}\min_{j'\in\Bcal_i\setminus j} |q_{ij'}|
|
||||
\end{equation}
|
||||
\end{equation}{eq:40}
|
||||
where $r_{ji}$ is the value returned to BN $j$ from CN $i$. There are $\Mb = \{46,42\}$ CNs in BG 1 and BG 2, respectively. Each of these CNs is connected to only a small number of BNs. The number of connected BNs to CN $i$ is $|\Bcal_i|$. In BG1 and BG2, $|\Bcal_i|=\{3,4,5,6,7,8,9,10,19\}$ and $|\Bcal_i|=\{3,4,5,6,8,10\}$, respectively. The following tables show the number of CNs $M_{|\Bcal_i|}$ that are connected to the same number of BNs.
|
||||
|
||||
\begin{table}[ht]
|
||||
@@ -391,14 +375,12 @@ where $r_{ji}$ is the value returned to BN $j$ from CN $i$. There are $\Mb = \{4
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
\caption{Ceck node groups for BG1 and BG2.}
|
||||
\label{tab:checkNodeGroups}
|
||||
\end{table}
|
||||
\end{table}{tbl:checkNodeGroups}
|
||||
|
||||
It can be observed that each CN is at least connected to 3 BNs and there are 9 groups and 5 groups in BG1 and BG2, respectively. Denote the set of CN groups as $\Gcal$ and $M_k$ the number of CNs in group $k\in\Gcal$, e.g. for BG2 $M_4=20\Zc$. Each CN group will be processed separately. The CN processing buffer $p_C^k$ of group $k$ is defined as
|
||||
\begin{equation}
|
||||
\label{eq:44}
|
||||
p_C^k = \{\underbrace{q_{11}q_{21}\dots q_{M_k 1}}_{\text 1. BN},\underbrace{q_{12}q_{22}\dots q_{M_k 2}}_{\text 2. BN},\dots,\underbrace{q_{12}q_{22}\dots q_{M_k k}}_{\text last BN}\}
|
||||
\end{equation}
|
||||
\end{equation}{eq:44}
|
||||
Hence, $|p_C^k| = kM_k$, e.g, $\Zc=128$, $|p_C^4| = 4\cdot 20\cdot 128 = 10240$.
|
||||
|
||||
\begin{lstlisting}[frame=single,caption={Example of CN processing for group 3 from \texttt{cnProc}.},label=code_cnproc] % Start your code-block
|
||||
@@ -448,14 +430,12 @@ Hence, $|p_C^k| = kM_k$, e.g, $\Zc=128$, $|p_C^4| = 4\cdot 20\cdot 128 = 10240$.
|
||||
|
||||
Once all results of the check node processing $r_{ji}$ have been calculated, they are copied to the bit node processing buffer.
|
||||
|
||||
\subsection{Bit Node Processing}
|
||||
\label{sec:bit-node-processing}
|
||||
\subsection{Bit Node Processing}{#sec:bit-node-processing}
|
||||
|
||||
Denote $r_{ji}$ the value from CN $i$ to BN $j$ and let $\Ccal_j$ be the set of connected CNs to the $j$th BN. Each BN $j$ has to carry out the following operation for every connected CN $i\in\Ccal_j$.
|
||||
\begin{equation}
|
||||
\label{eq:46}
|
||||
q_{ij} = \Lambda_j + \sum_{i'\in\Ccal_j\setminus i}r_{ji'}
|
||||
\end{equation}
|
||||
\end{equation}{eq:46}
|
||||
|
||||
There are $\Nb = \{68,52\}$ BNs in BG 1 and BG 2, respectively. Each of these BNs is connected to only a small number of CNs. The number of connected CNs to BN $j$ is $|\Ccal_j|$. In BG1 and BG2, $|\Ccal_j|=\{1,4,7,8,9,10,11,12,28,30\}$ and $|\Ccal_j|=\{1,5,6,7,8,9,10,12,13,14,16,22,23\}$, respectively. The following tables show the number of BNs $K_{|\Ccal_j|}$ that are connected to the same number of CNs.
|
||||
|
||||
@@ -470,19 +450,17 @@ There are $\Nb = \{68,52\}$ BNs in BG 1 and BG 2, respectively. Each of these BN
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
\caption{Bit node groups for BG1 and BG2 for base rates 1/3 and 1/5, respectively.}
|
||||
\label{tab:bitNodeGroups}
|
||||
\end{table}
|
||||
\end{table}{tbl:bitNodeGroups}
|
||||
|
||||
The BNs that are connected to a single CN do not need to be considered in the BN processing since \eqref{eq:46} yields $q_{ij} = \Lambda_j$. It can be observed that the grouping is less compact, i.e. there are many groups with only a small number of elements.
|
||||
The BNs that are connected to a single CN do not need to be considered in the BN processing since @eq:46 yields $q_{ij} = \Lambda_j$. It can be observed that the grouping is less compact, i.e. there are many groups with only a small number of elements.
|
||||
|
||||
Denote the set of BN groups as $\Bcal$ and $K_k$ the number of BNs in group $k\in\Bcal$, e.g. for BG2 $K_5=2\Zc$. Each BN group will be processed separately. The BN processing buffer $p_B^k$ of group $k$ is defined as
|
||||
\begin{equation}
|
||||
\label{eq:47}
|
||||
p_B^k = \{\underbrace{r_{11}r_{21}\dots r_{K_k 1}}_{\text 1. CN},\underbrace{r_{12}r_{22}\dots r_{K_k 2}}_{\text 2. CN},\dots,\underbrace{r_{12}r_{22}\dots r_{K_k k}}_{\text last CN}\}
|
||||
\end{equation}
|
||||
\end{equation}{eq:47}
|
||||
Hence, $|p_B^k| = kK_k$, e.g, $\Zc=128$, $|p_B^5| = 5\cdot 2\cdot 128 = 1024$.
|
||||
|
||||
Depending on the code rate, some parity bits are not being transmitted. For instance, for BG2 with code rate $R = 1/3$ the last $20\Zc$ bits are discarded. Therefore, the last 20 columns or the last $20\Zc$ parity check equation are not required for decoding. This means that the BN groups shown in table \ref{tab:bitNodeGroups} are depending on the rate.
|
||||
Depending on the code rate, some parity bits are not being transmitted. For instance, for BG2 with code rate $R = 1/3$ the last $20\Zc$ bits are discarded. Therefore, the last 20 columns or the last $20\Zc$ parity check equation are not required for decoding. This means that the BN groups shown in table {@tbl:bitNodeGroups} are depending on the rate.
|
||||
|
||||
\begin{lstlisting}[frame=single,caption={Example of BN processing for group 3 from \texttt{bnProcPc}.},label=code_bnproc] % Start your code-block
|
||||
|
||||
@@ -539,23 +517,20 @@ Depending on the code rate, some parity bits are not being transmitted. For inst
|
||||
|
||||
The sum of the LLRs is carried out in 16 bit for accuracy and is then saturated to 8 bit for CN processing. Saturation after each addition results in significant loss of sensitivity for low code rates.
|
||||
|
||||
\subsection{Mapping to the Processing Buffers}
|
||||
\label{sec:mapp-cn-proc}
|
||||
\subsection{Mapping to the Processing Buffers}{#sec:mapp-cn-proc}
|
||||
|
||||
For efficient processing with the AVX instructions, the data is required to be aligned in a certain manner. That is the reason why processing buffers have been introduced. The drawback is that the results of the processing need to copied every time to the processing buffer of the next task. However, the speed up in computation with AVX more than makes up for the time wasted in copying data. The copying is implemented as a circular memcpy because every edge in the BG is a circular shift of a $Z\times Z$ identity matrix. Hence, a circular mempcy consists of two regular memcpys each copying a part of the $Z$ values depending on the circular shift in the BG definition. The circular shifts are stored in \texttt{nrLDPC\_lut.h} in arrays \texttt{circShift\_BGX\_ZX\_CNGX}. In the specification there are only 8 sets of cirular shifts defined. However, the applied circular shift depends on $Z$, i.e. modulo $Z$. To avoid inefficient modulo operations in loops, we store the the circular shift values for every $Z$. Moreover, for convinience the arrays are already arranged depending on the CN group (CNG).
|
||||
|
||||
\newpage
|
||||
\section{Performance Results}
|
||||
\label{sec:performance-results}
|
||||
\section{Performance Results}{#sec:performance-results}
|
||||
|
||||
In this section, the performance in terms of BLER and decoding latency of the current LDPC decoder implementation is verified.
|
||||
|
||||
\subsection{BLER Performance}
|
||||
\label{sec:bler-performance}
|
||||
\subsection{BLER Performance}{#sec:bler-performance}
|
||||
|
||||
In all simulations, we assume AWGN, QPSK modulation and 8-bit input LLRs, i.e. $-127$ until $+127$. The DLSCH coding procedure in 38.212 is used to encode/decode the TB and an error is declared if the TB CRC check failed. Results are averaged over at least $10\,000$ channel realizations.
|
||||
|
||||
The first set of simulations in Figure \ref{fig:bler-bg2-15} compares the current LDPC decoder implementation to the reference implementation developed by Kien. This reference implementation is called \textit{LDPC Ref} and uses the min-sum algorithm with 2 layers and 16 bit for processing. Our current optimized decoder implementation is referred to as \textit{LDPC OAI}. Moreover, reference results provided by Huawei are also shown.
|
||||
The first set of simulations in Figure {@fig:bler-bg2-15} compares the current LDPC decoder implementation to the reference implementation developed by Kien. This reference implementation is called \textit{LDPC Ref} and uses the min-sum algorithm with 2 layers and 16 bit for processing. Our current optimized decoder implementation is referred to as \textit{LDPC OAI}. Moreover, reference results provided by Huawei are also shown.
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
@@ -629,14 +604,13 @@ The first set of simulations in Figure \ref{fig:bler-bg2-15} compares the curren
|
||||
\end{semilogyaxis}
|
||||
\end{tikzpicture}
|
||||
\caption{BLER vs. SNR, BG2, Rate=1/5, \{5,10,20\} Iterations, B=1280.}
|
||||
\label{fig:bler-bg2-15}
|
||||
\end{figure}
|
||||
\end{figure}{fig:bler-bg2-15}
|
||||
|
||||
From Figure \ref{fig:bler-bg2-15} it can be observed that the reference decoder outperforms the current implementation significantly for low to medium number of iterations. The reason is the implementation of 2 layers in the reference decoder, which results in faster convergence for punctured codes and hence requires less iterations to achieve a given BLER target. Note that there is a large performance loss of about 4 dB at BLER $10^{-2}$ between the Huawei reference and the current optimized decoder implementation with 5 iterations.
|
||||
From Figure {@fig:bler-bg2-15} it can be observed that the reference decoder outperforms the current implementation significantly for low to medium number of iterations. The reason is the implementation of 2 layers in the reference decoder, which results in faster convergence for punctured codes and hence requires less iterations to achieve a given BLER target. Note that there is a large performance loss of about 4 dB at BLER $10^{-2}$ between the Huawei reference and the current optimized decoder implementation with 5 iterations.
|
||||
|
||||
Moreover, there is a gap of about 1.5 dB between the results provided by Huawei and the current decoder with 20 iterations. The reason is the min-sum approximation algorithm used in both the reference decoder and the current implementation. The gap can be closed by using a tighter approximation like the min-sum with normalization or the lambda-min approach. Moreover, the gap closes for higher code rates which can be observed from Figure \ref{fig:bler-bg2-r23}. The gap is only about 0.6 dB for 50 iterations.
|
||||
Moreover, there is a gap of about 1.5 dB between the results provided by Huawei and the current decoder with 20 iterations. The reason is the min-sum approximation algorithm used in both the reference decoder and the current implementation. The gap can be closed by using a tighter approximation like the min-sum with normalization or the lambda-min approach. Moreover, the gap closes for higher code rates which can be observed from Figure {@fig:bler-bg2-r23}. The gap is only about 0.6 dB for 50 iterations.
|
||||
|
||||
The Matlab results denoted \texttt{MATLAB NMS} are obtained with the function \texttt{nrLDPCDecode} provided by the MATLAB 5G Toolbox R2019b. The following options are provided to the function: \texttt{'Termination','max','Algorithm','Normalized min-sum','ScalingFactor',1}. Furthermore, the 8-bit input LLRs are adapted to fit the dynamic range of \texttt{nrLDPCDecode} which is shown in Listing \ref{ldpc_matlab}.
|
||||
The Matlab results denoted \texttt{MATLAB NMS} are obtained with the function \texttt{nrLDPCDecode} provided by the MATLAB 5G Toolbox R2019b. The following options are provided to the function: \texttt{'Termination','max','Algorithm','Normalized min-sum','ScalingFactor',1}. Furthermore, the 8-bit input LLRs are adapted to fit the dynamic range of \texttt{nrLDPCDecode} which is shown in the following listing
|
||||
|
||||
\begin{lstlisting}[frame=single,caption={Input adaptation for MATLAB LDPC Decoder},label=ldpc_matlab]
|
||||
maxLLR = max(abs(softbits));
|
||||
@@ -685,10 +659,9 @@ A scaling factor (SF) of 1 has been chosen to compare the results more easily wi
|
||||
\end{semilogyaxis}
|
||||
\end{tikzpicture}
|
||||
\caption{BLER vs. SNR, BG2, Rate=2/3, \{5,50\} Iterations, B=1280.}
|
||||
\label{fig:bler-bg2-r23}
|
||||
\end{figure}
|
||||
\end{figure}{fig:bler-bg2-r23}
|
||||
|
||||
In Figure \ref{fig:bler-bg2-15-2} we compare the performance of different algorithms using at most 50 iterations with early stopping if the parity check passes. The Matlab layered believe propagation (LBP) is used with unquantized input LLRs and performs the best since no approximation is done in the processing. Both NMS and offset min-sum (OMS) use a scaling factor and offset, respectively, that has been empirically found to perform best in this simulation setting. Theirs performance is very close to the BLP and OMS is slightly better than NMS. The performance of \textit{LDPC OAI} is more than 1 dB worse mainly because of the looser approximation. Moreover, the NMS algorithm with SF=1 performs worst probably because the SF is not optimized for the input LLRs. From the results in Figure \ref{fig:bler-bg2-15-2} we can conclude that the performance of the \textit{LDPC OAI} can be significantly improved by adopting an offset min-sum approximation improving the performance to within 0.3dB of the Huawei reference curve.
|
||||
In Figure {@fig:bler-bg2-15-2} we compare the performance of different algorithms using at most 50 iterations with early stopping if the parity check passes. The Matlab layered believe propagation (LBP) is used with unquantized input LLRs and performs the best since no approximation is done in the processing. Both NMS and offset min-sum (OMS) use a scaling factor and offset, respectively, that has been empirically found to perform best in this simulation setting. Theirs performance is very close to the BLP and OMS is slightly better than NMS. The performance of \textit{LDPC OAI} is more than 1 dB worse mainly because of the looser approximation. Moreover, the NMS algorithm with SF=1 performs worst probably because the SF is not optimized for the input LLRs. From the results in Figure {@fig:bler-bg2-15-2} we can conclude that the performance of the \textit{LDPC OAI} can be significantly improved by adopting an offset min-sum approximation improving the performance to within 0.3dB of the Huawei reference curve.
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
@@ -734,11 +707,10 @@ In Figure \ref{fig:bler-bg2-15-2} we compare the performance of different algori
|
||||
\end{semilogyaxis}
|
||||
\end{tikzpicture}
|
||||
\caption{BLER vs. SNR, BG2, Rate=1/5, max iterations = 50, B=1280.}
|
||||
\label{fig:bler-bg2-15-2}
|
||||
\end{figure}
|
||||
\end{figure}{fig:bler-bg2-15-2}
|
||||
|
||||
|
||||
Figure \ref{fig:bler-bg1-r89} shows the performance of BG1 with largest block size of $B=8448$ and highest code rate $R=8/9$. From Figure \ref{fig:bler-bg1-r89} it can be observed that the performance gap is only about 0.3 dB if 50 iterations are used. However, for 5 iterations there is still a significant performance loss of about 2.3 dB at BLER $10^{-2}$.
|
||||
Figure {@fig:bler-bg1-r89} shows the performance of BG1 with largest block size of $B=8448$ and highest code rate $R=8/9$. From Figure {@fig:bler-bg1-r89} it can be observed that the performance gap is only about 0.3 dB if 50 iterations are used. However, for 5 iterations there is still a significant performance loss of about 2.3 dB at BLER $10^{-2}$.
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
@@ -772,16 +744,14 @@ Figure \ref{fig:bler-bg1-r89} shows the performance of BG1 with largest block si
|
||||
\end{semilogyaxis}
|
||||
\end{tikzpicture}
|
||||
\caption{BLER vs. SNR, BG1, Rate=8/9 \{5,50\} Iterations, B=8448.}
|
||||
\label{fig:bler-bg1-r89}
|
||||
\end{figure}
|
||||
\end{figure}{fig:bler-bg1-r89}
|
||||
|
||||
\newpage
|
||||
\subsection{Decoding Latency}
|
||||
\label{sec:decoding-time}
|
||||
\subsection{Decoding Latency}{#sec:decoding-time}
|
||||
|
||||
This section provides results in terms of decoding latency. That is, the time it takes the decoder to to finish decoding for a given number of iterations. To measure the run time of the decoder we use the OAI tool \texttt{time\_meas.h}. The clock frequency is about 2.9 GHZ, decoder is run on a single core and the results are averaged over $10\,000$ blocks.
|
||||
|
||||
The results in Table \ref{tab:lat-bg2-r15} show the impact of the number of iterations on the decoding latency. It can be observed that the latency roughly doubles if the number of iterations are doubled.
|
||||
The results in Table {@tbl:lat-bg2-r15} show the impact of the number of iterations on the decoding latency. It can be observed that the latency roughly doubles if the number of iterations are doubled.
|
||||
|
||||
\begin{table}[ht]
|
||||
\centering
|
||||
@@ -813,10 +783,9 @@ The results in Table \ref{tab:lat-bg2-r15} show the impact of the number of iter
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
\caption{BG2, Z=128, R=1/5, B=1280, LDPC OAI}
|
||||
\label{tab:lat-bg2-r15}
|
||||
\end{table}
|
||||
\end{table}{tbl:lat-bg2-r15}
|
||||
|
||||
Table \ref{tab:lat-bg2-i5} shows the impact of the code rate on the latency for a given block size and 5 iterations. It can be observed that the performance gain from code rate 1/3 to 2/3 is about a factor 2.
|
||||
Table {@tbl:lat-bg2-i5} shows the impact of the code rate on the latency for a given block size and 5 iterations. It can be observed that the performance gain from code rate 1/3 to 2/3 is about a factor 2.
|
||||
|
||||
\begin{table}[ht]
|
||||
\centering
|
||||
@@ -848,10 +817,9 @@ Table \ref{tab:lat-bg2-i5} shows the impact of the code rate on the latency for
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
\caption{BG2, Z=384, B=3840, LDPC OAI, 5 iterations}
|
||||
\label{tab:lat-bg2-i5}
|
||||
\end{table}
|
||||
\end{table}{tbl:lat-bg2-i5}
|
||||
|
||||
Table \ref{tab:lat-bg1-i5} shows the results for BG1, larges block size and different code rates. The latency difference betwee code rate 1/3 and code rate 2/3 is less than half because upper left corner of the PCM is more dense than the rest of the PCM.
|
||||
Table {@tbl:lat-bg1-i5} shows the results for BG1, larges block size and different code rates. The latency difference betwee code rate 1/3 and code rate 2/3 is less than half because upper left corner of the PCM is more dense than the rest of the PCM.
|
||||
|
||||
\begin{table}[ht]
|
||||
\centering
|
||||
@@ -883,23 +851,20 @@ Table \ref{tab:lat-bg1-i5} shows the results for BG1, larges block size and diff
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
\caption{BG1, Z=384, B=8448, LDPC OAI, 5 iterations}
|
||||
\label{tab:lat-bg1-i5}
|
||||
\end{table}
|
||||
\end{table}{tbl:lat-bg1-i5}
|
||||
|
||||
From the above results it can be observed that the data transfer between CNs and BNs takes up a significant amount of the run time. However, the performance gain due to AVX instructions in both CN and BN processing is significantly larger than the penalty incurred by the data transfers.
|
||||
|
||||
\section{Parity Check and Early Stopping Criteria}
|
||||
It is often unnecessary to carry out the maximum number of iterations. After each iteration a parity check (PC) \eqref{eq:29} can be computed and if a valid code word is found the decoder can stop. This functionality has been implemented and the additional overhead is reasonable. The PC is carried out in the CN processing buffer and the calculation complexity itself is negligible. However, for the processing it is necessary to move the BN results to the CN buffer which takes time, the overall overhead is at most $10\%$ compared to an algorithm without early stopping criteria with the same number of iterations. The PC has to be activated via the define \texttt{NR\_LDPC\_ENABLE\_PARITY\_CHECK}.
|
||||
It is often unnecessary to carry out the maximum number of iterations. After each iteration a parity check (PC) @eq:29 can be computed and if a valid code word is found the decoder can stop. This functionality has been implemented and the additional overhead is reasonable. The PC is carried out in the CN processing buffer and the calculation complexity itself is negligible. However, for the processing it is necessary to move the BN results to the CN buffer which takes time, the overall overhead is at most $10\%$ compared to an algorithm without early stopping criteria with the same number of iterations. The PC has to be activated via the define \texttt{NR\_LDPC\_ENABLE\_PARITY\_CHECK}.
|
||||
|
||||
|
||||
\section{Conclusion}
|
||||
\label{sec:conclusion}
|
||||
\section{Conclusion}{#sec:conclusion}
|
||||
|
||||
The results in the previous sections show that the current optimized LDPC implementation full-fills the requirements in terms of decoding latency for low to medium number of iterations at the expense of a loss in BLER performance. To improve BLER performance, it is recommended to implement a layered algorithm and a min-sum algorithm with normalization. Further improvements upon the current implementation are detailed in the next section.
|
||||
|
||||
\newpage
|
||||
\section{Future Work}
|
||||
\label{sec:future-work}
|
||||
\section{Future Work}{#sec:future-work}
|
||||
|
||||
The improvements upon the current LDPC decoder implementation can be divided into two categories:
|
||||
\begin{enumerate}
|
||||
@@ -907,28 +872,25 @@ The improvements upon the current LDPC decoder implementation can be divided int
|
||||
\item Reduced decoding latency
|
||||
\end{enumerate}
|
||||
|
||||
\subsection{Improved BLER Performance}
|
||||
\label{sec:impr-bler-perf}
|
||||
\subsection{Improved BLER Performance}{#sec:impr-bler-perf}
|
||||
|
||||
The BLER performance can be improved by using a tighter approximation than the min-sum approximation. For instance, the min-sum algorithm can be improved by adding a correction factor in the CN processing . The min-sum approximation in \eqref{eq:40} is modified as
|
||||
The BLER performance can be improved by using a tighter approximation than the min-sum approximation. For instance, the min-sum algorithm can be improved by adding a correction factor in the CN processing . The min-sum approximation in @eq:40 is modified as
|
||||
\begin{equation}
|
||||
\label{eq:50}
|
||||
r_{ji} = \prod_{j'\in\Bcal_i\setminus j}\sgn q_{ij'}\min_{j'\in\Bcal_i\setminus j} |q_{ij'}| + w(q_{ij'})
|
||||
\end{equation}
|
||||
\end{equation}{eq:50}
|
||||
|
||||
The correction term $w(q_{ij'})$ is defined as
|
||||
\begin{equation}
|
||||
\label{eq:51}
|
||||
w(q_{ij'}) =
|
||||
\begin{cases}
|
||||
c & \textrm{if}~ \\
|
||||
-c & \textrm{if}~ \\
|
||||
0 & \textrm{otherwise}
|
||||
\end{cases}
|
||||
\end{equation}
|
||||
\end{equation}{eq:51}
|
||||
where the constant $c$ is of order $0.5$ typically.
|
||||
|
||||
\subsection{Reduced Decoding Latency}
|
||||
\label{sec:reduc-decod-latency}
|
||||
\subsection{Reduced Decoding Latency}{#sec:reduc-decod-latency}
|
||||
|
||||
The following improvements will reduce the decoding latency:
|
||||
|
||||
@@ -945,7 +907,7 @@ The computations in the CN and BN processing can be further accelerated by using
|
||||
It can be investigated if CN processing can be improved by computing two minima regardless of the number of BNs. Susequently, the (absolute) value fed back to the BN is one of those minima.
|
||||
|
||||
\paragraph{Layered processing:}
|
||||
The LDPC code in NR always punctures the first 2 columns of the base graph. Hence, the decoder inserts LLRs with value 0 at their place and needs to retrieve those bits during the decoding process. Instead of computing all the parity equations and then passing the results to the BN processing, it is beneficial to first compute parity equations where at most one punctured BN is connected to that CN. If two punctured BNs are connected than according to \eqref{eq:40}, the result will be again 0. Thus in a first sub-iteration those parity equation are computed and the results are send to BN processing which calculates the results using only those rows in the PCM. In the second sub-iteration the remaining check equation are used.
|
||||
The LDPC code in NR always punctures the first 2 columns of the base graph. Hence, the decoder inserts LLRs with value 0 at their place and needs to retrieve those bits during the decoding process. Instead of computing all the parity equations and then passing the results to the BN processing, it is beneficial to first compute parity equations where at most one punctured BN is connected to that CN. If two punctured BNs are connected than according to @eq:40, the result will be again 0. Thus in a first sub-iteration those parity equation are computed and the results are send to BN processing which calculates the results using only those rows in the PCM. In the second sub-iteration the remaining check equation are used.
|
||||
The convergence of this layered approach is much fast since the bit can be retrieved more quickly while the decoding complexity remains the same. Therefore, for a fixed number of iterations the layered algorithm will have a significantly better performance.
|
||||
|
||||
\newpage
|
||||
|
||||
679
openair1/PHY/CODING/nrLDPC_decoder/doc/nrLDPC/nrLDPC_decoder.md
Normal file
679
openair1/PHY/CODING/nrLDPC_decoder/doc/nrLDPC/nrLDPC_decoder.md
Normal file
@@ -0,0 +1,679 @@
|
||||
Currently Supported:
|
||||
|
||||
#### Version 1.0:
|
||||
|
||||
- Initial version
|
||||
|
||||
#### Version 2.0:
|
||||
|
||||
- Enhancements in message passing:
|
||||
|
||||
- LUTs replaced by smaller BG-specific parameters
|
||||
|
||||
- Inefficient load/store replaced by circular memcpy
|
||||
|
||||
- Bug fixes:
|
||||
|
||||
- Fixed bug in function `llr2CnProcBuf`
|
||||
|
||||
- Corrected input LLR dynamic range in BLER simulations
|
||||
|
||||
- Results:
|
||||
|
||||
- Size of LUTs reduced significantly (60MB to 200KB)
|
||||
|
||||
- Siginifcantly enhances execution time (factor 3.5)
|
||||
|
||||
- Improved BLER performance (all simulation results have been
|
||||
updated)
|
||||
|
||||
Introduction
|
||||
============
|
||||
|
||||
\#sec:introduction
|
||||
|
||||
Low Density Parity Check (LDPC) codes have been developed by Gallager in
|
||||
1963 [@gallager1962low]. They are linear error correcting codes that are
|
||||
capacity-achieving for large block length and are completely described
|
||||
by their Parity Check Matrix (PCM) $\mathbf{H}^{M\times N}$. The PCM
|
||||
$\mathbf{H}$ defines $M$ constraints on the codeword $\mathbf{c}$ of
|
||||
length $N$ such that $$\mathbf{H}\mathbf{c}= \mathbf{0}.$$ \#eq:29 The
|
||||
number of information bits $B$ that can be encoded with $\mathbf{H}$ is
|
||||
given by $B=N-M$. Hence the code rate $R$ of $\mathbf{H}$ reads
|
||||
$$R = \frac{B}{N} = 1-\frac{M}{N}.$$ \#eq:37
|
||||
|
||||
LDPC in NR
|
||||
----------
|
||||
|
||||
\#sec:ldpc-nr
|
||||
|
||||
NR uses quasi-cyclic (QC) Protograph LDPC codes, i.e. a smaller graph,
|
||||
called Base Graph (BG), is defined and utilized to construct the larger
|
||||
PCM. This has the advantage that the large PCM does not have to be
|
||||
stored in memory and allows for a more efficient implementation while
|
||||
maintaining good decoding properties. Two BGs
|
||||
$\mathbf{H}_\mathrm{BG}\in\mathbb{N}^{{M_b}\times {N_b}}$ are defined in
|
||||
NR:
|
||||
|
||||
1. $\mathbf{H}_\mathrm{BG1}\in\mathbb{N}^{46\times 68}$
|
||||
|
||||
2. $\mathbf{H}_\mathrm{BG2}\in\mathbb{N}^{42\times 52}$
|
||||
|
||||
where $\mathbb{N}$ is the set of integers. For instance the first 3 rows
|
||||
and 13 columns of BG2 are given by
|
||||
|
||||
$$\mathbf{H}_\mathrm{BG2}=
|
||||
\begin{bmatrix}
|
||||
9 & 117 & 204 & 26 & \emptyset & \emptyset & 189 & \emptyset & \emptyset & 205 & 0 & 0 & \emptyset & \emptyset \\
|
||||
127 & \emptyset & \emptyset & 166 & 253 & 125 & 226 & 156 & 224 & 252 & \emptyset & 0 & 0 & \emptyset \\
|
||||
81 & 114 & \emptyset & 44 & 52 & \emptyset & \emptyset & \emptyset & 240 & \emptyset & 1 & \emptyset & 0 & 0
|
||||
\end{bmatrix}.$$\#eq:33
|
||||
|
||||
To obtain the PCM $\mathbf{H}$ from the BG $\mathbf{H}_\mathrm{BG}$,
|
||||
each element $\mathbf{H}_\mathrm{BG}(i,j)$ in the BG is replaced by a
|
||||
lifting matrix of size ${Z_c}\times {Z_c}$ according to
|
||||
$$\mathbf{H}_\mathrm{BG}(i,j) =
|
||||
\begin{cases}
|
||||
\mathbf{0} & \textrm{if}~ \mathbf{H}_\mathrm{BG}(i,j)=\emptyset \\
|
||||
\mathbf{I}_{P_{ij}} & \textrm{otherwise}
|
||||
\end{cases}$$ eq:35 where $\mathbf{I}_{P_{ij}}$ is the identity matrix
|
||||
circularly shifted to the right by
|
||||
$P_{ij} = \mathbf{H}_\mathrm{BG}(i,j)\mod {Z_c}$. Hence, the resulting
|
||||
PCM $\mathbf{H}$ will be of size ${M_b}{Z_c}\times{N_b}{Z_c}$.
|
||||
|
||||
The lifting size ${Z_c}$ depends on the number of bits to encode. To
|
||||
limit the complexity, a discrete set $\mathcal{Z}$ of possible values of
|
||||
${Z_c}$ has been defined in [@3gpp2017_38212] and the optimal value
|
||||
${Z_c}$ is calculated according to
|
||||
$${Z_c}= \min_{\mathbf{Z}\in\mathcal{Z}}\left[Z\geq\frac{B}{{N_b}}\right].$$eq:36
|
||||
|
||||
The base rate of the two BGs is $1/3$ and $1/5$ for BG1 and BG2,
|
||||
respectively. That is, BG1 encodes $K=22{Z_c}$ bits and BG2 encodes
|
||||
$K=10{Z_c}$ bits. Note that the first 2 columns of BG 1 and 2 are always
|
||||
punctured, that is after encoding, the first $2{Z_c}$ bits are discarded
|
||||
and not transmitted. For instance, consider $B=500$ information bits to
|
||||
encode using BG2, \@eq:36 yields ${Z_c}=64$ hence $K=640$. Since $K>B$,
|
||||
$K-B=140$ filler bits are appended to the information bits. The PCM
|
||||
$\mathbf{H}_\mathrm{BG2}$ is of size $2688\times 3328$ and the $640$
|
||||
bits $\mathbf{b}$ are encoded according to \@eq:29 at a rate
|
||||
$R \approx 0.192$. To achieve the higher base rate of $0.2$, the first
|
||||
$128$ are punctured, i.e. instead of transmitting all $3328$ bits, only
|
||||
$3200$ are transmitted resulting in the desired rate $R=640/3200=0.2$.
|
||||
|
||||
LDPC Decoding
|
||||
-------------
|
||||
|
||||
\#sec:ldpc-decoding
|
||||
|
||||
The decoding of codeword $\mathbf{c}$ can be achieved via the classical
|
||||
message passing algorithm. This algorithm can be illustrated best using
|
||||
the Tanner graph of the PCM. The rows of the PCM are called check nodes
|
||||
(CN) since they represent the parity check equations. The parity check
|
||||
equation of each of these check nodes involves various bits in the
|
||||
codeword. Similarly, every column of the PCM corresponds to a bit and
|
||||
each bit is involved in several parity check equations. In the Tanner
|
||||
graph representation, the bits are called bit nodes (BN). Let's go back
|
||||
to the previous example of BG2 and assume ${Z_c}=2$, hence the first 3
|
||||
rows and 13 columns of BG2 $\mathbf{H}_\mathrm{BG2}$ read
|
||||
$$\mathbf{H}_\mathrm{BG2}=
|
||||
\begin{bmatrix}
|
||||
1 & 1 & 0 & 0 & \emptyset & \emptyset & 1 & \emptyset & \emptyset & 1 & 0 & 0 & \emptyset & \emptyset \\
|
||||
1 & \emptyset & \emptyset & 0 & 1 & 1 & 0 & 0 & 0 & 0 & \emptyset & 0 & 0 & \emptyset \\
|
||||
1 & 0 & \emptyset & 0 & 0 & \emptyset & \emptyset & \emptyset & 0 & \emptyset & 1 & \emptyset & 0 & 0
|
||||
\end{bmatrix}.$$eq:36 Replacing the elements according to \@eq:35, we
|
||||
obtain the first 6 rows and 26 columns of the PCM as $$\mathbf{H}=
|
||||
\begin{bmatrix}
|
||||
0 & 1 & 0 & 1 & 1 & 0 & 1 & 0 & 0 & 0 & 0 & 0 & 0 & 1 & 0 & 0 & 0 & 0 & 0 & 1 & 1 & 0 & 1 & 0 & 0 & 0 & 0 & 0\\
|
||||
1 & 0 & 1 & 0 & 0 & 1 & 0 & 1 & 0 & 0 & 0 & 0 & 1 & 0 & 0 & 0 & 0 & 0 & 1 & 0 & 0 & 1 & 0 & 1 & 0 & 0 & 0 & 0\\
|
||||
0 & 1 & 0 & 0 & 0 & 0 & 1 & 0 & 0 & 1 & 0 & 1 & 1 & 0 & 1 & 0 & 1 & 0 & 1 & 0 & 0 & 0 & 1 & 0 & 1 & 0 & 0 & 0\\
|
||||
1 & 0 & 0 & 0 & 0 & 0 & 0 & 1 & 1 & 0 & 1 & 0 & 0 & 1 & 0 & 1 & 0 & 1 & 0 & 1 & 0 & 0 & 0 & 1 & 0 & 1 & 0 & 0\\
|
||||
0 & 1 & 1 & 0 & 0 & 0 & 1 & 0 & 1 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 1 & 0 & 0 & 0 & 0 & 1 & 0 & 0 & 1 & 0 & 1 & 0\\
|
||||
1 & 0 & 0 & 1 & 0 & 0 & 0 & 1 & 0 & 1 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 1 & 0 & 0 & 1 & 0 & 0 & 0 & 0 & 1 & 0 & 1
|
||||
\end{bmatrix}.$$eq:39
|
||||
|
||||
The Tanner graph of the first 8 BNs is shown in Figure
|
||||
\@fig:tannergraph.
|
||||
|
||||
=\[fill=white,rectangle,draw=black,thick,inner sep=2pt, minimum
|
||||
height=0.3cm,minimum width=0.3cm, rounded corners=1pt,text width=0.3cm\]
|
||||
=\[fill=white,circle,draw=black,thick,inner sep=2pt, minimum
|
||||
height=0.3cm,minimum width=0.3cm, rounded corners=1pt,text width=0.3cm\]
|
||||
=\[\<-\>,\>=latex',semithick\]
|
||||
|
||||
fig:tannergraph
|
||||
|
||||
The message passing algorithm is an iterative algorithm where
|
||||
probabilities of the bits (being either 0 or 1) are exchanged between
|
||||
the BNs and CNs. After sufficient iterations, the probabilities will
|
||||
have either converged to either 0 or 1 and the parity check equations
|
||||
will be satisfied, at this point, the codeword has been decoded
|
||||
correctly.
|
||||
|
||||
LDPC Decoder Implementation
|
||||
===========================
|
||||
|
||||
\#sec:ldpc-implementation
|
||||
|
||||
The implementation on a general purpose processor (GPP) has to take
|
||||
advantage of potential instruction extension of the processor
|
||||
architecture. We focus on the Intel x86 instruction set architecture
|
||||
(ISA) and its advanced vector extension (AVX). In particular, we utilize
|
||||
AVX2 with its 256-bit single instruction multiple data (SIMD) format. In
|
||||
order to utilize AVX2 to speed up the processing at the CNs and BNs, the
|
||||
corresponding data has to be ordered/aligned in a specific way. The
|
||||
processing flow of the LDPC decoder is depicted in
|
||||
\@fig:ldpcdecoderflow.
|
||||
|
||||
=\[,draw=none\] =\[-\>,\>=latex',semithick\]
|
||||
|
||||
fig:ldpcdecoderflow
|
||||
|
||||
The functions involved are described in more detail in Table
|
||||
[\[tbl:sum-func\]](#tbl:sum-func){reference-type="ref"
|
||||
reference="tbl:sum-func"}.
|
||||
|
||||
**Function** **Description**
|
||||
------------------ ----------------------------------------------------------------------
|
||||
`llr2llrProcBuf` Copies input LLRs to LLR processing buffer
|
||||
`llr2CnProcBuf` Copies input LLRs to CN processing buffer
|
||||
`cnProc` Performs CN signal processing
|
||||
`cnProcPc` Performs parity check
|
||||
`cn2bnProcBuf` Copies the CN results to the BN processing buffer
|
||||
`bnProcPc` Performs BN processing for parity check and/or hard-decision
|
||||
`bnProc` Utilizes the results of `bnProcPc` to compute LLRs for CN processing
|
||||
`bn2cnProcBuf` Copies the BN results to the CN processing buffer
|
||||
`llrRes2llrOut` Copies the results of `bnProcPc` to output LLRs
|
||||
`llr2bit` Performs hard-decision on the output LLRs
|
||||
|
||||
: Summary of the LDPC decoder functions.
|
||||
|
||||
tbl:sum-func
|
||||
|
||||
The input LLRs are assumed to be 8-bit and aligned on 32 bytes. CN
|
||||
processing is carried out in 8-bit whereas BN processing is done in 16
|
||||
bit. Subsequently, the processing tasks at the CNs and BNs are explained
|
||||
in more detail.
|
||||
|
||||
Check Node Processing
|
||||
---------------------
|
||||
|
||||
\#sec:check-node-proc
|
||||
|
||||
Denote $q_{ij}$ the value from BN $j$ to CN $i$ and let $\mathcal{B}_i$
|
||||
be the set of connected BNs to the $i$th CN. Then, using the min-sum
|
||||
approximation, CN $i$ has to carry out the following operation for each
|
||||
connected BN.
|
||||
$$r_{ji} = \prod_{j'\in\mathcal{B}_i\setminus j}\operatorname{sgn}q_{ij'}\min_{j'\in\mathcal{B}_i\setminus j} |q_{ij'}|$$eq:40
|
||||
where $r_{ji}$ is the value returned to BN $j$ from CN $i$. There are
|
||||
${M_b}= \{46,42\}$ CNs in BG 1 and BG 2, respectively. Each of these CNs
|
||||
is connected to only a small number of BNs. The number of connected BNs
|
||||
to CN $i$ is $|\mathcal{B}_i|$. In BG1 and BG2,
|
||||
$|\mathcal{B}_i|=\{3,4,5,6,7,8,9,10,19\}$ and
|
||||
$|\mathcal{B}_i|=\{3,4,5,6,8,10\}$, respectively. The following tables
|
||||
show the number of CNs $M_{|\mathcal{B}_i|}$ that are connected to the
|
||||
same number of BNs.
|
||||
|
||||
$|\mathcal{B}_i|$ 3 4 5 6 7 8 9 10 19
|
||||
------------------------------------ --- ---- ---- --- --- --- --- ---- ----
|
||||
$M_{|\mathcal{B}_i|}^\mathrm{BG1}$ 1 5 18 8 5 2 2 1 4
|
||||
$M_{|\mathcal{B}_i|}^\mathrm{BG2}$ 6 20 9 3 0 2 0 2 0
|
||||
|
||||
: Ceck node groups for BG1 and BG2.
|
||||
|
||||
tbl:checkNodeGroups
|
||||
|
||||
It can be observed that each CN is at least connected to 3 BNs and there
|
||||
are 9 groups and 5 groups in BG1 and BG2, respectively. Denote the set
|
||||
of CN groups as $\mathcal{G}$ and $M_k$ the number of CNs in group
|
||||
$k\in\mathcal{G}$, e.g. for BG2 $M_4=20{Z_c}$. Each CN group will be
|
||||
processed separately. The CN processing buffer $p_C^k$ of group $k$ is
|
||||
defined as
|
||||
$$p_C^k = \{\underbrace{q_{11}q_{21}\dots q_{M_k 1}}_{\text 1. BN},\underbrace{q_{12}q_{22}\dots q_{M_k 2}}_{\text 2. BN},\dots,\underbrace{q_{12}q_{22}\dots q_{M_k k}}_{\text last BN}\}$$eq:44
|
||||
Hence, $|p_C^k| = kM_k$, e.g, ${Z_c}=128$,
|
||||
$|p_C^4| = 4\cdot 20\cdot 128 = 10240$.
|
||||
|
||||
``` {#code_cnproc frame="single" caption="Example of CN processing for group 3 from \\texttt{cnProc}." label="code_cnproc"}
|
||||
const uint8_t lut_idxCnProcG3[3][2] = {{72,144}, {0,144}, {0,72}};
|
||||
|
||||
// =====================================================================
|
||||
// Process group with 3 BNs
|
||||
|
||||
// Number of groups of 32 CNs for parallel processing
|
||||
M = (lut_numCnInCnGroups[0]*Z)>>5;
|
||||
// Set the offset to each bit within a group in terms of 32 Byte
|
||||
bitOffsetInGroup = (lut_numCnInCnGroups_BG2_R15[0]*NR_LDPC_ZMAX)>>5;
|
||||
|
||||
// Set pointers to start of group 3
|
||||
p_cnProcBuf = (__m256i*) &cnProcBuf [lut_startAddrCnGroups[0]];
|
||||
p_cnProcBufRes = (__m256i*) &cnProcBufRes[lut_startAddrCnGroups[0]];
|
||||
|
||||
// Loop over every BN
|
||||
for (j=0; j<3; j++)
|
||||
{
|
||||
// Set of results pointer to correct BN address
|
||||
p_cnProcBufResBit = p_cnProcBufRes + (j*bitOffsetInGroup);
|
||||
|
||||
// Loop over CNs
|
||||
for (i=0; i<M; i++)
|
||||
{
|
||||
// Abs and sign of 32 CNs (first BN)
|
||||
ymm0 = p_cnProcBuf[lut_idxCnProcG3[j][0] + i];
|
||||
sgn = _mm256_sign_epi8(*p_ones, ymm0);
|
||||
min = _mm256_abs_epi8(ymm0);
|
||||
|
||||
// 32 CNs of second BN
|
||||
ymm0 = p_cnProcBuf[lut_idxCnProcG3[j][1] + i];
|
||||
min = _mm256_min_epu8(min, _mm256_abs_epi8(ymm0));
|
||||
sgn = _mm256_sign_epi8(sgn, ymm0);
|
||||
|
||||
// Store result
|
||||
min = _mm256_min_epu8(min, *p_maxLLR); // 128 in epi8 is -127
|
||||
*p_cnProcBufResBit = _mm256_sign_epi8(min, sgn);
|
||||
p_cnProcBufResBit++;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
```
|
||||
|
||||
Once all results of the check node processing $r_{ji}$ have been
|
||||
calculated, they are copied to the bit node processing buffer.
|
||||
|
||||
Bit Node Processing
|
||||
-------------------
|
||||
|
||||
\#sec:bit-node-processing
|
||||
|
||||
Denote $r_{ji}$ the value from CN $i$ to BN $j$ and let $\mathcal{C}_j$
|
||||
be the set of connected CNs to the $j$th BN. Each BN $j$ has to carry
|
||||
out the following operation for every connected CN $i\in\mathcal{C}_j$.
|
||||
$$q_{ij} = \Lambda_j + \sum_{i'\in\mathcal{C}_j\setminus i}r_{ji'}$$eq:46
|
||||
|
||||
There are ${N_b}= \{68,52\}$ BNs in BG 1 and BG 2, respectively. Each of
|
||||
these BNs is connected to only a small number of CNs. The number of
|
||||
connected CNs to BN $j$ is $|\mathcal{C}_j|$. In BG1 and BG2,
|
||||
$|\mathcal{C}_j|=\{1,4,7,8,9,10,11,12,28,30\}$ and
|
||||
$|\mathcal{C}_j|=\{1,5,6,7,8,9,10,12,13,14,16,22,23\}$, respectively.
|
||||
The following tables show the number of BNs $K_{|\mathcal{C}_j|}$ that
|
||||
are connected to the same number of CNs.
|
||||
|
||||
$|\mathcal{C}_j|$ 1 4 5 6 7 8 9 10 11 12 13 14 15 16 22 23 28 30
|
||||
------------------------------------ ---- --- --- --- --- --- --- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
|
||||
$K_{|\mathcal{C}_j|}^\mathrm{BG1}$ 42 1 1 2 4 3 1 4 3 4 1 0 0 0 0 0 1 1
|
||||
$K_{|\mathcal{C}_j|}^\mathrm{BG2}$ 38 0 2 1 1 1 2 1 0 1 1 1 0 1 1 1 0 0
|
||||
|
||||
: Bit node groups for BG1 and BG2 for base rates 1/3 and 1/5,
|
||||
respectively.
|
||||
|
||||
tbl:bitNodeGroups
|
||||
|
||||
The BNs that are connected to a single CN do not need to be considered
|
||||
in the BN processing since \@eq:46 yields $q_{ij} = \Lambda_j$. It can
|
||||
be observed that the grouping is less compact, i.e. there are many
|
||||
groups with only a small number of elements.
|
||||
|
||||
Denote the set of BN groups as $\mathcal{B}$ and $K_k$ the number of BNs
|
||||
in group $k\in\mathcal{B}$, e.g. for BG2 $K_5=2{Z_c}$. Each BN group
|
||||
will be processed separately. The BN processing buffer $p_B^k$ of group
|
||||
$k$ is defined as
|
||||
$$p_B^k = \{\underbrace{r_{11}r_{21}\dots r_{K_k 1}}_{\text 1. CN},\underbrace{r_{12}r_{22}\dots r_{K_k 2}}_{\text 2. CN},\dots,\underbrace{r_{12}r_{22}\dots r_{K_k k}}_{\text last CN}\}$$eq:47
|
||||
Hence, $|p_B^k| = kK_k$, e.g, ${Z_c}=128$,
|
||||
$|p_B^5| = 5\cdot 2\cdot 128 = 1024$.
|
||||
|
||||
Depending on the code rate, some parity bits are not being transmitted.
|
||||
For instance, for BG2 with code rate $R = 1/3$ the last $20{Z_c}$ bits
|
||||
are discarded. Therefore, the last 20 columns or the last $20{Z_c}$
|
||||
parity check equation are not required for decoding. This means that the
|
||||
BN groups shown in table \@tbl:bitNodeGroups are depending on the rate.
|
||||
|
||||
``` {#code_bnproc frame="single" caption="Example of BN processing for group 3 from \\texttt{bnProcPc}." label="code_bnproc"}
|
||||
// If elements in group move to next address
|
||||
idxBnGroup++;
|
||||
|
||||
// Number of groups of 32 BNs for parallel processing
|
||||
M = (lut_numBnInBnGroups[2]*Z)>>5;
|
||||
|
||||
// Set the offset to each CN within a group in terms of 16 Byte
|
||||
cnOffsetInGroup = (lut_numBnInBnGroups[2]*NR_LDPC_ZMAX)>>4;
|
||||
|
||||
// Set pointers to start of group 3
|
||||
p_bnProcBuf = (__m128i*) &bnProcBuf [lut_startAddrBnGroups [idxBnGroup]];
|
||||
p_llrProcBuf = (__m128i*) &llrProcBuf [lut_startAddrBnGroupsLlr[idxBnGroup]];
|
||||
p_llrRes = (__m256i*) &llrRes [lut_startAddrBnGroupsLlr[idxBnGroup]];
|
||||
|
||||
// Loop over BNs
|
||||
for (i=0,j=0; i<M; i++,j+=2)
|
||||
{
|
||||
// First 16 LLRs of first CN
|
||||
ymmRes0 = _mm256_cvtepi8_epi16(p_bnProcBuf[j]);
|
||||
ymmRes1 = _mm256_cvtepi8_epi16(p_bnProcBuf[j+1]);
|
||||
|
||||
// Loop over CNs
|
||||
for (k=1; k<3; k++)
|
||||
{
|
||||
ymm0 = _mm256_cvtepi8_epi16(p_bnProcBuf[k*cnOffsetInGroup + j]);
|
||||
ymmRes0 = _mm256_adds_epi16(ymmRes0, ymm0);
|
||||
|
||||
ymm1 = _mm256_cvtepi8_epi16(p_bnProcBuf[k*cnOffsetInGroup + j+1]);
|
||||
ymmRes1 = _mm256_adds_epi16(ymmRes1, ymm1);
|
||||
}
|
||||
|
||||
// Add LLR from receiver input
|
||||
ymm0 = _mm256_cvtepi8_epi16(p_llrProcBuf[j]);
|
||||
ymmRes0 = _mm256_adds_epi16(ymmRes0, ymm0);
|
||||
|
||||
ymm1 = _mm256_cvtepi8_epi16(p_llrProcBuf[j+1]);
|
||||
ymmRes1 = _mm256_adds_epi16(ymmRes1, ymm1);
|
||||
|
||||
// Pack results back to epi8
|
||||
ymm0 = _mm256_packs_epi16(ymmRes0, ymmRes1);
|
||||
// ymm0 = [ymmRes1[255:128] ymmRes0[255:128] ymmRes1[127:0] ymmRes0[127:0]]
|
||||
// p_llrRes = [ymmRes1[255:128] ymmRes1[127:0] ymmRes0[255:128] ymmRes0[127:0]]
|
||||
*p_llrRes = _mm256_permute4x64_epi64(ymm0, 0xD8);
|
||||
|
||||
// Next result
|
||||
p_llrRes++;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
The sum of the LLRs is carried out in 16 bit for accuracy and is then
|
||||
saturated to 8 bit for CN processing. Saturation after each addition
|
||||
results in significant loss of sensitivity for low code rates.
|
||||
|
||||
Mapping to the Processing Buffers
|
||||
---------------------------------
|
||||
|
||||
\#sec:mapp-cn-proc
|
||||
|
||||
For efficient processing with the AVX instructions, the data is required
|
||||
to be aligned in a certain manner. That is the reason why processing
|
||||
buffers have been introduced. The drawback is that the results of the
|
||||
processing need to copied every time to the processing buffer of the
|
||||
next task. However, the speed up in computation with AVX more than makes
|
||||
up for the time wasted in copying data. The copying is implemented as a
|
||||
circular memcpy because every edge in the BG is a circular shift of a
|
||||
$Z\times Z$ identity matrix. Hence, a circular mempcy consists of two
|
||||
regular memcpys each copying a part of the $Z$ values depending on the
|
||||
circular shift in the BG definition. The circular shifts are stored in
|
||||
`nrLDPC_lut.h` in arrays `circShift_BGX_ZX_CNGX`. In the specification
|
||||
there are only 8 sets of cirular shifts defined. However, the applied
|
||||
circular shift depends on $Z$, i.e. modulo $Z$. To avoid inefficient
|
||||
modulo operations in loops, we store the the circular shift values for
|
||||
every $Z$. Moreover, for convinience the arrays are already arranged
|
||||
depending on the CN group (CNG).
|
||||
|
||||
Performance Results
|
||||
===================
|
||||
|
||||
\#sec:performance-results
|
||||
|
||||
In this section, the performance in terms of BLER and decoding latency
|
||||
of the current LDPC decoder implementation is verified.
|
||||
|
||||
BLER Performance
|
||||
----------------
|
||||
|
||||
\#sec:bler-performance
|
||||
|
||||
In all simulations, we assume AWGN, QPSK modulation and 8-bit input
|
||||
LLRs, i.e. $-127$ until $+127$. The DLSCH coding procedure in 38.212 is
|
||||
used to encode/decode the TB and an error is declared if the TB CRC
|
||||
check failed. Results are averaged over at least $10\,000$ channel
|
||||
realizations.
|
||||
|
||||
The first set of simulations in Figure \@fig:bler-bg2-15 compares the
|
||||
current LDPC decoder implementation to the reference implementation
|
||||
developed by Kien. This reference implementation is called *LDPC Ref*
|
||||
and uses the min-sum algorithm with 2 layers and 16 bit for processing.
|
||||
Our current optimized decoder implementation is referred to as *LDPC
|
||||
OAI*. Moreover, reference results provided by Huawei are also shown.
|
||||
|
||||
fig:bler-bg2-15
|
||||
|
||||
From Figure \@fig:bler-bg2-15 it can be observed that the reference
|
||||
decoder outperforms the current implementation significantly for low to
|
||||
medium number of iterations. The reason is the implementation of 2
|
||||
layers in the reference decoder, which results in faster convergence for
|
||||
punctured codes and hence requires less iterations to achieve a given
|
||||
BLER target. Note that there is a large performance loss of about 4 dB
|
||||
at BLER $10^{-2}$ between the Huawei reference and the current optimized
|
||||
decoder implementation with 5 iterations.
|
||||
|
||||
Moreover, there is a gap of about 1.5 dB between the results provided by
|
||||
Huawei and the current decoder with 20 iterations. The reason is the
|
||||
min-sum approximation algorithm used in both the reference decoder and
|
||||
the current implementation. The gap can be closed by using a tighter
|
||||
approximation like the min-sum with normalization or the lambda-min
|
||||
approach. Moreover, the gap closes for higher code rates which can be
|
||||
observed from Figure \@fig:bler-bg2-r23. The gap is only about 0.6 dB
|
||||
for 50 iterations.
|
||||
|
||||
The Matlab results denoted `MATLAB NMS` are obtained with the function
|
||||
`nrLDPCDecode` provided by the MATLAB 5G Toolbox R2019b. The following
|
||||
options are provided to the function:
|
||||
`’Termination’,’max’,’Algorithm’,’Normalized min-sum’,’ScalingFactor’,1`.
|
||||
Furthermore, the 8-bit input LLRs are adapted to fit the dynamic range
|
||||
of `nrLDPCDecode` which is shown in the following listing
|
||||
|
||||
``` {#ldpc_matlab frame="single" caption="Input adaptation for MATLAB LDPC Decoder" label="ldpc_matlab"}
|
||||
maxLLR = max(abs(softbits));
|
||||
rxLLRs = round((softbits/maxLLR)*127);
|
||||
// adjust range to fit tanh use in decoder code
|
||||
softbits = rxLLRs/3.4;
|
||||
```
|
||||
|
||||
A scaling factor (SF) of 1 has been chosen to compare the results more
|
||||
easily with the *LDPC OAI* since the resulting check node processing is
|
||||
the same. However, the Matlab normelized min-sum algorithm uses layered
|
||||
processing and floating point operations. Thus, for the same number of
|
||||
iterations, the performance is significantly better than *LDPC OAI*,
|
||||
especially for small a number of iterations.
|
||||
|
||||
fig:bler-bg2-r23
|
||||
|
||||
In Figure \@fig:bler-bg2-15-2 we compare the performance of different
|
||||
algorithms using at most 50 iterations with early stopping if the parity
|
||||
check passes. The Matlab layered believe propagation (LBP) is used with
|
||||
unquantized input LLRs and performs the best since no approximation is
|
||||
done in the processing. Both NMS and offset min-sum (OMS) use a scaling
|
||||
factor and offset, respectively, that has been empirically found to
|
||||
perform best in this simulation setting. Theirs performance is very
|
||||
close to the BLP and OMS is slightly better than NMS. The performance of
|
||||
*LDPC OAI* is more than 1 dB worse mainly because of the looser
|
||||
approximation. Moreover, the NMS algorithm with SF=1 performs worst
|
||||
probably because the SF is not optimized for the input LLRs. From the
|
||||
results in Figure \@fig:bler-bg2-15-2 we can conclude that the
|
||||
performance of the *LDPC OAI* can be significantly improved by adopting
|
||||
an offset min-sum approximation improving the performance to within
|
||||
0.3dB of the Huawei reference curve.
|
||||
|
||||
fig:bler-bg2-15-2
|
||||
|
||||
Figure \@fig:bler-bg1-r89 shows the performance of BG1 with largest
|
||||
block size of $B=8448$ and highest code rate $R=8/9$. From Figure
|
||||
\@fig:bler-bg1-r89 it can be observed that the performance gap is only
|
||||
about 0.3 dB if 50 iterations are used. However, for 5 iterations there
|
||||
is still a significant performance loss of about 2.3 dB at BLER
|
||||
$10^{-2}$.
|
||||
|
||||
fig:bler-bg1-r89
|
||||
|
||||
Decoding Latency
|
||||
----------------
|
||||
|
||||
\#sec:decoding-time
|
||||
|
||||
This section provides results in terms of decoding latency. That is, the
|
||||
time it takes the decoder to to finish decoding for a given number of
|
||||
iterations. To measure the run time of the decoder we use the OAI tool
|
||||
`time_meas.h`. The clock frequency is about 2.9 GHZ, decoder is run on a
|
||||
single core and the results are averaged over $10\,000$ blocks.
|
||||
|
||||
The results in Table \@tbl:lat-bg2-r15 show the impact of the number of
|
||||
iterations on the decoding latency. It can be observed that the latency
|
||||
roughly doubles if the number of iterations are doubled.
|
||||
|
||||
**Function** **Time \[$\mu s$\] (5 it)** **Time \[$\mu s$\] (10 it)** **Time \[$\mu s$\] (20 it)**
|
||||
------------------ ----------------------------- ------------------------------ ------------------------------
|
||||
`llr2llrProcBuf` 0.5 0.5 0.5
|
||||
`llr2CnProcBuf` 5.0 4.8 4.9
|
||||
`cnProc` 12.4 23.0 42.7
|
||||
`bnProcPc` 8.4 14.8 27.0
|
||||
`bnProc` 5.5 10.1 19.0
|
||||
`cn2bnProcBuf` 14.9 24.4 44.0
|
||||
`bn2cnProcBuf` 10.5 17.8 31.8
|
||||
`llrRes2llrOut` 0.3 0.3 0.3
|
||||
`llr2bit` 0.2 0.2 0.2
|
||||
**Total** **58.5** **97.1** **172.6**
|
||||
|
||||
: BG2, Z=128, R=1/5, B=1280, LDPC OAI
|
||||
|
||||
tbl:lat-bg2-r15
|
||||
|
||||
Table \@tbl:lat-bg2-i5 shows the impact of the code rate on the latency
|
||||
for a given block size and 5 iterations. It can be observed that the
|
||||
performance gain from code rate 1/3 to 2/3 is about a factor 2.
|
||||
|
||||
**Function** **Time \[$\mu s$\] (R=1/5)** **Time \[$\mu s$\] (R=1/3)** **Time \[$\mu s$\] (R=2/3)**
|
||||
------------------ ------------------------------ ------------------------------ ------------------------------
|
||||
`llr2llrProcBuf` 1.5 0.9 0.5
|
||||
`llr2CnProcBuf` 6.0 4.1 2.2
|
||||
`cnProc` 32.2 23.7 14.4
|
||||
`bnProcPc` 21.2 12.1 5.5
|
||||
`bnProc` 9.8 5.9 2.9
|
||||
`cn2bnProcBuf` 23.3 13.9 6.8
|
||||
`bn2cnProcBuf` 14.8 9.7 5.0
|
||||
`llrRes2llrOut` 0.6 0.4 0.3
|
||||
`llr2bit` 0.7 0.4 0.2
|
||||
**Total** **111.0** **71.8** **38.5**
|
||||
|
||||
: BG2, Z=384, B=3840, LDPC OAI, 5 iterations
|
||||
|
||||
tbl:lat-bg2-i5
|
||||
|
||||
Table \@tbl:lat-bg1-i5 shows the results for BG1, larges block size and
|
||||
different code rates. The latency difference betwee code rate 1/3 and
|
||||
code rate 2/3 is less than half because upper left corner of the PCM is
|
||||
more dense than the rest of the PCM.
|
||||
|
||||
**Function** **Time \[$\mu s$\] (R=1/3)** **Time \[$\mu s$\] (R=2/3)** **Time \[$\mu s$\] (R=8/9)**
|
||||
------------------ ------------------------------ ------------------------------ ------------------------------
|
||||
`llr2llrProcBuf` 2.1 1.2 0.9
|
||||
`llr2CnProcBuf` 10.6 5.4 2.9
|
||||
`cnProc` 89.8 66.3 50.0
|
||||
`bnProcPc` 28.1 12.4 7.1
|
||||
`bnProc` 17.1 8.1 4.8
|
||||
`cn2bnProcBuf` 38.7 17.1 9.3
|
||||
`bn2cnProcBuf` 25.6 12.7 7.2
|
||||
`llrRes2llrOut` 0.8 0.4 0.3
|
||||
`llr2bit` 0.9 0.4 0.3
|
||||
**Total** **214.6** **124.6** **83.6**
|
||||
|
||||
: BG1, Z=384, B=8448, LDPC OAI, 5 iterations
|
||||
|
||||
tbl:lat-bg1-i5
|
||||
|
||||
From the above results it can be observed that the data transfer between
|
||||
CNs and BNs takes up a significant amount of the run time. However, the
|
||||
performance gain due to AVX instructions in both CN and BN processing is
|
||||
significantly larger than the penalty incurred by the data transfers.
|
||||
|
||||
Parity Check and Early Stopping Criteria
|
||||
========================================
|
||||
|
||||
It is often unnecessary to carry out the maximum number of iterations.
|
||||
After each iteration a parity check (PC) \@eq:29 can be computed and if
|
||||
a valid code word is found the decoder can stop. This functionality has
|
||||
been implemented and the additional overhead is reasonable. The PC is
|
||||
carried out in the CN processing buffer and the calculation complexity
|
||||
itself is negligible. However, for the processing it is necessary to
|
||||
move the BN results to the CN buffer which takes time, the overall
|
||||
overhead is at most $10\%$ compared to an algorithm without early
|
||||
stopping criteria with the same number of iterations. The PC has to be
|
||||
activated via the define `NR_LDPC_ENABLE_PARITY_CHECK`.
|
||||
|
||||
Conclusion
|
||||
==========
|
||||
|
||||
\#sec:conclusion
|
||||
|
||||
The results in the previous sections show that the current optimized
|
||||
LDPC implementation full-fills the requirements in terms of decoding
|
||||
latency for low to medium number of iterations at the expense of a loss
|
||||
in BLER performance. To improve BLER performance, it is recommended to
|
||||
implement a layered algorithm and a min-sum algorithm with
|
||||
normalization. Further improvements upon the current implementation are
|
||||
detailed in the next section.
|
||||
|
||||
Future Work
|
||||
===========
|
||||
|
||||
\#sec:future-work
|
||||
|
||||
The improvements upon the current LDPC decoder implementation can be
|
||||
divided into two categories:
|
||||
|
||||
1. Improved BLER performance
|
||||
|
||||
2. Reduced decoding latency
|
||||
|
||||
Improved BLER Performance
|
||||
-------------------------
|
||||
|
||||
\#sec:impr-bler-perf
|
||||
|
||||
The BLER performance can be improved by using a tighter approximation
|
||||
than the min-sum approximation. For instance, the min-sum algorithm can
|
||||
be improved by adding a correction factor in the CN processing . The
|
||||
min-sum approximation in \@eq:40 is modified as
|
||||
$$r_{ji} = \prod_{j'\in\mathcal{B}_i\setminus j}\operatorname{sgn}q_{ij'}\min_{j'\in\mathcal{B}_i\setminus j} |q_{ij'}| + w(q_{ij'})$$eq:50
|
||||
|
||||
The correction term $w(q_{ij'})$ is defined as $$w(q_{ij'}) =
|
||||
\begin{cases}
|
||||
c & \textrm{if}~ \\
|
||||
-c & \textrm{if}~ \\
|
||||
0 & \textrm{otherwise}
|
||||
\end{cases}$$eq:51 where the constant $c$ is of order $0.5$ typically.
|
||||
|
||||
Reduced Decoding Latency
|
||||
------------------------
|
||||
|
||||
\#sec:reduc-decod-latency
|
||||
|
||||
The following improvements will reduce the decoding latency:
|
||||
|
||||
- Adapt to AVX512
|
||||
|
||||
- Optimization of CN processing
|
||||
|
||||
- Implement 2/3-layers for faster convergence
|
||||
|
||||
#### AVX512:
|
||||
|
||||
The computations in the CN and BN processing can be further accelerated
|
||||
by using AVX512 instructions. This improvement will speed-up the CN and
|
||||
BN processing by a approximately a factor of 2.
|
||||
|
||||
#### Optimization of CN Processing:
|
||||
|
||||
It can be investigated if CN processing can be improved by computing two
|
||||
minima regardless of the number of BNs. Susequently, the (absolute)
|
||||
value fed back to the BN is one of those minima.
|
||||
|
||||
#### Layered processing:
|
||||
|
||||
The LDPC code in NR always punctures the first 2 columns of the base
|
||||
graph. Hence, the decoder inserts LLRs with value 0 at their place and
|
||||
needs to retrieve those bits during the decoding process. Instead of
|
||||
computing all the parity equations and then passing the results to the
|
||||
BN processing, it is beneficial to first compute parity equations where
|
||||
at most one punctured BN is connected to that CN. If two punctured BNs
|
||||
are connected than according to \@eq:40, the result will be again 0.
|
||||
Thus in a first sub-iteration those parity equation are computed and the
|
||||
results are send to BN processing which calculates the results using
|
||||
only those rows in the PCM. In the second sub-iteration the remaining
|
||||
check equation are used. The convergence of this layered approach is
|
||||
much fast since the bit can be retrieved more quickly while the decoding
|
||||
complexity remains the same. Therefore, for a fixed number of iterations
|
||||
the layered algorithm will have a significantly better performance.
|
||||
@@ -75,98 +75,6 @@ static void fill_uci_2_3_4(nfapi_nr_uci_pucch_pdu_format_2_3_4_t *pdu_2_3_4,
|
||||
pdu_2_3_4->csi_part1.csi_part1_crc = 0;
|
||||
}
|
||||
|
||||
static char *rb_bitmap_to_string(const uint8_t *rb_bitmap, size_t size)
|
||||
{
|
||||
static char buffer[128];
|
||||
char *ptr = buffer;
|
||||
for (size_t i = 0; i < size; i++) {
|
||||
ptr += sprintf(ptr, "%02x ", rb_bitmap[i]);
|
||||
}
|
||||
return buffer;
|
||||
}
|
||||
|
||||
static char *csiRsForRateMatching_to_string(const fapi_nr_dl_config_csirs_pdu_rel15_t *csiRs, size_t size)
|
||||
{
|
||||
static char buffer[512];
|
||||
char *ptr = buffer;
|
||||
for (size_t i = 0; i < size; i++) {
|
||||
ptr += sprintf(ptr,
|
||||
"{ subcarrier_spacing: %u, cyclic_prefix: %u, start_rb: %u, nr_of_rbs: %u }, ",
|
||||
csiRs[i].subcarrier_spacing,
|
||||
csiRs[i].cyclic_prefix,
|
||||
csiRs[i].start_rb,
|
||||
csiRs[i].nr_of_rbs);
|
||||
}
|
||||
return buffer;
|
||||
}
|
||||
|
||||
static void print_fapi_pdsch_pdu(fapi_nr_dl_config_dlsch_pdu_rel15_t *pdu, int frame, int slot)
|
||||
{
|
||||
LOG_I(NR_MAC,
|
||||
"fapi_nr_dl_config_dlsch_pdu_rel15_t [%d.%d]: { BWPSize: %u, BWPStart: %u, SubcarrierSpacing: %u, resource_alloc: %u, rb_bitmap: "
|
||||
"[%s], number_rbs: %u, start_rb: %u, number_symbols: %u, start_symbol: %u, rb_offset: %u, dlDmrsSymbPos: %u, "
|
||||
"dmrsConfigType: %u, prb_bundling_size_ind: %u, rate_matching_ind: %u, zp_csi_rs_trigger: %u, mcs: %u, new_data_indicator: "
|
||||
"%s, rv: %u, targetCodeRate: %u, qamModOrder: %u, TBS: %u, tb2_mcs: %u, tb2_new_data_indicator: %s, tb2_rv: %u, "
|
||||
"harq_process_nbr: %u, vrb_to_prb_mapping: %u, dai: %u, scaling_factor_S: %f, pucch_resource_id: %u, "
|
||||
"pdsch_to_harq_feedback_time_ind: %u, n_dmrs_cdm_groups: %u, dmrs_ports: %u, n_front_load_symb: %u, tci_state: %u, cbgti: "
|
||||
"%u, codeBlockGroupFlushIndicator: %u, PTRSPortIndex: %u, PTRSTimeDensity: %u, PTRSFreqDensity: %u, PTRSReOffset: %u, "
|
||||
"nEpreRatioOfPDSCHToPTRS: %u, mcs_table: %u, tbslbrm: %u, nscid: %u, dlDmrsScramblingId: %u, dlDataScramblingId: %u, "
|
||||
"pduBitmap: %u, k1_feedback: %u, ldpcBaseGraph: %u, numCsiRsForRateMatching: %u, csiRsForRateMatching: [%s] }\n",
|
||||
frame,
|
||||
slot,
|
||||
pdu->BWPSize,
|
||||
pdu->BWPStart,
|
||||
pdu->SubcarrierSpacing,
|
||||
pdu->resource_alloc,
|
||||
rb_bitmap_to_string(pdu->rb_bitmap, 36),
|
||||
pdu->number_rbs,
|
||||
pdu->start_rb,
|
||||
pdu->number_symbols,
|
||||
pdu->start_symbol,
|
||||
pdu->rb_offset,
|
||||
pdu->dlDmrsSymbPos,
|
||||
pdu->dmrsConfigType,
|
||||
pdu->prb_bundling_size_ind,
|
||||
pdu->rate_matching_ind,
|
||||
pdu->zp_csi_rs_trigger,
|
||||
pdu->mcs,
|
||||
pdu->new_data_indicator ? "true" : "false",
|
||||
pdu->rv,
|
||||
pdu->targetCodeRate,
|
||||
pdu->qamModOrder,
|
||||
pdu->TBS,
|
||||
pdu->tb2_mcs,
|
||||
pdu->tb2_new_data_indicator ? "true" : "false",
|
||||
pdu->tb2_rv,
|
||||
pdu->harq_process_nbr,
|
||||
pdu->vrb_to_prb_mapping,
|
||||
pdu->dai,
|
||||
pdu->scaling_factor_S,
|
||||
pdu->pucch_resource_id,
|
||||
pdu->pdsch_to_harq_feedback_time_ind,
|
||||
pdu->n_dmrs_cdm_groups,
|
||||
pdu->dmrs_ports,
|
||||
pdu->n_front_load_symb,
|
||||
pdu->tci_state,
|
||||
pdu->cbgti,
|
||||
pdu->codeBlockGroupFlushIndicator,
|
||||
pdu->PTRSPortIndex,
|
||||
pdu->PTRSTimeDensity,
|
||||
pdu->PTRSFreqDensity,
|
||||
pdu->PTRSReOffset,
|
||||
pdu->nEpreRatioOfPDSCHToPTRS,
|
||||
pdu->mcs_table,
|
||||
pdu->tbslbrm,
|
||||
pdu->nscid,
|
||||
pdu->dlDmrsScramblingId,
|
||||
pdu->dlDataScramblingId,
|
||||
pdu->pduBitmap,
|
||||
pdu->k1_feedback,
|
||||
pdu->ldpcBaseGraph,
|
||||
pdu->numCsiRsForRateMatching,
|
||||
csiRsForRateMatching_to_string(pdu->csiRsForRateMatching, pdu->numCsiRsForRateMatching));
|
||||
}
|
||||
|
||||
static void free_uci_inds(nfapi_nr_uci_indication_t *uci_ind)
|
||||
{
|
||||
for (int k = 0; k < uci_ind->num_ucis; k++)
|
||||
@@ -563,7 +471,6 @@ static void nr_ue_scheduled_response_dl(NR_UE_MAC_INST_t *mac,
|
||||
dlsch0->rnti_type = TYPE_C_RNTI_;
|
||||
dlsch0->dlsch_config = *dlsch_config_pdu;
|
||||
configure_dlsch(dlsch0, phy->dl_harq_processes[0], dlsch_config_pdu, mac, pdu->dlsch_config_pdu.rnti);
|
||||
print_fapi_pdsch_pdu(dlsch_config_pdu, dl_config->sfn, dl_config->slot);
|
||||
} break;
|
||||
case FAPI_NR_CONFIG_TA_COMMAND:
|
||||
configure_ta_command(phy, &pdu->ta_command_pdu);
|
||||
|
||||
Reference in New Issue
Block a user