@@ -173,7 +173,6 @@ def iter_jobs(self):
173173
174174 # Iterate through all the cluster sizes
175175 for size in minicluster ["size" ]:
176-
177176 # We can't run if the minicluster > the experiment size
178177 if size > self .size :
179178 logger .warning (
@@ -183,7 +182,6 @@ def iter_jobs(self):
183182
184183 # Jobname is used for output
185184 for jobname , job in self .jobs .items ():
186-
187185 # Do we want to run this job for this size and machine?
188186 if not self .check_job_run (job , size ):
189187 logger .debug (
@@ -199,7 +197,6 @@ def get_persistent_variables(self, size, required=None):
199197 """
200198 jobvars = {}
201199 for _ , job in self .jobs .items ():
202-
203200 # Skip jobs targeted for a different size
204201 if "size" in job and job ["size" ] != size :
205202 continue
@@ -302,7 +299,6 @@ def is_run(self):
302299
303300 # If all job output files exist, experiment is considered run
304301 for size in self .minicluster ["size" ]:
305-
306302 # We can't run if the minicluster > the experiment size
307303 if size > self .size :
308304 logger .warning (
@@ -312,7 +308,6 @@ def is_run(self):
312308
313309 # Jobname is used for output
314310 for jobname , job in self .jobs .items ():
315-
316311 # Do we want to run this job for this size and machine?
317312 if not self .check_job_run (job , size ):
318313 logger .debug (
0 commit comments