Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Michael Black
OpenXG-RAN
Commits
51a45a4d
Commit
51a45a4d
authored
Sep 19, 2019
by
sebastian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Starting to put in the new reduced LUTs
parent
79de8953
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
572 additions
and
105 deletions
+572
-105
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_init.h
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_init.h
+20
-0
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_lut/nrLDPC_lut.h
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_lut/nrLDPC_lut.h
+495
-0
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_mPass.h
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_mPass.h
+55
-105
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_types.h
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_types.h
+2
-0
No files found.
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_init.h
View file @
51a45a4d
...
...
@@ -2199,6 +2199,16 @@ static inline uint32_t nrLDPC_init(t_nrLDPC_dec_params* p_decParams, t_nrLDPC_lu
}
else
if
(
Z
==
320
)
{
p_lut
->
circShift
[
0
]
=
(
const
uint16_t
**
)
circShift_BG1_Z320_CNG3
;
p_lut
->
circShift
[
1
]
=
(
const
uint16_t
**
)
circShift_BG1_Z320_CNG4
;
p_lut
->
circShift
[
2
]
=
(
const
uint16_t
**
)
circShift_BG1_Z320_CNG5
;
p_lut
->
circShift
[
3
]
=
(
const
uint16_t
**
)
circShift_BG1_Z320_CNG6
;
p_lut
->
circShift
[
4
]
=
(
const
uint16_t
**
)
circShift_BG1_Z320_CNG7
;
p_lut
->
circShift
[
5
]
=
(
const
uint16_t
**
)
circShift_BG1_Z320_CNG8
;
p_lut
->
circShift
[
6
]
=
(
const
uint16_t
**
)
circShift_BG1_Z320_CNG9
;
p_lut
->
circShift
[
7
]
=
(
const
uint16_t
**
)
circShift_BG1_Z320_CNG10
;
p_lut
->
circShift
[
8
]
=
(
const
uint16_t
**
)
circShift_BG1_Z320_CNG19
;
if
(
R
==
13
)
{
p_lut
->
llr2CnProcBuf
=
lut_llr2CnProcBuf_BG1_Z320_R13
;
...
...
@@ -2241,6 +2251,16 @@ static inline uint32_t nrLDPC_init(t_nrLDPC_dec_params* p_decParams, t_nrLDPC_lu
}
else
if
(
Z
==
384
)
{
p_lut
->
circShift
[
0
]
=
(
const
uint16_t
**
)
circShift_BG1_Z384_CNG3
;
p_lut
->
circShift
[
1
]
=
(
const
uint16_t
**
)
circShift_BG1_Z384_CNG4
;
p_lut
->
circShift
[
2
]
=
(
const
uint16_t
**
)
circShift_BG1_Z384_CNG5
;
p_lut
->
circShift
[
3
]
=
(
const
uint16_t
**
)
circShift_BG1_Z384_CNG6
;
p_lut
->
circShift
[
4
]
=
(
const
uint16_t
**
)
circShift_BG1_Z384_CNG7
;
p_lut
->
circShift
[
5
]
=
(
const
uint16_t
**
)
circShift_BG1_Z384_CNG8
;
p_lut
->
circShift
[
6
]
=
(
const
uint16_t
**
)
circShift_BG1_Z384_CNG9
;
p_lut
->
circShift
[
7
]
=
(
const
uint16_t
**
)
circShift_BG1_Z384_CNG10
;
p_lut
->
circShift
[
8
]
=
(
const
uint16_t
**
)
circShift_BG1_Z384_CNG19
;
if
(
R
==
13
)
{
p_lut
->
llr2CnProcBuf
=
lut_llr2CnProcBuf_BG1_Z384_R13
;
...
...
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_lut/nrLDPC_lut.h
View file @
51a45a4d
This diff is collapsed.
Click to expand it.
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_mPass.h
View file @
51a45a4d
This diff is collapsed.
Click to expand it.
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_types.h
View file @
51a45a4d
...
...
@@ -32,6 +32,7 @@
#define __NR_LDPC_TYPES__H__
#include "PHY/TOOLS/time_meas.h"
#include "nrLDPC_defs.h"
// ==============================================================================
// TYPES
...
...
@@ -49,6 +50,7 @@ typedef struct nrLDPC_lut {
const
uint8_t
*
numEdgesPerBn
;
/**< LUT with number of edges per BN */
const
uint32_t
*
cn2bnProcBuf
;
/**< LUT for transferring CN processing results to BN processing buffer */
const
uint16_t
*
llr2llrProcBuf
;
/**< LUT for transferring input LLRs to LLR processing buffer */
const
uint16_t
**
circShift
[
NR_LDPC_NUM_CN_GROUPS_BG1
];
/**< LUT for circular shift values for all CN groups and Z's */
}
t_nrLDPC_lut
;
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment