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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
7bb529dc
Commit
7bb529dc
authored
Nov 14, 2023
by
laurent
Committed by
Raymond Knopp
Nov 28, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix redundant member in ldpc decoder struct
parent
10d7fe9c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
5 deletions
+6
-5
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_decoder_CL.c
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_decoder_CL.c
+3
-1
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_types.h
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_types.h
+0
-1
openair1/PHY/CODING/nrLDPC_decoder_LYC/nrLDPC_decoder_LYC.cu
openair1/PHY/CODING/nrLDPC_decoder_LYC/nrLDPC_decoder_LYC.cu
+1
-1
openair1/PHY/NR_TRANSPORT/nr_ulsch_decoding.c
openair1/PHY/NR_TRANSPORT/nr_ulsch_decoding.c
+1
-1
openair1/PHY/NR_UE_TRANSPORT/nr_dlsch_decoding.c
openair1/PHY/NR_UE_TRANSPORT/nr_dlsch_decoding.c
+1
-1
No files found.
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_decoder_CL.c
View file @
7bb529dc
...
...
@@ -339,9 +339,11 @@ int32_t LDPCinit()
}
int32_t
LDPCdecoder
(
t_nrLDPC_dec_params
*
p_decParams
,
uint8_t
harq_pid
,
uint8_t
ulsch_id
,
uint8_t
C
,
int8_t
*
p_llr
,
int8_t
*
p_out
,
t_nrLDPC_procBuf
*
p_procBuf
,
t_nrLDPC_time_stats
*
time_decoder
,
decode_abort_t
*
ab
)
{
...
...
openair1/PHY/CODING/nrLDPC_decoder/nrLDPC_types.h
View file @
7bb529dc
...
...
@@ -89,7 +89,6 @@ typedef struct nrLDPC_dec_params {
uint8_t
Qm
;
/**< Modulation */
uint8_t
rv
;
uint8_t
numMaxIter
;
/**< Maximum number of iterations */
int
block_length
;
int
E
;
e_nrLDPC_outMode
outMode
;
/**< Output format */
int
crc_type
;
...
...
openair1/PHY/CODING/nrLDPC_decoder_LYC/nrLDPC_decoder_LYC.cu
View file @
7bb529dc
...
...
@@ -518,7 +518,7 @@ extern "C" int32_t LDPCdecoder(t_nrLDPC_dec_params *p_decParams,
init_LLR_DMA
(
p_decParams
,
p_llr
,
p_out
);
uint16_t
Zc
=
p_decParams
->
Z
;
uint8_t
BG
=
p_decParams
->
BG
;
int
block_length
=
p_decParams
->
block_length
;
int
block_length
=
p_decParams
->
E
;
uint8_t
row
,
col
;
if
(
BG
==
1
)
{
row
=
46
;
...
...
openair1/PHY/NR_TRANSPORT/nr_ulsch_decoding.c
View file @
7bb529dc
...
...
@@ -187,7 +187,7 @@ static void nr_processULSegment(void *arg)
memset
(
ulsch_harq
->
c
[
r
],
0
,
Kr_bytes
);
p_decoderParms
->
crc_type
=
crcType
(
ulsch_harq
->
C
,
A
);
p_decoderParms
->
E
=
p_decoderParms
->
block_length
=
lenWithCrc
(
ulsch_harq
->
C
,
A
);
p_decoderParms
->
E
=
lenWithCrc
(
ulsch_harq
->
C
,
A
);
// start_meas(&phy_vars_gNB->ulsch_ldpc_decoding_stats);
// set first 2*Z_c bits to zeros
...
...
openair1/PHY/NR_UE_TRANSPORT/nr_dlsch_decoding.c
View file @
7bb529dc
...
...
@@ -252,7 +252,7 @@ static void nr_processDLSegment(void *arg)
}
//VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_DLSCH_LDPC, VCD_FUNCTION_IN);
p_decoderParms
->
E
=
p_decoderParms
->
block_length
=
lenWithCrc
(
harq_process
->
C
,
A
);
p_decoderParms
->
E
=
lenWithCrc
(
harq_process
->
C
,
A
);
p_decoderParms
->
crc_type
=
crcType
(
harq_process
->
C
,
A
);
rdata
->
decodeIterations
=
ldpc_interface
.
LDPCdecoder
(
p_decoderParms
,
0
,
0
,
0
,
l
,
LDPCoutput
,
&
procTime
,
&
harq_process
->
abort_decode
);
...
...
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