Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Shweta Shrivastava
openairinterface5G
Commits
bf7eb25c
Commit
bf7eb25c
authored
7 years ago
by
tct-labo4
Browse files
Options
Downloads
Patches
Plain Diff
[OAI-UE] timing measurements for slot0/slot1 parallelization
parent
0b332b55
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
openair1/PHY/defs.h
+9
-5
9 additions, 5 deletions
openair1/PHY/defs.h
openair1/PHY/impl_defs_lte.h
+2
-0
2 additions, 0 deletions
openair1/PHY/impl_defs_lte.h
openair1/SCHED/phy_procedures_lte_ue.c
+97
-86
97 additions, 86 deletions
openair1/SCHED/phy_procedures_lte_ue.c
with
108 additions
and
91 deletions
openair1/PHY/defs.h
+
9
−
5
View file @
bf7eb25c
...
...
@@ -894,9 +894,9 @@ typedef struct {
/// Transmission mode per eNB
uint8_t
transmission_mode
[
NUMBER_OF_CONNECTED_eNB_MAX
];
time_stats_t
phy_proc
;
time_stats_t
phy_proc
[
RX_NB_TH
]
;
time_stats_t
phy_proc_tx
;
time_stats_t
phy_proc_rx
[
2
];
time_stats_t
phy_proc_rx
[
RX_NB_TH
];
uint32_t
use_ia_receiver
;
...
...
@@ -910,8 +910,12 @@ typedef struct {
time_stats_t
ulsch_multiplexing_stats
;
time_stats_t
generic_stat
;
time_stats_t
pdsch_procedures_stat
;
time_stats_t
dlsch_procedures_stat
;
time_stats_t
ue_front_end_stat
[
RX_NB_TH
];
time_stats_t
ue_front_end_per_slot_stat
[
RX_NB_TH
][
LTE_SLOTS_PER_SUBFRAME
];
time_stats_t
pdcch_procedures_stat
[
RX_NB_TH
];
time_stats_t
pdsch_procedures_stat
[
RX_NB_TH
];
time_stats_t
pdsch_procedures_per_slot_stat
[
RX_NB_TH
][
LTE_SLOTS_PER_SUBFRAME
];
time_stats_t
dlsch_procedures_stat
[
RX_NB_TH
];
time_stats_t
ofdm_demod_stats
;
time_stats_t
dlsch_rx_pdcch_stats
;
...
...
@@ -923,7 +927,7 @@ typedef struct {
time_stats_t
dlsch_rate_unmatching_stats
;
time_stats_t
dlsch_turbo_decoding_stats
;
time_stats_t
dlsch_deinterleaving_stats
;
time_stats_t
dlsch_llr_stats
;
time_stats_t
dlsch_llr_stats
[
RX_NB_TH
][
LTE_SLOTS_PER_SUBFRAME
]
;
time_stats_t
dlsch_unscrambling_stats
;
time_stats_t
dlsch_rate_matching_stats
;
time_stats_t
dlsch_turbo_encoding_stats
;
...
...
This diff is collapsed.
Click to expand it.
openair1/PHY/impl_defs_lte.h
+
2
−
0
View file @
bf7eb25c
...
...
@@ -40,6 +40,8 @@
#define RX_NB_TH_MAX 2
#define RX_NB_TH 2
#define LTE_SLOTS_PER_SUBFRAME 2
#define LTE_NUMBER_OF_SUBFRAMES_PER_FRAME 10
#define LTE_SLOTS_PER_FRAME 20
#define LTE_CE_FILTER_LENGTH 5
...
...
This diff is collapsed.
Click to expand it.
openair1/SCHED/phy_procedures_lte_ue.c
+
97
−
86
View file @
bf7eb25c
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment