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
zzha zzha
OpenXG-RAN
Commits
65ce8348
Commit
65ce8348
authored
Mar 13, 2023
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add pmi input option in dlsim
parent
faffc9b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
25 deletions
+10
-25
openair1/SIMULATION/NR_PHY/dlsim.c
openair1/SIMULATION/NR_PHY/dlsim.c
+10
-25
No files found.
openair1/SIMULATION/NR_PHY/dlsim.c
View file @
65ce8348
...
@@ -137,7 +137,7 @@ void update_dmrs_config(NR_CellGroupConfig_t *scg, int8_t* dmrs_arg);
...
@@ -137,7 +137,7 @@ void update_dmrs_config(NR_CellGroupConfig_t *scg, int8_t* dmrs_arg);
extern
void
fix_scd
(
NR_ServingCellConfig_t
*
scd
);
// forward declaration
extern
void
fix_scd
(
NR_ServingCellConfig_t
*
scd
);
// forward declaration
/* specific dlsim DL preprocessor: uses rbStart/rbSize/mcs/nrOfLayers from command line of dlsim */
/* specific dlsim DL preprocessor: uses rbStart/rbSize/mcs/nrOfLayers from command line of dlsim */
int
g_mcsIndex
=
-
1
,
g_mcsTableIdx
=
0
,
g_rbStart
=
-
1
,
g_rbSize
=
-
1
,
g_nrOfLayers
=
1
;
int
g_mcsIndex
=
-
1
,
g_mcsTableIdx
=
0
,
g_rbStart
=
-
1
,
g_rbSize
=
-
1
,
g_nrOfLayers
=
1
,
g_pmi
=
0
;
void
nr_dlsim_preprocessor
(
module_id_t
module_id
,
void
nr_dlsim_preprocessor
(
module_id_t
module_id
,
frame_t
frame
,
frame_t
frame
,
sub_frame_t
slot
)
{
sub_frame_t
slot
)
{
...
@@ -183,6 +183,7 @@ void nr_dlsim_preprocessor(module_id_t module_id,
...
@@ -183,6 +183,7 @@ void nr_dlsim_preprocessor(module_id_t module_id,
sched_pdsch
->
rbSize
=
g_rbSize
;
sched_pdsch
->
rbSize
=
g_rbSize
;
sched_pdsch
->
mcs
=
g_mcsIndex
;
sched_pdsch
->
mcs
=
g_mcsIndex
;
sched_pdsch
->
nrOfLayers
=
g_nrOfLayers
;
sched_pdsch
->
nrOfLayers
=
g_nrOfLayers
;
sched_pdsch
->
pm_index
=
g_pmi
;
/* the following might override the table that is mandated by RRC
/* the following might override the table that is mandated by RRC
* configuration */
* configuration */
current_BWP
->
mcsTableIdx
=
g_mcsTableIdx
;
current_BWP
->
mcsTableIdx
=
g_mcsTableIdx
;
...
@@ -327,7 +328,7 @@ int main(int argc, char **argv)
...
@@ -327,7 +328,7 @@ int main(int argc, char **argv)
FILE
*
scg_fd
=
NULL
;
FILE
*
scg_fd
=
NULL
;
while
((
c
=
getopt
(
argc
,
argv
,
"f:hA:pf:g:i:n:s:S:t:v:x:y:z:M:N:F:GR:d:PI:L:a:b:e:m:w:T:U:q:X:Y"
))
!=
-
1
)
{
while
((
c
=
getopt
(
argc
,
argv
,
"f:hA:p
:
f:g:i:n:s:S:t:v:x:y:z:M:N:F:GR:d:PI:L:a:b:e:m:w:T:U:q:X:Y"
))
!=
-
1
)
{
switch
(
c
)
{
switch
(
c
)
{
case
'f'
:
case
'f'
:
scg_fd
=
fopen
(
optarg
,
"r"
);
scg_fd
=
fopen
(
optarg
,
"r"
);
...
@@ -404,35 +405,19 @@ int main(int argc, char **argv)
...
@@ -404,35 +405,19 @@ int main(int argc, char **argv)
printf
(
"Setting SNR1 to %f
\n
"
,
snr1
);
printf
(
"Setting SNR1 to %f
\n
"
,
snr1
);
break
;
break
;
/*
case 't':
Td= atof(optarg);
break;
*/
/*case 'p':
extended_prefix_flag=1;
break;*/
/*
case 'r':
ricean_factor = pow(10,-.1*atof(optarg));
if (ricean_factor>1) {
printf("Ricean factor must be between 0 and 1\n");
exit(-1);
}
break;
*/
case
'x'
:
case
'x'
:
g_nrOfLayers
=
atoi
(
optarg
);
g_nrOfLayers
=
atoi
(
optarg
);
if
((
g_nrOfLayers
==
0
)
||
if
((
g_nrOfLayers
==
0
)
||
(
g_nrOfLayers
>
4
))
{
(
g_nrOfLayers
>
4
))
{
printf
(
"Unsupported nr Of Layers %d
\n
"
,
g_nrOfLayers
);
printf
(
"Unsupported nr Of Layers %d
\n
"
,
g_nrOfLayers
);
exit
(
-
1
);
exit
(
-
1
);
}
}
break
;
break
;
case
'p'
:
g_pmi
=
atoi
(
optarg
);
break
;
case
'v'
:
case
'v'
:
num_rounds
=
atoi
(
optarg
);
num_rounds
=
atoi
(
optarg
);
...
...
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