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
0f45f471
Unverified
Commit
0f45f471
authored
Aug 07, 2025
by
Sakthivel Velumani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add timing stats for TRS processing
Signed-off-by:
Sakthivel Velumani
<
s.velumani@northeastern.edu
>
parent
016ab2cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
openair1/PHY/NR_UE_TRANSPORT/csi_rx.c
openair1/PHY/NR_UE_TRANSPORT/csi_rx.c
+2
-0
openair1/PHY/nr_phy_common/inc/nr_ue_phy_meas.h
openair1/PHY/nr_phy_common/inc/nr_ue_phy_meas.h
+2
-1
No files found.
openair1/PHY/NR_UE_TRANSPORT/csi_rx.c
View file @
0f45f471
...
@@ -992,6 +992,7 @@ void nr_ue_csi_rs_procedures(PHY_VARS_NR_UE *ue,
...
@@ -992,6 +992,7 @@ void nr_ue_csi_rs_procedures(PHY_VARS_NR_UE *ue,
int
trs_cfo
=
0
;
int
trs_cfo
=
0
;
const
bool
do_trs_est
=
(
csirs_config_pdu
->
csi_type
==
0
)
&&
(
res_idx
==
1
);
const
bool
do_trs_est
=
(
csirs_config_pdu
->
csi_type
==
0
)
&&
(
res_idx
==
1
);
if
(
do_trs_est
)
{
if
(
do_trs_est
)
{
start_meas_nr_ue_phy
(
ue
,
TRS_PROCESSING
);
nr_ue_trs_processing
(
ue
,
nr_ue_trs_processing
(
ue
,
trs_estimates
,
trs_estimates
,
csi_rs_ls_estimated_channel
,
csi_rs_ls_estimated_channel
,
...
@@ -1002,6 +1003,7 @@ void nr_ue_csi_rs_procedures(PHY_VARS_NR_UE *ue,
...
@@ -1002,6 +1003,7 @@ void nr_ue_csi_rs_procedures(PHY_VARS_NR_UE *ue,
csirs_config_pdu
->
symb_l0
,
csirs_config_pdu
->
symb_l0
,
&
trs_cfo
,
&
trs_cfo
,
NULL
);
// Time offset not estimated because it is corrected using PBCH DMRS
NULL
);
// Time offset not estimated because it is corrected using PBCH DMRS
stop_meas_nr_ue_phy
(
ue
,
TRS_PROCESSING
);
}
}
switch
(
csirs_config_pdu
->
measurement_bitmap
)
{
switch
(
csirs_config_pdu
->
measurement_bitmap
)
{
...
...
openair1/PHY/nr_phy_common/inc/nr_ue_phy_meas.h
View file @
0f45f471
...
@@ -38,7 +38,8 @@
...
@@ -38,7 +38,8 @@
FN(ULSCH_INTERLEAVING_STATS),\
FN(ULSCH_INTERLEAVING_STATS),\
FN(ULSCH_ENCODING_STATS),\
FN(ULSCH_ENCODING_STATS),\
FN(OFDM_MOD_STATS),\
FN(OFDM_MOD_STATS),\
FN(PRACH_GEN_STATS)
FN(PRACH_GEN_STATS),\
FN(TRS_PROCESSING)
typedef
enum
{
typedef
enum
{
FOREACH_NR_PHY_CPU_MEAS
(
NOOP
),
FOREACH_NR_PHY_CPU_MEAS
(
NOOP
),
...
...
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