aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2014-05-09 17:09:59 -0400
committerGlenn Elliott <gelliott@cs.unc.edu>2014-05-09 17:09:59 -0400
commit37aee3ded37a5c9afe5c96d53f6d6acae3223be7 (patch)
treeb5c36c8a69f21dd6a1cdf57ec022763f00a70ca8
parent8303cde9b5b760686d8a2c949293a56366ee04f8 (diff)
add trivial token lock to exp params
-rwxr-xr-xrtss14/rtss14.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/rtss14/rtss14.py b/rtss14/rtss14.py
index 535e407..fc63125 100755
--- a/rtss14/rtss14.py
+++ b/rtss14/rtss14.py
@@ -628,6 +628,7 @@ def process_dp(_dp):
628 while not complete(avg_sched, samples): 628 while not complete(avg_sched, samples):
629 629
630 ts = create_gpu_task_set(dp, overheads) 630 ts = create_gpu_task_set(dp, overheads)
631
631 # vvvvvvvvvvvvvvvv CHECK SCHEDULABILITY vvvvvvvvvvvvvvvv 632 # vvvvvvvvvvvvvvvv CHECK SCHEDULABILITY vvvvvvvvvvvvvvvv
632 is_sched, processed_ts = is_schedulable(ts, dp, overheads) 633 is_sched, processed_ts = is_schedulable(ts, dp, overheads)
633 # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 634 # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -739,7 +740,7 @@ def TEST_get_dp_space(cpus):
739 exp.polluters = [True] 740 exp.polluters = [True]
740 741
741 # gpusync config variables 742 # gpusync config variables
742 exp.rho = [2] 743 exp.rho = [0,1]
743 exp.dgl = [True,False] 744 exp.dgl = [True,False]
744 exp.p2p = [True,False] 745 exp.p2p = [True,False]
745# exp.ncopy_engines = [1, 2] 746# exp.ncopy_engines = [1, 2]
@@ -780,7 +781,7 @@ def get_dp_space(cpus):
780# exp.ovh_type = ['mean'] 781# exp.ovh_type = ['mean']
781 782
782 # gpusync config variables 783 # gpusync config variables
783 exp.rho = [1, 2, 3] 784 exp.rho = [0, 1, 2, 3]
784# exp.rho = [1, 3] 785# exp.rho = [1, 3]
785 exp.dgl = [True, False] 786 exp.dgl = [True, False]
786 exp.p2p = [True, False] 787 exp.p2p = [True, False]