Skip to main content

Generic SLURM dispatch (srun, sbatch, sync, poll, fetch) for the SciTeX ecosystem — login nodes never run compute

Project description

scitex-hpc

SciTeX

Generic SLURM dispatch — `srun` / `sbatch` / reservations / sync / poll / fetch — for any HPC cluster.

Full Documentation · uv pip install scitex-hpc[all]

PyPI Python Tests Coverage Docs License: AGPL v3


Problem and Solution

# Problem Solution
1 Login nodes silently run compute — sysadmins kill stray processes, jobs die unannounced Every command wrapped in srun / sbatch via login-shell SSH so SLURM modules load correctly
2 Queue wait dominates iteration for short multi-agent / dev workflows Reservation.book(..., persistent=True) — book a node once, exec() many short commands inside the same allocation; SIGUSR1 trap auto-resubmits at walltime
3 Per-cluster knob soup (partition, cpus, time, mem) repeated in every job script SCITEX_HPC_* env overrides + JobConfig defaults for spartan/sapphire — script once, deploy anywhere

Installation

pip install scitex-hpc

Demo

# Submit + watch a SLURM job (via the local scheduler config)
scitex-hpc submit-sbatch examples/00_minimal.sbatch
scitex-hpc poll-job <jobid>
scitex-hpc fetch-result <jobid> --out ./results/

# Or interactive: book a chunk, attach, work
scitex-hpc dispatch-srun --time 1:00:00 --gpus 1
graph LR
    Local["Local laptop\n(scitex-hpc CLI / Python API)"] -->|submit-sbatch| Login["HPC login node"]
    Local -->|dispatch-srun| Login
    Login -->|salloc/sbatch| Compute["Compute / GPU nodes"]
    Compute -->|stdout/err + artefacts| Sync["sync-project rsync"]
    Sync --> Local

Architecture

scitex-hpc is a thin client over the SLURM CLI (squeue, sbatch, srun, salloc). Site-specific config lives in ~/.scitex/hpc/config.yaml; nothing else is host-aware. The package is fleet-agnostic: it does not know about scitex-orochi or any specific HPC site beyond its config.

scitex_hpc/
├── _cli/                       ← `scitex-hpc` Click commands
│   ├── submit_sbatch.py        ← submit-sbatch verb
│   ├── dispatch_srun.py        ← dispatch-srun verb
│   ├── poll_job.py             ← poll-job verb
│   ├── fetch_result.py         ← fetch-result verb
│   └── sync_project.py         ← sync-project verb
├── _slurm/                     ← thin wrappers over squeue / sbatch / srun / salloc
├── _state/                     ← job-state cache (`~/.scitex/hpc/runtime/`)
└── config/                     ← YAML schema for site config

~/.scitex/hpc/                  ← user state (gitignored, host-specific)
├── config.yaml                 ← partitions, walltimes, module loads, GPU types
└── runtime/                    ← per-job caches, result-rsync metadata

1 Interfaces

Python API ⭐⭐⭐ (primary)
from scitex_hpc import JobConfig, srun, sbatch, sync, poll_job, fetch_result

cfg = JobConfig(
    project="scitex-dsp",
    command="pip install -e '.[dev]' -q && python -m pytest tests/ -n 16",
    host="spartan", partition="sapphire",
    cpus=16, time="00:30:00", mem="64G",
)

sync(cfg)                           # 1. push local sources to the cluster
exit_code = srun(cfg)               # 2a. blocking interactive run
job_id = sbatch(cfg)                # 2b. async batch submission
print(poll_job(cfg, job_id))        # {'state': 'COMPLETED', 'exit_code': '0:0', ...}
fetch_result(cfg, job_id)           # downloads the .out file

Reservations (book once, exec many)

from scitex_hpc import JobConfig, Reservation

res = Reservation.book(
    JobConfig(project="dev-pool", host="spartan", partition="cascade",
              cpus=8, mem="32G", time="7-0"),
    persistent=True,                # walltime auto-resubmit via SIGUSR1
)

res.exec("hostname")
res.exec(["python", "-m", "unittest", "discover"])
res.attach(cmd="bash")              # interactive shell on the compute node

# Look up later by friendly name (state in ~/.scitex/hpc/leases/)
res = Reservation.get("dev-pool")
res.release()                       # scancel + clear state
CLI ⭐⭐
scitex-hpc reservations book dev-pool --host spartan --cpus 8 --mem 32G --time 7-0 --persistent
scitex-hpc reservations list
scitex-hpc reservations exec dev-pool 'hostname'
scitex-hpc reservations attach dev-pool
scitex-hpc reservations cancel dev-pool

Defaults & overrides

Every JobConfig field has a SCITEX_HPC_* env-var override:

Field Default Env override
host spartan SCITEX_HPC_HOST
partition sapphire SCITEX_HPC_PARTITION
cpus 16 SCITEX_HPC_CPUS
time 00:20:00 SCITEX_HPC_TIME
mem 128G SCITEX_HPC_MEM
remote_base ~/proj SCITEX_HPC_REMOTE_BASE

Resolution priority: explicit JobConfig field → env var → built-in default.

Walltime auto-resubmit (persistent=True)

When persistent=True, scitex-hpc:

  1. Adds #SBATCH --signal=B:USR1@3600 so SLURM signals the script 1 h before walltime.
  2. Wraps the sbatch body with a SIGUSR1 trap that calls sbatch "$0" to resubmit itself.
  3. The friendly name (dev-pool) stays stable across resubmits; the SLURM job_id changes.
res = Reservation.get("dev-pool")
res.refresh()                       # squeue --user --name=dev-pool
res.exec("...")                     # uses the new job_id

SLURM's documented signaling mechanism — no custom daemon. Compatible with HPC policies that ban persistent user-space daemons. SSH ControlMaster pooling on the calling host amortizes per-exec() handshake cost.

Part of SciTeX

scitex-hpc is part of SciTeX. Install via the umbrella with pip install scitex[hpc] to use as scitex.hpc (Python) or scitex hpc ... (CLI).

Four Freedoms for Research

  1. The freedom to run your research anywhere — your machine, your terms.
  2. The freedom to study how every step works — from raw data to final manuscript.
  3. The freedom to redistribute your workflows, not just your papers.
  4. The freedom to modify any module and share improvements with the community.

AGPL-3.0 — because we believe research infrastructure deserves the same freedoms as the software it runs on.


SciTeX

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

scitex_hpc-0.8.0.tar.gz (51.8 kB view details)

Uploaded Source

Built Distribution

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

scitex_hpc-0.8.0-py3-none-any.whl (59.0 kB view details)

Uploaded Python 3

File details

Details for the file scitex_hpc-0.8.0.tar.gz.

File metadata

  • Download URL: scitex_hpc-0.8.0.tar.gz
  • Upload date:
  • Size: 51.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for scitex_hpc-0.8.0.tar.gz
Algorithm Hash digest
SHA256 316a01865a1fbd8f36526d1369aca04597e7110f0e0ca56ec06c8820abb286f9
MD5 e68220e585a8dfc46d7dd14aa19f725f
BLAKE2b-256 87f7a78a28239146fa2fb06dd1e3d204b864d7d0e3c06bb448529aa5e33fad14

See more details on using hashes here.

Provenance

The following attestation bundles were made for scitex_hpc-0.8.0.tar.gz:

Publisher: publish-pypi.yml on ywatanabe1989/scitex-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scitex_hpc-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: scitex_hpc-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 59.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for scitex_hpc-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b8bfcd473820a442b4eef93b687ae662311703501da0a532490b9492554f80a7
MD5 36d8a4252ccaad8bb72a7024d33c42ae
BLAKE2b-256 b563dd8c364c2457c74ea6933319550468f83c8a11abbaa1c2945bf35da0680b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scitex_hpc-0.8.0-py3-none-any.whl:

Publisher: publish-pypi.yml on ywatanabe1989/scitex-hpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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