17 KiB
Shardformer
Author: Baizhou Zhang, Bin Jia
Prerequisite
Example Code
Related Paper
- Efficient Large-Scale Language Model Training on GPU Clusters Using Megatron-LM
- GPipe: Efficient Training of Giant Neural Networks using Pipeline Parallelism
- FlashAttention-2: Faster Attention with Better Parallelism and Work Partitioning
- Sequence Parallelism: Long Sequence Training from System Perspective
- Reducing Activation Recomputation in Large Transformer Models
Introduction
When training large transformer models such as LLaMa-2 70B or OPT 175B, model parallelism methods that divide a huge model into smaller shards, including tensor parallelism or pipeline parallism, are essential so as to meet the limitation of GPU memory. However, manually cutting model and rewriting its forward/backword logic could be difficult for users who are not familiar with distributed training. Meanwhile, the Huggingface transformers library has gradually become users' first choice of model source, and most mainstream large models have been open-sourced in Huggingface transformers model library.
Out of this motivation, the ColossalAI team develops Shardformer, a feature that automatically does preparation of model parallelism (tensor parallelism/pipeline parallelism) for popular transformer models in HuggingFace. This module aims to make parallelization hassle-free for users who are not from the system background. Within a few lines of codes, users can turn a model into a state ready for distributed training. Also, Shardformer contains various optimization tools for acceleration and memory saving during forward/backward pass.
Supporting Information
Model/Feature Compatibility Matrix:
Model/Feature | Tensor Parallel |
Pipeline Parallel |
Lazy Initialization |
xFormers | Flash Attention 2 |
JIT Fused Operators |
Fused LayerNorm |
Sequence Parallel |
Sequence Overlap |
|||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Llama V1/V2 | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ | ❌ | |||||||||||||||||||||||||||||
OPT | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ | ❌ | |||||||||||||||||||||||||||||
BLOOM | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | |||||||||||||||||||||||||||||
ChatGLM 2 | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | |||||||||||||||||||||||||||||
BERT | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | |||||||||||||||||||||||||||||
GPT 2 | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | |||||||||||||||||||||||||||||
T5 | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ | ❌ | |||||||||||||||||||||||||||||
ViT | ✔️ | ✔️ | ❌ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ | ❌ | |||||||||||||||||||||||||||||
Whisper | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ | ✔️ | ❌ | ❌ | |||||||||||||||||||||||||||||
SAM | ✔️ | ❌ | ❌ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ | ❌ | |||||||||||||||||||||||||||||
Blip2 | ✔️ | ❌ | ❌ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ | ❌ | |||||||||||||||||||||||||||||
List of model families we plan to support in the near future:
- RoBERTa
- ALBERT
- ERNIE
- GPT Neo
- GPT-J
- BEiT
- SwinTransformer V1/V2
- qwen
The support matrix will grow larger as more models and optimization tools emerge in the future. If you have any suggestions on the models/optimization we should support, please feel free to mention it in Issues section of our project.
Usage
Shardformer Configuration
The configuration of Shardformer is controlled by class ShardConfig
:
{{ autodoc:colossalai.shardformer.ShardConfig }}
If you want to enable Apex Fused Layernorm, please install apex
.
If you want to enable the usage of flash attention, please install flash_attn
.
In addition, xFormers's cutlass_op
can serve as a backup for flash attention.
Enabling Shardformer
1. Enabling Shardformer Through Booster (Recommended)
Enabling Shardformer
through Booster
initialized with HybridParallelPlugin
is the recommended way to awaken the power of Shardformer.
The main reason is that pipeline parallelism cannot successfully work without the calling of execute_pipeline
method of Booster
. Besides, HybridParallelPlugin
provides the capacity to combine the features of Shardformer
with other useful features, such as mixed precision training or Zero.
More details about this usage can be found in chapter Booster API and Booster Plugins.
Here is an example on how to trigger Shardformer
through HybridParallelPlugin
. Please be aware that there's a difference in the way of doing forward and backward between the situation of using pipeline and not using pipeline.
2. Enabling Shardformer Through Shardformer APIs (Not Recommended)
You can also use Shardformer through manually calling Shardformer APIs. However, this usage is not recommended since pipeline parallelism can't run without Booster
.
Here
is an example on how to trigger Shardformer
through calling Shardformer APIs.
Precautions
-
When enabling pipeline parallel, please don't do the forward/backward pass in the conventional way (
model(input)
,loss.backward()
), which will cause unexpected errors. Rather, please do forward/backward pass through callingbooster.execute_pipeline
method. -
When you use Shardformer to process classification models such as
GPT2ForSequenceClassification
,ViTForImageClassification
, please ensure that the total number of labels should be integer multiple of tensor parallel size, otherwise Shardformer can't process the classifier layer correctly. A simple fix could be appending dummy labels in transformers config. This bug will be fixed in future version of Shardformer. -
The case of training ChatGLM-2 6B is a little special: since Huggingface transformers doesn't officially support ChatGLM at present, please import the configuration/model classes through
from colossalai.shardformer.modeling.chatglm2_6b.configuration_chatglm import ChatGLMConfig from colossalai.shardformer.modeling.chatglm2_6b.modeling_chatglm import ChatGLMForConditionalGeneration, ChatGLMModel
when training ChatGLM-2 with Shardformer, and initialize your model with these imported classes.
How Shardformer Works
Generally, Shardformer works through the following four kinds of replacements:
-
Replacing original PyTorch module (e.g.
nn.Linear
,nn.Embedding
) with a crafted distributed module. The distributed module keeps the same attributes as the original module but replaces the original parameters with distributed parameters. Also, newforward
methods will replace original ones so as to execute distributed computation, such as linear layers' split /gather operations executed under tensor parallelism. Each distributed module implements itsfrom_native_module
static method to convert the PyTorch module to its corresponding distributed module. -
Replacing attributes of original Huggingface Transformers layers with appropriate attributes for distributed training. For example, when training LlaMa-2 with tensor parallel size as 2, the attribute
num_heads
ofLlamaDecoderLayer
(the number of attention heads in each layer) should be replaced withmodel.config.num_attention_heads // 2
. -
Replacing the
forward
methods implemented by original Huggingface Transformers libraries with our customizedforward
methods. This replacement is essential for pipeline paralellism, where a customiozed function is needed to pass intermediate hidden states between different pipeline stages. Also, optimization methods such as flash attention or sequence parallel can be injected into theforward
process through our customizedforward
method. -
Replacing the whole copy of model parameters and optimizer states with incomplete ones controlled by current device (this is why it's called Shardformer). By executing
ModelSharder.shard
method, current device will only keep the part of model parameters it's supposed to take care of. To be specific, they should be the assigned parameter shards when using tensor parallelism, or the parameters belonging to current pipeline stage when using pipeline parallelism, or both of them. All other parameters are released so as to liberate memory usage. As a result, the optimizer will only compute the states corresponding to these part of parameters, causing the usage of memory to be further saved.
All of these replacements are implemented with manually written policies and forward functions. If you want to delve deeper into the design of Shardformer or customize your own Shardformer policies, please refer to our Shardformer development document and pipeline parallelism design for more details.
Sequence Parallelism
Sequence parallelism is a special optimization method supported by Shardformer
. Sequence parallelism in Shardformer
is a little different from this one which focuses on ring attention. In Shardformer
, sequence parallelism is only used along with 1D tensor parallelism to further reduce memory occupation of activation tensors during computation.
-
In normal 1D tensor parallel, there are 2 communication operations,
g
and\vec{g}
,g
will do one time All-Reduce in backward to get all gradients from all the devices and\vec{g}
will do one time All-Reduce in forward to get whole outputs from all the devices. -
When using sequence parallelism,
\vec{g}
needs to do All-Gather to gather the inputs along sequence dimension during forward, and Reduce-Scatter to split the gradient during backward.\vec{g}
needs to do Reduce-Scatter to split the output ofRow Linear
layer of tensor parallel to all devices along sequence dimension, and All-Gather to get the whole gradient during backward. -
NCCL's implementation of All-Reduce adopts the
Ring All-Reduce
approach, which consists of a Reduce-Scatter operation and an All-Gather operation with equal costs. Therefore, compared with sequence parallelism and tensor parallelism, it does not introduce additional communication overhead. -
One important thing to note is that when using sequence parallelism along with
Column Linear
module of tensor parallelism, the complete input needs to be obtained during the backward computation of gradients. During the forward pass, only the portion of the input that is split along the sequence dimension is retained, in the shape of(batch, sequence_len/k, hidden_states)
. Therefore, an additional All-Gather operation is required to obtain the complete input for gradient computation. However, it is possible to overlap the gradient computation with the All-Gather communication operation in our implementation, which would not introduce additional communication overhead (corresponding to theenable_sequence_overlap
parameter inShardformer
).