Represents a batch processing system that requires submission like Slurm or Auger. More...
Public Member Functions | |
__init__ (self) | |
parse_args (self, args) | |
Parse command line arguments and perform setup. | |
![]() | |
submit_job (self, job_id) | |
Submit a single batch job and return the batch ID. | |
submit (self) | |
This is the generic batch submission function which gets a list of jobs to run based on command line arguments and submits them individually. | |
default_rundir (self, job_id=None) | |
build_cmd (self, job_id) | |
This is the basic implementation of building a command to run the job from a batch system. | |
Public Attributes | |
site | |
queue | |
os | |
memory | |
diskspace | |
job_length | |
![]() | |
parser | |
script_name | |
script | |
jobstore | |
debug | |
log_dir | |
run_dir | |
check_output | |
job_ids | |
job_steps | |
start_job_num | |
end_job_num | |
config_files | |
Static Protected Member Functions | |
_site () | |
![]() | |
_outputs_exist (job) | |
Check if all output files exist for the given job. | |
Additional Inherited Members | |
![]() | |
_logfile (self, job_id) | |
Get the base name of a log file for the job. | |
_get_filtered_job_ids (self) | |
Get a list of job IDs to submit based on parsed command line options and whether output files are being checked. | |
_job_ids_missing_output (self, job_ids) | |
Get a list of IDs for jobs that are missing output files. | |
Represents a batch processing system that requires submission like Slurm or Auger.
This subclasses Batch because it adds a number of different parameters which do not apply to all the batch system types (namely Pool and Local).
__init__ | ( | self | ) |
parse_args | ( | self, | |
args | |||
) |