Making large AI models cheaper, faster and more accessible
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Hongxin Liu 7f8b16635b
[misc] refactor launch API and tensor constructor (#5666)
7 months ago
..
README.md fix some typo (#5307) 10 months ago
auto_ckpt_batchsize_test.py [misc] refactor launch API and tensor constructor (#5666) 7 months ago
auto_ckpt_solver_test.py [misc] refactor launch API and tensor constructor (#5666) 7 months ago
auto_parallel_with_resnet.py [hotfix] quick fixes to make legacy tutorials runnable (#5559) 8 months ago
bench_utils.py [misc] update pre-commit and run all files (#4752) 1 year ago
config.py [example] integrate autoparallel demo with CI (#2466) 2 years ago
requirements.txt [examples] polish AutoParallel readme (#3270) 2 years ago
setup.py [misc] update pre-commit and run all files (#4752) 1 year ago
test_ci.sh [legacy] clean up legacy code (#4743) 1 year ago

README.md

Auto-Parallelism

Table of contents

📚 Overview

This tutorial folder contains a simple demo to run auto-parallelism with ResNet. Meanwhile, this directory also contains demo scripts to run automatic activation checkpointing, but both features are still experimental for now and no guarantee that they will work for your version of Colossal-AI.

🚀 Quick Start

Setup

  1. Create a conda environment
conda create -n auto python=3.8
conda activate auto
  1. Install requirements and coin-or-cbc for the solver.
pip install -r requirements.txt
conda install -c conda-forge coin-or-cbc

Auto-Parallel Tutorial

Run the auto parallel resnet example with 4 GPUs with synthetic dataset.

colossalai run --nproc_per_node 4 auto_parallel_with_resnet.py

You should expect to the log like this. This log shows the edge cost on the computation graph as well as the sharding strategy for an operation. For example, layer1_0_conv1 S01R = S01R X RR means that the first dimension (batch) of the input and output is sharded while the weight is not sharded (S means sharded, R means replicated), simply equivalent to data parallel training.

Note: This experimental feature has been tested on torch 1.12.1 and transformer 4.22.2. If you are using other versions, you may need to modify the code to make it work.

Auto-Checkpoint Tutorial

We prepare two benchmarks for you to test the performance of auto checkpoint

The first test auto_ckpt_solver_test.py will show you the ability of solver to search checkpoint strategy that could fit in the given budget (test on GPT2 Medium and ResNet 50). It will output the benchmark summary and data visualization of peak memory vs. budget memory and relative step time vs. peak memory.

The second test auto_ckpt_batchsize_test.py will show you the advantage of fitting larger batchsize training into limited GPU memory with the help of our activation checkpoint solver (test on ResNet152). It will output the benchmark summary.

The usage of the above two test

# run auto_ckpt_solver_test.py on gpt2 medium
python auto_ckpt_solver_test.py --model gpt2

# run auto_ckpt_solver_test.py on resnet50
python auto_ckpt_solver_test.py --model resnet50

# tun auto_ckpt_batchsize_test.py
python auto_ckpt_batchsize_test.py