A tool for submitting and managing distributed PyTorch jobs
Project description
Torch Submit
Introduction
Torch Submit is a lightweight, easy-to-use tool for running distributed PyTorch jobs across multiple machines. It's designed for researchers and developers who:
- Have access to a bunch of machines with IP addresses
- Want to run distributed PyTorch jobs without the hassle
- Don't have the time, energy, or patience to set up complex cluster management systems like SLURM or Kubernetes
Under the hood, Torch Submit uses Fabric to copy your working directory to the remote addresses and TorchRun to execute the command.
It's encouraged to read torch_submit/executor.py
to understand how jobs are created and scheduled.
Features
- Simple cluster configuration: Just add your machines' IP addresses
- Easy job submission: Run your PyTorch jobs with a single command
- Job management: Submit, stop, restart, and monitor your jobs
- Log tailing: Easily view the logs of your running jobs
- Optuna Integration for parallel hyperparameter optimization
Installation
pip install torch-submit
or from source:
pip install -e . --prefix ~/.local
Quick Start
-
Set up a cluster:
torch-submit cluster create
Follow the interactive prompts to add your machines.
-
Submit a job:
torch-submit job submit --cluster my_cluster -- <entrypoint> # for example: # torch-submit job submit --cluster my_cluster -- python train.py # torch-submit job submit --cluster my_cluster -- python -m main.train
-
List running jobs:
torch-submit job list
-
Tail logs:
torch-submit logs tail <job_id>
-
Stop a job:
torch-submit job stop <job_id>
-
Restart a stopped job:
torch-submit job restart <job_id>
Usage
Cluster Management
- Create a cluster:
torch-submit cluster create
- List clusters:
torch-submit cluster list
- Remove a cluster:
torch-submit cluster remove <cluster_name>
Job Management
- Submit a job:
torch-submit job submit --cluster my_cluster -- <entrypoint>
- List jobs:
torch-submit job list
- Stop a job:
torch-submit job stop <job_id>
- Restart a job:
torch-submit job restart <job_id>
Log Management
- Tail logs:
torch-submit job logs <job_id>
Optuna
The Optuna exectuor requires setting a database connection. This can be done via torch-submit db create
. This will create a new database within the specified connection called torch_submit
. This database should be accessible to all machines in a cluster. Study name and storage info will be accessible to to the job via "OPTUNA_STUDY_NAME" and "OPTUNA_STORAGE" environment variables.
Configuration
Torch Submit stores cluster configurations in ~/.cache/torch-submit/config.yaml
. You can manually edit this file if needed, but it's recommended to use the CLI commands for cluster management.
Requirements
- Python 3.7+
- PyTorch (for your actual jobs)
- SSH access to all machines in your cluster
Contributing
We welcome contributions! Please see our Contributing Guide for more details.
License
Torch Submit is released under the MIT License. See the LICENSE file for more details.
Support
If you encounter any issues or have questions, please file an issue on our GitHub Issues page.
Happy distributed training!
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 torch_submit-0.1.23.tar.gz
.
File metadata
- Download URL: torch_submit-0.1.23.tar.gz
- Upload date:
- Size: 34.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73924bfa14e51fe445303f547e28d526e00571f8ff8b8c4baf56ec1cab4a71f3 |
|
MD5 | e1179bbca6c75915ea75450d5534d817 |
|
BLAKE2b-256 | b8d93f0c96b76b3cca9a87e8863c84025ed694c24cf3b30334714a34f43c67c8 |
File details
Details for the file torch_submit-0.1.23-py3-none-any.whl
.
File metadata
- Download URL: torch_submit-0.1.23-py3-none-any.whl
- Upload date:
- Size: 25.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c414c2e131c5b931233c9382595444c375d33f4eaf2130318d9630471f0be857 |
|
MD5 | 9a8cf7a2484ab9aa1f1d219ad1bd45b1 |
|
BLAKE2b-256 | d52b140dc48d729b9a3a3a126cf3c63b7242c89914552fb184d6482cbadffeaa |