idmtools_platform_slurm.utils.slurm_job.slurm_job module#
This is a SlurmPlatform utility.
Copyright 2021, Bill & Melinda Gates Foundation. All rights reserved.
- idmtools_platform_slurm.utils.slurm_job.slurm_job.generate_script(platform: SlurmPlatform, command: str, template: Path | str = 'script_sbatch.sh.jinja2', batch_dir: str = None, **kwargs) None [source]#
Generate batch file sbatch.sh :param platform: Slurm Platform :param command: execution command :param template: template to be used to build batch file :param kwargs: keyword arguments used to expand functionality
- Returns:
None
- idmtools_platform_slurm.utils.slurm_job.slurm_job.check_file_and_job_id(file_path, timeout: int = 3600, interval: int = 10) Tuple[bool, str] [source]#
Wait for a file to be created and check if slurm job id exists in the file.
- Parameters:
- Returns:
- A tuple containing:
bool: True if the file exists and contains a valid job ID, False otherwise.
str: The job ID if found, otherwise an empty string.
- Return type:
- class idmtools_platform_slurm.utils.slurm_job.slurm_job.SlurmJob(script_path: os.PathLike, platform: 'SlurmPlatform' = None, executable: str = 'python3', script_params: List[str] = None, cleanup: bool = True)[source]#
Bases:
object
- platform: SlurmPlatform = None#