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
65fea7a1
Commit
65fea7a1
authored
Oct 11, 2023
by
Valentin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(ldpc-offload-xdma): fix ldpc_xdma library and commit switch in nr-softmodem
parent
918eac8d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
executables/nr-gnb.c
executables/nr-gnb.c
+4
-0
openair1/PHY/CODING/nrLDPC_decoder_offload_xdma/nrLDPC_decoder_offload_xdma.c
...nrLDPC_decoder_offload_xdma/nrLDPC_decoder_offload_xdma.c
+8
-2
No files found.
executables/nr-gnb.c
View file @
65fea7a1
...
...
@@ -506,7 +506,11 @@ void init_eNB_afterRU(void) {
LOG_I
(
PHY
,
"RC.nb_nr_CC[inst:%d]:%p
\n
"
,
inst
,
RC
.
gNB
[
inst
]);
gNB
=
RC
.
gNB
[
inst
];
#if 1
gNB
->
ldpc_fpga_flag
=
ldpc_offload_flag
;
#else
gNB
->
ldpc_offload_flag
=
ldpc_offload_flag
;
#endif
phy_init_nr_gNB
(
gNB
);
...
...
openair1/PHY/CODING/nrLDPC_decoder_offload_xdma/nrLDPC_decoder_offload_xdma.c
View file @
65fea7a1
...
...
@@ -787,8 +787,14 @@ int nrLDPC_decoder_FPGA_PYM(int8_t* buf_in, int8_t* buf_out, DecIFConf dec_conf)
uint8_t
i_LS
;
/*Init*/
test_dma_init
();
static
int
init_flag
=
0
;
if
(
init_flag
==
0
)
{
/*Init*/
test_dma_init
();
init_flag
=
1
;
}
else
{
dma_reset
();
}
clock_gettime
(
CLOCK_MONOTONIC
,
&
ts_start0
);
// time start0
// LDPC input parameter
...
...
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