aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2014-10-27 11:48:41 -0400
committerGlenn Elliott <gelliott@cs.unc.edu>2014-10-27 11:48:41 -0400
commit6a51c276e844b26098825d70be701f49b7adace7 (patch)
tree635ba3e9bad0cbac50f1a78edd4c8aaee9c9fdd2
parentc1cb9b4de1edc26f2478b250226ce001c2460f36 (diff)
don't run ILP tests on p2p scenarios with no state
-rwxr-xr-xrtss14/rtss14.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtss14/rtss14.py b/rtss14/rtss14.py
index 9734cf8..4d5472e 100755
--- a/rtss14/rtss14.py
+++ b/rtss14/rtss14.py
@@ -623,7 +623,7 @@ def process_dp(_dp):
623 dp.solver = None 623 dp.solver = None
624 thesolver = None 624 thesolver = None
625 # set up the p2p blocking chain solvers 625 # set up the p2p blocking chain solvers
626 if dp.p2p is True and dp.rho != 0: 626 if dp.p2p is True and dp.rho != 0 and dp.state != 's-const-zero':
627 wstcase = 1 if dp.ovh_type == 'max' else 0 627 wstcase = 1 if dp.ovh_type == 'max' else 0
628 thesolver = chains.getBlockingChainSolver(dp.ncopy_engines, 628 thesolver = chains.getBlockingChainSolver(dp.ncopy_engines,
629 gcluster_size, dp.rho, dp.polluters, wstcase, dp.chunk_size, overheads.gpu_xmit) 629 gcluster_size, dp.rho, dp.polluters, wstcase, dp.chunk_size, overheads.gpu_xmit)