EZLaunch: Tools to run slurm jobs with launcher
Project description
launch
Programs for managing job submission through slurm.
These scripts can be used to submit jobs for a cluster running the
slurm scheduler. Some scripts are designed with neuroimaging data in
mind, for example running a single command to process data from multiple
participants in an experiment can be done using slaunch
.
Installation
To install the most recent release from PyPI, run:
pip install ezlaunch
To install the latest version on GitHub, run:
pip install git+https://github.com/prestonlab/launch
Verify installation by running launch -h
.
Configuration
The launch programs can use information about cluster configuration to fill in blanks (e.g., the number of cores available on each node) and to make sure you're not going over limits of the queue you're submitting to (e.g., a maximum number of nodes).
The configuration is specified using TOML files, which have a simple format.
Global settings should go under a [global]
heading, while partition-specific
settings should go under a heading with the name of that partition.
For example (here, "normal" and "development" are two partitions):
[global]
account = "myAccountName"
[normal]
cores = 56
max-nodes = 1280
[development]
cores = 56
max-nodes = 40
This sets the default account to use when submitting jobs. It also sets the number of
cores and the maximum number of nodes per job for the
normal and development partitions. You may also set a max-cores
option to
restrict the number of total cores used by a job.
The launch programs will look for a configuration file at $HOME/.launch.toml
.
If you set the LAUNCH_CONFIG
environment variable, launch will look there
instead.
EZ Launch
In contrast to launch, which is relatively low level, ezlaunch manages command, batch script, and output files automatically. To use ezlaunch, set the BATCHDIR environment variable to indicate the directory in which job commands, slurm options, and output should be saved.
For example, you could submit a job to a slurm cluster using something like:
ezlaunch -J myjob 'echo "hello world"' -N 1 -n 1 -r 00:10:00 -p normal
After the job runs, you would have the following files:
$BATCHDIR/myjob1.sh # job commands
$BATCHDIR/myjob1.slurm # slurm options (run time, number of nodes, etc.)
$BATCHDIR/myjob1.out # output from all commands
If you run another job named "myjob", that will be saved under "myjob2.sh", etc.
Running a command for multiple subjects
The scripts slaunch and rlaunch run a given command on combinations of subjects and runs. These scripts can optionally use the SUBJIDFORMAT environment variable. This allows automatic conversion between subject numbers (e.g., 5) and subject IDs (e.g., sub-05). For that example, you would set:
export SUBJIDFORMAT='sub-%02d'
Then subject number lists can be converted, for example subjids 1:2:3
will produce sub-01:sub-02:sub-03
.
Authors
- Neal Morton
- Russ Poldrack - wrote original launch script
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ezlaunch-1.2.4.tar.gz
.
File metadata
- Download URL: ezlaunch-1.2.4.tar.gz
- Upload date:
- Size: 25.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73b5b75871a586432fa11d2c2af168988d03075a9e51ef2ac506a0640e5fc6b1 |
|
MD5 | 2e83c46c9f27da955b09e0f143b1e000 |
|
BLAKE2b-256 | 7bbf20e88e1c71e38b13c97803a033186af24780bc44b6eb0ea3f83e315e9e9d |
File details
Details for the file ezlaunch-1.2.4-py3-none-any.whl
.
File metadata
- Download URL: ezlaunch-1.2.4-py3-none-any.whl
- Upload date:
- Size: 29.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d5352786eba7dad98ea0fbdc8f86d08f84626182f24e36b1cd99d795c226bc4 |
|
MD5 | 08fbfe45bcf333ca72a8b56c27ed3355 |
|
BLAKE2b-256 | 2b47cb71f11aebe3f31daa1101d95970fb96c16e665a6c2af280f02302c17ad0 |