Spaces:
Running
Running
| # Pipeline Parallelism Emulation | |
| This project provides tools for emulating and visualizing pipeline parallelism strategies used in large language model training. | |
| ## Overview | |
| Pipeline parallelism is a technique used to train large models by partitioning the model across multiple devices and processing data in a pipelined fashion. This project allows you to: | |
| - Simulate different pipeline parallelism strategies (1F1B, Interleaved) | |
| - Visualize the execution schedule on multiple devices | |
| - Compare different strategies for efficiency | |
| ## Features | |
| - Supported Pipeline Stragegies: | |
| - 1F1B | |
| - Interleaved 1F1B | |
| - Visualization: | |
| - Interactive visualization dashboard using Plotly/Dash | |
| - Config: | |
| - Configurable simulation parameters through Hydra | |
| - Each stage | |
| ## Installation | |
| This project uses [uv](https://github.com/astral-sh/uv) for dependency management. | |
| Setup `uv` if not installed in your computer: | |
| ``` | |
| # On macOS and Linux. | |
| curl -LsSf https://astral.sh/uv/install.sh | sh | |
| ``` | |
| ## Usage | |
| Running for 1F1B strategy: | |
| ```bash | |
| uv run python main.py strategy=1f1b num_devices=4 num_stages=4 num_batches=8 | |
| ``` | |
| ```bash | |
| uv run python main.py strategy=interleave num_devices=4 num_stages=8 num_batches=8 | |
| ``` | |
| ## Configuration | |
| The default configuration is in `conf/config.yaml`. You can override any parameter on the command line or create configuration groups for different scenarios. | |
| ### Using Different Configuration Files | |
| You can use different configuration files with Hydra in several ways: | |
| #### Recommended Approach | |
| 1. Create multiple configuration files in the `conf` directory for different use cases: | |
| ``` | |
| conf/ | |
| βββ config.yaml # Default configuration | |
| βββ model_A.yaml # Create your own config with stage-specific latency for performance projection. | |
| ``` | |
| 2. Run with your desired configuration using the `--config-name` flag: | |
| ```bash | |
| uv run python main.py --config-name=model_A | |
| ``` | |
| #### Override Specific Parameters | |
| You can also override specific parameters at runtime: | |
| ```bash | |
| uv run python main.py op_times.forward=0.5 op_times.backward=1.0 num_batches=6 | |
| ``` | |
| ## Project Structure | |
| ``` | |
| PP-Emulation/ | |
| βββ conf/ # Hydra configuration files | |
| β βββ config.yaml # Default configuration | |
| βββ src/ # Source code | |
| β βββ __init__.py # Package initialization | |
| β βββ execution_model.py # Schedule execution models | |
| β βββ strategies.py # Pipeline parallelism strategies | |
| β βββ visualizer.py # Visualization utilities | |
| βββ main.py # Main entry point | |
| βββ pyproject.toml # Project metadata and dependencies | |
| βββ README.md # This file | |
| ``` | |
| ## License | |
| This project is licensed under the MIT License - see the LICENSE file for details. | |
| ## Contributing | |
| Contributions are welcome! Please feel free to submit a Pull Request. |