Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bin He
openairinterface5G
Commits
0496c15d
Commit
0496c15d
authored
Jan 09, 2021
by
knopp
Committed by
Robert Schmidt
Feb 07, 2021
Browse files
Remove PHY HARQ round_trials logs
parent
16b9f4ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
openair1/PHY/NR_TRANSPORT/nr_dlsch.c
View file @
0496c15d
...
...
@@ -421,15 +421,8 @@ void dump_pdsch_stats(PHY_VARS_gNB *gNB) {
for
(
int
i
=
0
;
i
<
NUMBER_OF_NR_SCH_STATS_MAX
;
i
++
)
if
(
gNB
->
dlsch_stats
[
i
].
rnti
>
0
)
LOG_
I
(
PHY
,
"DLSCH RNTI %x:
round_trials %d(%1.1e):%d(%1.1e):%d(%1.1e):%d,
current_Qm %d, current_RI %d, total_bytes TX %d
\n
"
,
LOG_
D
(
PHY
,
"DLSCH RNTI %x: current_Qm %d, current_RI %d, total_bytes TX %d
\n
"
,
gNB
->
dlsch_stats
[
i
].
rnti
,
gNB
->
dlsch_stats
[
i
].
round_trials
[
0
],
(
double
)
gNB
->
dlsch_stats
[
i
].
round_trials
[
1
]
/
gNB
->
dlsch_stats
[
i
].
round_trials
[
0
],
gNB
->
dlsch_stats
[
i
].
round_trials
[
1
],
(
double
)
gNB
->
dlsch_stats
[
i
].
round_trials
[
2
]
/
gNB
->
dlsch_stats
[
i
].
round_trials
[
0
],
gNB
->
dlsch_stats
[
i
].
round_trials
[
2
],
(
double
)
gNB
->
dlsch_stats
[
i
].
round_trials
[
3
]
/
gNB
->
dlsch_stats
[
i
].
round_trials
[
0
],
gNB
->
dlsch_stats
[
i
].
round_trials
[
3
],
gNB
->
dlsch_stats
[
i
].
current_Qm
,
gNB
->
dlsch_stats
[
i
].
current_RI
,
gNB
->
dlsch_stats
[
i
].
total_bytes_tx
);
...
...
openair1/SCHED_NR/phy_procedures_nr_gNB.c
View file @
0496c15d
...
...
@@ -201,10 +201,10 @@ void phy_procedures_gNB_TX(PHY_VARS_gNB *gNB,
VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME
(
VCD_SIGNAL_DUMPER_FUNCTIONS_GENERATE_DLSCH
,
1
);
LOG_D
(
PHY
,
"PDSCH generation started (%d) in frame %d.%d
\n
"
,
gNB
->
num_pdsch_rnti
[
slot
],
frame
,
slot
);
nr_generate_pdsch
(
gNB
,
frame
,
slot
);
if
((
frame
&
127
)
==
0
)
dump_pdsch_stats
(
gNB
);
VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME
(
VCD_SIGNAL_DUMPER_FUNCTIONS_GENERATE_DLSCH
,
0
);
}
if
((
frame
&
127
)
==
0
)
dump_pdsch_stats
(
gNB
);
//apply the OFDM symbol rotation here
apply_nr_rotation
(
fp
,(
int16_t
*
)
&
gNB
->
common_vars
.
txdataF
[
0
][
txdataF_offset
],
slot
,
0
,
fp
->
Ncp
==
EXTENDED
?
12
:
14
,
fp
->
ofdm_symbol_size
);
...
...
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