aboutsummaryrefslogtreecommitdiffstats
path: root/gen/edf_generators.py
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2014-01-22 16:00:36 -0500
committerGlenn Elliott <gelliott@cs.unc.edu>2014-01-22 16:00:36 -0500
commit8f00a88beeead3e39a07c0cc4fae8c26496196fd (patch)
tree50fc00066abc127d8caab01a0bd586a0009df89a /gen/edf_generators.py
parentd4b955262433d927e966e49d59179808e5d5239f (diff)
Convert boolean strings to actual bools in dp
Diffstat (limited to 'gen/edf_generators.py')
-rw-r--r--gen/edf_generators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gen/edf_generators.py b/gen/edf_generators.py
index bd32f47..1dbda11 100644
--- a/gen/edf_generators.py
+++ b/gen/edf_generators.py
@@ -271,7 +271,7 @@ class CflSplitPgmGenerator(EdfPgmGenerator):
271 # compute split factor 271 # compute split factor
272 working_ts = ts 272 working_ts = ts
273 partitions = get_partitions(working_ts, dp.nr_clusters, cluster_sz) 273 partitions = get_partitions(working_ts, dp.nr_clusters, cluster_sz)
274 do_splits = dp.job_splitting == 'True' 274 do_splits = dp.job_splitting
275 is_srt_sched = split.compute_splits_nolock(overheads, False, working_ts, partitions, bypass_split = not do_splits) 275 is_srt_sched = split.compute_splits_nolock(overheads, False, working_ts, partitions, bypass_split = not do_splits)
276 276
277 return True, working_ts 277 return True, working_ts