matflow.SlurmPosix#
- class matflow.SlurmPosix(*args, **kwargs)#
Bases:
SlurmPosix
A scheduler that uses SLURM.
- Keyword Arguments:
Notes
runs in current working directory by default [2]
References
[1] https://manpages.org/sbatch [2] https://ri.itservices.manchester.ac.uk/csf4/batch/sge-to-slurm/
Methods
Cancel submitted jobs.
Format the options to the scheduler.
Format a particular switch to use the JS command.
Query the scheduler to get the states of all of this user's jobs, optionally filtering by specified job IDs.
Get the command to use to submit a job to the scheduler.
Get the version of the scheduler.
Query if a jobscript is running/pending.
Test whether particular number of cores is supported in given range of cores.
Extract scheduler reference for a newly submitted jobscript
Perform scheduler-specific processing to the element resources.
Wait for jobscripts to update their state.
Attributes
Default shell variable with array ID.
Default prefix to enable array processing.
Default cancel command.
Default job control directive prefix.
Default command for logging into nodes.
Default pattern for matching the names of login nodes.
Default args for shebang line.
Default value for arguments to the shell.
Default shell.
Default command to show the queue state.
Default submission command.
Maps scheduler state codes to
JobscriptElementState
values.Unique properties, for hashing.
- DEFAULT_ARRAY_ITEM_VAR = 'SLURM_ARRAY_TASK_ID'#
Default shell variable with array ID.
- DEFAULT_ARRAY_SWITCH = '--array'#
Default prefix to enable array processing.
- DEFAULT_DEL_CMD = 'scancel'#
Default cancel command.
- DEFAULT_JS_CMD = '#SBATCH'#
Default job control directive prefix.
- DEFAULT_LOGIN_NODES_CMD = None#
Default command for logging into nodes.
- DEFAULT_LOGIN_NODE_MATCH = '*login*'#
Default pattern for matching the names of login nodes.
- DEFAULT_SHEBANG_ARGS = ''#
Default args for shebang line.
- DEFAULT_SHELL_ARGS = ''#
Default value for arguments to the shell.
- DEFAULT_SHELL_EXECUTABLE = '/bin/bash'#
Default shell.
- DEFAULT_SHOW_CMD = ['squeue', '--me']#
Default command to show the queue state.
- DEFAULT_SUBMIT_CMD = 'sbatch'#
Default submission command.
- app = App(name='MatFlow', version='0.3.0a131')#
- cancel_jobs(js_refs, jobscripts=None)#
Cancel submitted jobs.
- format_options(resources, num_elements, is_array, sub_idx)#
Format the options to the scheduler.
- format_switch(switch)#
Format a particular switch to use the JS command.
- get_job_state_info(js_refs=None)#
Query the scheduler to get the states of all of this user’s jobs, optionally filtering by specified job IDs.
Jobs that are not in the scheduler’s status output will not appear in the output of this method.
- get_submit_command(shell, js_path, deps)#
Get the command to use to submit a job to the scheduler.
- get_version_info()#
Get the version of the scheduler.
- static is_num_cores_supported(num_cores, core_range)#
Test whether particular number of cores is supported in given range of cores.
- parse_submission_output(stdout)#
Extract scheduler reference for a newly submitted jobscript
- classmethod process_resources(resources, scheduler_config)#
Perform scheduler-specific processing to the element resources.
Note: this mutates resources.
- Parameters:
scheduler_config (Dict) –
- Return type:
None
- state_lookup = {'CANCELLED': JobscriptElementState.cancelled, 'COMPLETED': JobscriptElementState.finished, 'COMPLETING': JobscriptElementState.running, 'FAILED': JobscriptElementState.errored, 'OUT_OF_MEMORY': JobscriptElementState.errored, 'PENDING': JobscriptElementState.pending, 'RUNNING': JobscriptElementState.running, 'TIMEOUT': JobscriptElementState.errored}#
Maps scheduler state codes to
JobscriptElementState
values.
- property unique_properties#
Unique properties, for hashing.