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
oai
openairinterface5G
Commits
8e5b1740
Commit
8e5b1740
authored
Aug 04, 2017
by
shahab
Browse files
merge to 68
parent
8de28502
Changes
2
Hide whitespace changes
Inline
Side-by-side
openair2/LAYER2/MAC/flexran_agent_scheduler_dlsch_ue.c
View file @
8e5b1740
...
@@ -88,16 +88,16 @@ typedef enum {
...
@@ -88,16 +88,16 @@ typedef enum {
// number of active slices for past and current time
// number of active slices for past and current time
int
n_active_slices
=
2
;
int
n_active_slices
=
1
;
int
n_active_slices_current
=
2
;
int
n_active_slices_current
=
1
;
// ue to slice mapping
// ue to slice mapping
int
slicing_strategy
=
UEID_TO_SLICEID
;
int
slicing_strategy
=
UEID_TO_SLICEID
;
int
slicing_strategy_current
=
UEID_TO_SLICEID
;
int
slicing_strategy_current
=
UEID_TO_SLICEID
;
// RB share for each slice for past and current time
// RB share for each slice for past and current time
float
slice_percentage
[
MAX_NUM_SLICES
]
=
{
0
.
5
,
0
.
5
,
0
.
0
,
0
.
0
};
float
slice_percentage
[
MAX_NUM_SLICES
]
=
{
1
.
0
,
1
.
0
,
0
.
0
,
0
.
0
};
float
slice_percentage_current
[
MAX_NUM_SLICES
]
=
{
0
.
5
,
0
.
5
,
0
.
0
,
0
.
0
};
float
slice_percentage_current
[
MAX_NUM_SLICES
]
=
{
1
.
0
,
1
.
0
,
0
.
0
,
0
.
0
};
float
total_slice_percentage
=
0
;
float
total_slice_percentage
=
0
;
// MAX MCS for each slice for past and current time
// MAX MCS for each slice for past and current time
...
...
openair2/LAYER2/MAC/flexran_agent_scheduler_ulsch_ue.c
View file @
8e5b1740
...
@@ -58,12 +58,12 @@
...
@@ -58,12 +58,12 @@
#include "T.h"
#include "T.h"
/* number of active slices for past and current time*/
/* number of active slices for past and current time*/
int
n_active_slices_uplink
=
2
;
int
n_active_slices_uplink
=
1
;
int
n_active_slices_uplink_current
=
2
;
int
n_active_slices_uplink_current
=
1
;
/* RB share for each slice for past and current time*/
/* RB share for each slice for past and current time*/
float
slice_percentage_uplink
[
MAX_NUM_SLICES
]
=
{
0
.
5
,
0
.
5
,
0
.
0
,
0
.
0
};
float
slice_percentage_uplink
[
MAX_NUM_SLICES
]
=
{
1
.
0
,
1
.
0
,
0
.
0
,
0
.
0
};
float
slice_percentage_current_uplink
[
MAX_NUM_SLICES
]
=
{
0
.
5
,
0
.
5
,
0
.
0
,
0
.
0
};
float
slice_percentage_current_uplink
[
MAX_NUM_SLICES
]
=
{
1
.
0
,
1
.
0
,
0
.
0
,
0
.
0
};
float
total_slice_percentage_uplink
=
0
;
float
total_slice_percentage_uplink
=
0
;
// MAX MCS for each slice for past and current time
// MAX MCS for each slice for past and current time
...
@@ -477,11 +477,11 @@ flexran_schedule_ue_ul_spec_default(mid_t mod_id,
...
@@ -477,11 +477,11 @@ flexran_schedule_ue_ul_spec_default(mid_t mod_id,
//LOG_N(MAC,"[eNB %d]frame %d subframe %d slice %d: calling the scheduler\n", mod_id, frame, subframe,i);
//LOG_N(MAC,"[eNB %d]frame %d subframe %d slice %d: calling the scheduler\n", mod_id, frame, subframe,i);
slice_sched_ul
[
i
](
mod_id
,
frame
,
cooperation_flag
,
subframe
,
sched_subframe
,
ul_info
);
}
}
slice_sched_ul
[
0
](
mod_id
,
frame
,
cooperation_flag
,
subframe
,
sched_subframe
,
ul_info
);
}
}
...
...
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