Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
las3_pub
/
simso
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
4b710687
authored
May 22, 2015
by
Maxime Chéramy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix import path of some schedulers.
parent
46b3f76e
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
10 additions
and
10 deletions
+10
-10
simso/schedulers/Fixed_PEDF.py
+1
-1
simso/schedulers/LB_P_EDF.py
+1
-1
simso/schedulers/P_EDF.py
+1
-1
simso/schedulers/P_EDF2.py
+1
-1
simso/schedulers/P_EDF_WF.py
+1
-1
simso/schedulers/P_RM.py
+1
-1
simso/schedulers/RUN.py
+2
-2
simso/schedulers/WC_RUN.py
+1
-1
simso/schedulers/WC_U_EDF.py
+1
-1
simso/schedulers/__init__.py
+0
-0
No files found.
simso/schedulers/Fixed_PEDF.py
View file @
4b710687
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
# coding=utf-8
# coding=utf-8
from
simso.core.Scheduler
import
SchedulerInfo
from
simso.core.Scheduler
import
SchedulerInfo
from
EDF_mono
import
EDF_mono
from
simso.schedulers.
EDF_mono
import
EDF_mono
from
simso.utils
import
PartitionedScheduler
from
simso.utils
import
PartitionedScheduler
...
...
simso/schedulers/LB_P_EDF.py
View file @
4b710687
...
@@ -3,7 +3,7 @@ Partitionned EDF using PartitionedScheduler.
...
@@ -3,7 +3,7 @@ Partitionned EDF using PartitionedScheduler.
Try to load balance the tasks among the processors.
Try to load balance the tasks among the processors.
"""
"""
from
simso.core.Scheduler
import
SchedulerInfo
from
simso.core.Scheduler
import
SchedulerInfo
from
EDF_mono
import
EDF_mono
from
simso.schedulers.
EDF_mono
import
EDF_mono
from
simso.utils
import
PartitionedScheduler
from
simso.utils
import
PartitionedScheduler
...
...
simso/schedulers/P_EDF.py
View file @
4b710687
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
Partitionned EDF using PartitionedScheduler.
Partitionned EDF using PartitionedScheduler.
"""
"""
from
simso.core.Scheduler
import
SchedulerInfo
from
simso.core.Scheduler
import
SchedulerInfo
from
EDF_mono
import
EDF_mono
from
simso.schedulers.
EDF_mono
import
EDF_mono
from
simso.utils
import
PartitionedScheduler
from
simso.utils
import
PartitionedScheduler
from
simso.utils.PartitionedScheduler
import
decreasing_first_fit
from
simso.utils.PartitionedScheduler
import
decreasing_first_fit
...
...
simso/schedulers/P_EDF2.py
View file @
4b710687
...
@@ -5,7 +5,7 @@ Use EDF_mono.
...
@@ -5,7 +5,7 @@ Use EDF_mono.
"""
"""
from
simso.core
import
Scheduler
from
simso.core
import
Scheduler
from
simso.core.Scheduler
import
SchedulerInfo
from
simso.core.Scheduler
import
SchedulerInfo
from
EDF_mono
import
EDF_mono
from
simso.schedulers.
EDF_mono
import
EDF_mono
class
P_EDF2
(
Scheduler
):
class
P_EDF2
(
Scheduler
):
...
...
simso/schedulers/P_EDF_WF.py
View file @
4b710687
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
Partitionned EDF using PartitionedScheduler.
Partitionned EDF using PartitionedScheduler.
"""
"""
from
simso.core.Scheduler
import
SchedulerInfo
from
simso.core.Scheduler
import
SchedulerInfo
from
EDF_mono
import
EDF_mono
from
simso.schedulers.
EDF_mono
import
EDF_mono
from
simso.utils
import
PartitionedScheduler
from
simso.utils
import
PartitionedScheduler
from
simso.utils.PartitionedScheduler
import
decreasing_worst_fit
from
simso.utils.PartitionedScheduler
import
decreasing_worst_fit
...
...
simso/schedulers/P_RM.py
View file @
4b710687
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
Partitionned EDF using PartitionedScheduler.
Partitionned EDF using PartitionedScheduler.
"""
"""
from
simso.core.Scheduler
import
SchedulerInfo
from
simso.core.Scheduler
import
SchedulerInfo
from
RM_mono
import
RM_mono
from
simso.schedulers.
RM_mono
import
RM_mono
from
simso.utils
import
PartitionedScheduler
from
simso.utils
import
PartitionedScheduler
...
...
simso/schedulers/RUN.py
View file @
4b710687
...
@@ -8,8 +8,8 @@ tasks with implicit deadlines.
...
@@ -8,8 +8,8 @@ tasks with implicit deadlines.
"""
"""
from
simso.core
import
Scheduler
,
Timer
from
simso.core
import
Scheduler
,
Timer
from
RUNServer
import
EDFServer
,
TaskServer
,
DualServer
,
select_jobs
,
\
from
simso.schedulers.RUNServer
import
EDFServer
,
TaskServer
,
DualServer
,
\
add_job
,
get_child_tasks
select_jobs
,
add_job
,
get_child_tasks
class
RUN
(
Scheduler
):
class
RUN
(
Scheduler
):
...
...
simso/schedulers/WC_RUN.py
View file @
4b710687
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
Work-Conserving version of U-EDF.
Work-Conserving version of U-EDF.
"""
"""
from
RUN
import
RUN
from
simso.schedulers.
RUN
import
RUN
class
WC_RUN
(
RUN
):
class
WC_RUN
(
RUN
):
...
...
simso/schedulers/WC_U_EDF.py
View file @
4b710687
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
Work-Conserving version of U-EDF.
Work-Conserving version of U-EDF.
"""
"""
from
U_EDF
import
U_EDF
from
simso.schedulers.
U_EDF
import
U_EDF
class
WC_U_EDF
(
U_EDF
):
class
WC_U_EDF
(
U_EDF
):
...
...
simso/schedulers/__init__.py
0 → 100644
View file @
4b710687
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