File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- """Parallel workflow execution via SGE
1+ """Parallel workflow execution via SLURM
22"""
33
44import os
@@ -29,7 +29,7 @@ def node_completed_status( checknode):
2929
3030
3131class SLURMGraphPlugin (GraphPluginBase ):
32- """Execute using SGE
32+ """Execute using SLURM
3333
3434 The plugin_args input to run can be used to control the SGE execution.
3535 Currently supported options are:
@@ -60,14 +60,14 @@ def __init__(self, **kwargs):
6060 self ._dont_resubmit_completed_jobs = plugin_args ['dont_resubmit_completed_jobs' ]
6161 else :
6262 self ._dont_resubmit_completed_jobs = False
63- super (SGEGraphPlugin , self ).__init__ (** kwargs )
63+ super (SLURMGraphPlugin , self ).__init__ (** kwargs )
6464
6565 def _submit_graph (self , pyfiles , dependencies , nodes ):
6666 def make_job_name (jobnumber , nodeslist ):
6767 """
6868 - jobnumber: The index number of the job to create
6969 - nodeslist: The name of the node being processed
70- - return: A string representing this job to be displayed by SGE
70+ - return: A string representing this job to be displayed by SLURM
7171 """
7272 job_name = 'j{0}_{1}' .format (jobnumber , nodeslist [jobnumber ]._id )
7373 # Condition job_name to be a valid bash identifier (i.e. - is invalid)
You can’t perform that action at this time.
0 commit comments