Skip to main content

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

Installation

pip install torch-submit

or from source:

pip install -e . --prefix ~/.local

Quick Start

  1. Set up a cluster:

    torch-submit cluster create
    

    Follow the interactive prompts to add your machines.

  2. 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
    
  3. List running jobs:

    torch-submit job list
    
  4. Tail logs:

    torch-submit logs tail <job_id>
    
  5. Stop a job:

    torch-submit job stop <job_id>
    
  6. 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>

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


Download files

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

Source Distribution

torch_submit-0.1.19.tar.gz (25.1 kB view hashes)

Uploaded Source

Built Distribution

torch_submit-0.1.19-py3-none-any.whl (19.9 kB view hashes)

Uploaded Python 3

Supported by

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