qq_lib.batch
Batch-system support for qq.
This module groups all components that allow qq to interact with HPC batch schedulers. It defines the abstract interfaces for jobs, queues, and nodes, together with the concrete backends for PBS, Slurm, and site-specific Slurm variants.
1# Released under MIT License. 2# Copyright (c) 2025-2026 Ladislav Bartos and Robert Vacha Lab 3 4""" 5Batch-system support for qq. 6 7This module groups all components that allow qq to interact with HPC batch 8schedulers. It defines the abstract interfaces for jobs, queues, and nodes, 9together with the concrete backends for PBS, Slurm, and site-specific Slurm 10variants. 11""" 12 13# import so that these batch systems are available but do not export them from here 14from .pbs import PBS as _PBS 15from .slurm import Slurm as _Slurm 16from .slurmit4i import SlurmIT4I as _SlurmIT4I 17from .slurmlumi import SlurmLumi as _SlurmLumi 18 19_PBS, _Slurm, _SlurmIT4I, _SlurmLumi