diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2014-01-29 18:20:11 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2014-01-29 18:20:11 -0500 |
commit | 207ed60eb4dfc8e0a050cc39a7f88d6a945ceb9c (patch) | |
tree | fab94d4d3a0005a49a953b905903cac1837bdc5a | |
parent | 3e0f445a7643fcdd339069a08a4aa001ca061ee1 (diff) |
Allow generated global-scheduled TS to be unsched.
-rw-r--r-- | gen/edf_generators.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gen/edf_generators.py b/gen/edf_generators.py index 5b7cd48..eda23e4 100644 --- a/gen/edf_generators.py +++ b/gen/edf_generators.py | |||
@@ -266,5 +266,7 @@ class CflSplitPgmGenerator(EdfPgmGenerator): | |||
266 | 266 | ||
267 | # the test will compute job splits if it is in the desgin point. | 267 | # the test will compute job splits if it is in the desgin point. |
268 | is_sched, ts = PARTITION_METHOD[exp_params['partitions']](ts, graphs, subts, dp, overheads) | 268 | is_sched, ts = PARTITION_METHOD[exp_params['partitions']](ts, graphs, subts, dp, overheads) |
269 | 269 | if exp_params['level'] == 'ALL': | |
270 | # kludge: assume global task sets are always schedulable | ||
271 | is_sched = True | ||
270 | return is_sched, ts | 272 | return is_sched, ts |