PipeGCN: Efficient Full-Graph Training of Graph Convolutional Networks with Pipelined Feature Communication
Cheng Wan (Rice University), Youjie Li (UIUC), Cameron R. Wolfe (Rice University), Anastasios Kyrillidis (Rice University), Nam Sung Kim (UIUC), Yingyan Lin (Rice University)
Accepted at ICLR 2022 [Paper | Video | Slide | Docker]
|-- checkpoint # model checkpoints
|-- dataset
|-- helper # auxiliary codes
| `-- timer
|-- module # PyTorch modules
|-- partitions # partitions of input graphs
|-- results # experiment outputs
`-- scripts # example scripts
Note that ./checkpoint/
, ./dataset/
, ./partitions/
and ./results/
are empty folders at the beginning and will be created when PipeGCN is launched.
- A X86-CPU machine with at least 120 GB host memory
- At least five Nvidia GPUs (at least 11 GB each)
- Ubuntu 18.04
- Python 3.8
- CUDA 11.1
- PyTorch 1.8.0
- customized DGL 0.8.0
- OGB 1.3.0
We have prepared a Docker package for PipeGCN.
docker pull cheng1016/pipegcn
docker run --gpus all -it cheng1016/pipegcn
Running the following command will install DGL from source and other prerequisites from conda.
bash setup.sh
Please follow the official guides ([1], [2]) to install PyTorch and OGB. For DGL, please follow the official guide to install our customized DGL from source (do NOT forget to adjust the first git clone
command to clone our customized repo). We are contacting the DGL team to integrate our modification that supports minimizing communication volume for graph partition.
We use Reddit, ogbn-products, Yelp and ogbn-papers100M for evaluating PipeGCN. All datasets are supposed to be stored in ./dataset/
by default. Reddit, ogbn-products and ogbn-papers100M will be downloaded by DGL or OGB automatically. Yelp is preloaded in the Docker environment, and is available here or here (with passcode f1ao) if you choose to set up the enviromnent by yourself.
--dataset
: the dataset you want to use--lr
: learning rate--enable-pipeline
: pipeline communication and computation--feat-corr
: apply smoothing correction to stale features--grad-corr
: apply smoothing correction to stale gradients--corr-momentum
: the decay rate of smoothing correction--n-epochs
: the number of training epochs--n-partitions
: the number of partitions--n-hidden
: the number of hidden units--n-layers
: the number of GCN layers--port
: the network port for communication--no-eval
: disable evaluation process
Simply running scripts/reddit.sh
, scripts/ogbn-products.sh
and scripts/yelp.sh
can reproduce PipeGCN under the default settings. For example, after running bash scripts/reddit.sh
, you will get the output like this
...
Process 000 | Epoch 02999 | Time(s) 0.2660 | Comm(s) 0.0157 | Reduce(s) 0.0185 | Loss 0.0764
Process 001 | Epoch 02999 | Time(s) 0.2657 | Comm(s) 0.0095 | Reduce(s) 0.0683 | Loss 0.0661
Epoch 02999 | Accuracy 96.44%
model saved
Validation accuracy 96.62%
Test Result | Accuracy 97.10%
You may add/remove --enable-pipeline
, --feat-corr
or --grad-corr
to reproduce the results of PipeGCN under other settings. To verify the exact throughput or time breakdown of PipeGCN, please add --no-eval
argument to skip the evaluation step.
Our code base also supports distributed GCN training with multiple compute nodes. To achieve this, you should specify --master-addr
, --node-rank
and --parts-per-node
for each compute node. An example is provided in scripts/reddit_multi_node.sh
where we train the Reddit graph over 4 compute nodes, each of which contains 10 GPUs, with 40 partitions in total. You should run the command on each node and specify the corresponding node rank. Please turn on --fix-seed
argument so that all nodes initialize the same model weights.
If the compute nodes do not share storage, you should partition the graph in a single device first and manually distribute the partitions to other compute nodes. When run the training script, please enable --skip-partition
argument.
Copyright (c) 2022 RICE-EIC. All rights reserved.
Licensed under the MIT license.