Skip to main content

No project description provided

Project description

oh-my-batch

PyPI version PyPI - Downloads PyPI - Python Version

A command line toolkit to simplify batch tasks generation and execution.

Features

  • omb combo: generate folders/files from different combinations of parameters
  • omb batch: generate batch scripts from multiple working directories
  • omb job: track the state of job in job scheduler
  • omb misc: miscellaneous commands

Install

pip install oh-my-batch

Usage

oh-my-batch provides a command line interface omb with multiple sub-commands. You can read the help message of each sub-command to learn how to use it.

For example,

omb  # see the help message of `omb` command
omb combo # see the help message of `combo` sub-command
omb combo set_broadcast --help # see the help message of `set_broadcast` command in combo
omb batch # see the help message of `batch` sub-command
omb batch add_work_dirs --help # see the help message of `add_work_dirs` command in batch
omb job # see the help message of `job` sub-command
omb job slurm submit --help # see the help message of slurm `submit` command

Chaining function calls

oh-my-batch makes use of fire's chaining function call to provide a flexible command line interface. You can see it as builder pattern for command line tools.

For command that supports chaining function calls, you can chain multiple commands with - to build your desired command. You will find many examples in Examples section below.

Thinking in oh-my-batch

English | 中文

Note that the document is not yet complete.

Examples

  • TESLA workflow: A customizable active learning workflow for training machine learning potentials.
  • TESLA PIMD workflow: A customizable active learning workflow for training machine learning potentials with path integral molecular dynamics.
  • LAMMPS benchmark: Find out the best MPI and OpenMP setup for LAMMPS through benchmarking.

Use cases

Generate files from different combinations of parameters

It's common to generate files with different combinations of parameters in scientific computing. For example, you have 3 LAMMPS data files in tmp directory: tmp/1.data, tmp/2.data, tmp/3.data. And you want to generate a series of input files with different parameters, for example, different temperatures 300K, 400K, 500K, against each data file.

In this case, you can use omb combo command to generate a series of input files for you.

# prepare fake data files
mkdir -p tmp/
touch tmp/1.data tmp/2.data tmp/3.data

# prepare a lammps input file template
cat > tmp/in.lmp.tmp <<EOF
read_data @DATA_FILE
velocity all create @TEMP @RANDOM
run 1000
EOF

# prepare a run script template
cat > tmp/run.sh.tmp <<EOF
cat in.lmp  # simulate running lammps
EOF

# generate input files
omb combo \
    add_files DATA_FILE tmp/*.data - \
    add_var TEMP 300 400 500 - \
    add_randint RANDOM -n 3 -a 1 -b 1000 - \
    set_broadcast RANDOM - \
    make_files tmp/tasks/{i}-T-{TEMP}/in.lmp --template tmp/in.lmp.tmp - \
    make_files tmp/tasks/{i}-T-{TEMP}/run.sh --template tmp/run.sh.tmp --mode 755 - \
    done

The above script will generate 9 folders in tmp/tasks directory with names from 0-T-300, 1-T-400, 2-T-500, 3-T-300 to 8-T-500. Each folder will contain a in.lmp file and a run.sh file.

The 9 folders are the combinations of 3 data files and 3 temperatures, and each input file will have a independent random number between 1 and 1000 as RANDOM.

You can run the about script by ./examples/omb-combo.sh, and you can also run omb combo --help to see the detailed usage of combo command.

Generate batch scripts from multiple working directories

It's common to submit a lot of jobs to a job scheduler. omb batch is designed to help you generate batch scripts from multiple working directories and package them into several batch scripts.

Let's continue the above example, now you have 9 folders in tmp/tasks directory. You want to package them into 2 batch scripts to submit to a job scheduler.

You can use omb batch to generate batch scripts for you like this:

cat > tmp/lammps_header.sh <<EOF
#!/bin/bash
#SBATCH -J lmp
#SBATCH -n 1
#SBATCH -t 1:00:00
EOF

omb batch \
    add_work_dirs tmp/tasks/* - \
    add_header_files tmp/lammps_header.sh - \
    add_cmds "./run.sh" - \
    make tmp/lmp-{i}.slurm --concurrency 2

You will find batch scripts tmp/lmp-0.slurm and tmp/lmp-1.slurm in tmp directory.

You can run the above script by ./examples/omb-batch.sh,

Track the state of job in job schedular

Let's continue the above example, now you have submitted the batch scripts to the job scheduler. In this case, you can use omb job to track the state of the jobs.

omb job slurm submit tmp/*.slurm --max_tries 3 --wait --recovery lammps-jobs.json

The above command will submit the batch scripts to the job scheduler, and wait for the jobs to finish. If the job fails, it will retry for at most 3 times.

The --recovery option will save the job information to lammps-jobs.json file. If omb job is interrupted, you can rerun the exact same command to recover the job status, so that you don't need to resubmit the jobs that are still running or completed.

Shell tips

oh-my-batch is intended to help you implement computational workflows with shell scripts. To make the best use of oh-my-batch, you need to know some shell tips.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

oh_my_batch-0.7.3.tar.gz (27.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

oh_my_batch-0.7.3-py3-none-any.whl (28.8 kB view details)

Uploaded Python 3

File details

Details for the file oh_my_batch-0.7.3.tar.gz.

File metadata

  • Download URL: oh_my_batch-0.7.3.tar.gz
  • Upload date:
  • Size: 27.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.9.12 Linux/6.6.87.2-microsoft-standard-WSL2

File hashes

Hashes for oh_my_batch-0.7.3.tar.gz
Algorithm Hash digest
SHA256 70d102dc2e3e5ca3f0a1101aff0f7732f43ab64909386ee5de65bfda521bc891
MD5 4d2242d24c30d5d0b5d0ff7a520a1c63
BLAKE2b-256 a9c3deab5d5d52a9bbf99d7e5a36effd483bc7df9d0604cb304b0842b95b24aa

See more details on using hashes here.

File details

Details for the file oh_my_batch-0.7.3-py3-none-any.whl.

File metadata

  • Download URL: oh_my_batch-0.7.3-py3-none-any.whl
  • Upload date:
  • Size: 28.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.9.12 Linux/6.6.87.2-microsoft-standard-WSL2

File hashes

Hashes for oh_my_batch-0.7.3-py3-none-any.whl
Algorithm Hash digest
SHA256 b81a2000cd62fcd86ad041182df41a1e29dc09c8db61e7ae93a437500771f0d8
MD5 7fc2672fe362da351ca2e250ed65fbd1
BLAKE2b-256 48d54291bd323491559e37e55d204ff0816001e74d39ff45bd9f976007320b43

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page