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
lizhongxiao
OpenXG-RAN
Commits
f7b90f30
Commit
f7b90f30
authored
Feb 13, 2024
by
Jaroslava Fiedlerova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
T2 encoder - fix n_cb calculation
parent
c48f42b4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
+7
-0
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_decoder_offload.c
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_decoder_offload.c
+5
-0
openair1/PHY/CODING/nrLDPC_defs.h
openair1/PHY/CODING/nrLDPC_defs.h
+1
-0
openair1/PHY/NR_TRANSPORT/nr_dlsch_coding.c
openair1/PHY/NR_TRANSPORT/nr_dlsch_coding.c
+1
-0
No files found.
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_decoder_offload.c
View file @
f7b90f30
...
@@ -1100,6 +1100,7 @@ int32_t LDPCencoder(unsigned char **input, unsigned char **output, encoder_imple
...
@@ -1100,6 +1100,7 @@ int32_t LDPCencoder(unsigned char **input, unsigned char **output, encoder_imple
// hardcoded to use the first found board
// hardcoded to use the first found board
struct
active_device
*
ad
=
active_devs
;
struct
active_device
*
ad
=
active_devs
;
int
ret
;
int
ret
;
uint32_t
Nref
=
0
;
t_nrLDPCoffload_params
offloadParams
=
{.
E
=
impp
->
E
,
t_nrLDPCoffload_params
offloadParams
=
{.
E
=
impp
->
E
,
.
n_cb
=
(
impp
->
BG
==
1
)
?
(
66
*
impp
->
Zc
)
:
(
50
*
impp
->
Zc
),
.
n_cb
=
(
impp
->
BG
==
1
)
?
(
66
*
impp
->
Zc
)
:
(
50
*
impp
->
Zc
),
.
BG
=
impp
->
BG
,
.
BG
=
impp
->
BG
,
...
@@ -1112,6 +1113,10 @@ int32_t LDPCencoder(unsigned char **input, unsigned char **output, encoder_imple
...
@@ -1112,6 +1113,10 @@ int32_t LDPCencoder(unsigned char **input, unsigned char **output, encoder_imple
for
(
int
r
=
0
;
r
<
impp
->
n_segments
;
r
++
)
{
for
(
int
r
=
0
;
r
<
impp
->
n_segments
;
r
++
)
{
offloadParams
.
E_cb
[
r
]
=
impp
->
E_cb
[
r
];
offloadParams
.
E_cb
[
r
]
=
impp
->
E_cb
[
r
];
}
}
if
(
impp
->
Tbslbrm
!=
0
){
Nref
=
3
*
impp
->
Tbslbrm
/
(
2
*
impp
->
n_segments
);
offloadParams
.
n_cb
=
min
(
offloadParams
.
n_cb
,
Nref
);
}
struct
rte_bbdev_info
info
;
struct
rte_bbdev_info
info
;
rte_bbdev_info_get
(
ad
->
dev_id
,
&
info
);
rte_bbdev_info_get
(
ad
->
dev_id
,
&
info
);
int
socket_id
=
GET_SOCKET
(
info
.
socket_id
);
int
socket_id
=
GET_SOCKET
(
info
.
socket_id
);
...
...
openair1/PHY/CODING/nrLDPC_defs.h
View file @
f7b90f30
...
@@ -61,6 +61,7 @@ typedef struct {
...
@@ -61,6 +61,7 @@ typedef struct {
uint8_t
Qm
;
uint8_t
Qm
;
uint32_t
E
;
uint32_t
E
;
uint32_t
E_cb
[
NR_LDPC_MAX_NUM_CB
];
uint32_t
E_cb
[
NR_LDPC_MAX_NUM_CB
];
uint32_t
Tbslbrm
;
uint8_t
status_cb
[
NR_LDPC_MAX_NUM_CB
];
uint8_t
status_cb
[
NR_LDPC_MAX_NUM_CB
];
unsigned
int
G
;
unsigned
int
G
;
// Redundancy version index
// Redundancy version index
...
...
openair1/PHY/NR_TRANSPORT/nr_dlsch_coding.c
View file @
f7b90f30
...
@@ -365,6 +365,7 @@ int nr_dlsch_encoding(PHY_VARS_gNB *gNB,
...
@@ -365,6 +365,7 @@ int nr_dlsch_encoding(PHY_VARS_gNB *gNB,
impp
.
harq
=
harq
;
impp
.
harq
=
harq
;
if
(
gNB
->
ldpc_offload_flag
)
{
if
(
gNB
->
ldpc_offload_flag
)
{
impp
.
Qm
=
rel15
->
qamModOrder
[
0
];
impp
.
Qm
=
rel15
->
qamModOrder
[
0
];
impp
.
Tbslbrm
=
rel15
->
maintenance_parms_v3
.
tbSizeLbrmBytes
;
impp
.
rv
=
rel15
->
rvIndex
[
0
];
impp
.
rv
=
rel15
->
rvIndex
[
0
];
int
nb_re_dmrs
=
int
nb_re_dmrs
=
(
rel15
->
dmrsConfigType
==
NFAPI_NR_DMRS_TYPE1
)
?
(
6
*
rel15
->
numDmrsCdmGrpsNoData
)
:
(
4
*
rel15
->
numDmrsCdmGrpsNoData
);
(
rel15
->
dmrsConfigType
==
NFAPI_NR_DMRS_TYPE1
)
?
(
6
*
rel15
->
numDmrsCdmGrpsNoData
)
:
(
4
*
rel15
->
numDmrsCdmGrpsNoData
);
...
...
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