Framework | Domain | Model | Datasets | Tasks | Training | Inference | Reference |
---|---|---|---|---|---|---|---|
PopXL | NLP | GPT-3 | Wikipedia | Next sentence prediction, Question/Answering | ✅ Min. 256 IPUs (POD256) required | ❌ | Language Models are Few-Shot Learners |
This README describes how to run GPT-3 models for NLP pre-training on Graphcore IPUs using the PopXL library. A combination of phased execution, tensor model parallelism, data parallelism, and remote tensor sharding are utilised to train the models.
This application shows how to run larger models on IPU. The techniques to do this mean that performance is lower than for models that fit in IPU memory. Large model training or fine-tuning requires a big Pod installation. The minimum to run pre-training with this model is a Pod256. PopXL is an experimental framework and may be subject to change in future releases.
- Install and enable the Poplar SDK (see Poplar SDK setup)
- Install the system and Python requirements (see Environment setup)
- Download the WIKI-103 dataset (See Dataset setup)
To check if your Poplar SDK has already been enabled, run:
echo $POPLAR_SDK_ENABLED
If no path is provided, then follow these steps:
-
Navigate to your Poplar SDK root directory
-
Enable the Poplar SDK with:
cd poplar-<OS version>-<SDK version>-<hash>
. enable.sh
- Additionally, enable PopART with:
cd popart-<OS version>-<SDK version>-<hash>
. enable.sh
More detailed instructions on setting up your Poplar environment are available in the Poplar quick start guide.
To prepare your environment, follow these steps:
-
Navigate to this example's root directory
-
Install required system packages:
apt-get install -y $(< required_apt_packages.txt)
- Create and activate a Python3 virtual environment:
python3 -m venv <venv name>
source <venv path>/bin/activate
- Install the Python requirements:
pip3 install -r requirements.txt
To obtain the data used for pre-training follow the following instructions (execute all scripts in the data
directory).
Download the latest raw wikipedia dump using:
cd data
bash wikipedia_download.sh wikipedia_raw
Extract the data into another format:
pip3 install wikiextractor
export PYTHONIOENCODING=utf-8
export LC_ALL=C.UTF-8
bash wikipedia_extract.sh wikipedia_raw/wikidump.xml wikipedia_extracted
Preprocess the data:
mkdir wikipedia_preprocessed
python3 wikipedia_preprocess.py --input-file-path wikipedia_extracted --output-file-path wikipedia_preprocessed
To generate TFRecords from the preprocessed data
pip install tensorflow==1.15.0
mkdir wikipedia_tf
python3 write_into_tfrecord.py --input-file-path wikipedia_preprocessed/wikicorpus_en_one_article_per_line.pkl --output-file-path wikipedia_tf --seq-length 2048 --stride 2048
Then you need to generate the indices for the TFRecords
cd wikipedia_tf
for f in *.tfrecord; do python3 -m tfrecord.tools.tfrecord2idx $f `basename $f .tfrecord`.index; done
You can run pre-training for GPT-3 with settings defined in pretraining.yml
by using the script below. You need to provide the data files to --input_files
.
python3 run_pretraining.py --input_files {path to your wikipedia data}/*.tfrecord
The default model size in pre-training is GPT-3 175B on POD256 (named gpt3_175B_pod256
). You can change it to other sizes that are available in the configuration file config/pretraining.yml
using the --config
CLI parameter like so.
python3 run_pretraining.py --config gpt3_175B_pod256 --input_files {path to your wikipedia data}/*.tfrecord
When running the application, it is possible to save/load executables to/from a cache store. This allows for reusing a saved executable instead of re-compiling the model when re-running identical model configurations. To enable saving/loading from the cache store, use the environment variable POPXL_CACHE_DIR=<PATH/TO/CACHE>
when running the application.
This project supports Weights & Biases, a platform to keep track of machine learning experiments. A client for Weights & Biases will be installed by default and can be used during training by passing the --wandb
flag - it is disabled by default. You will need to manually log in (see the quickstart guide here) and configure the project name with --wandb-name
.) For more information please see https://www.wandb.com/.
The trainings in demo are logged in wandb under project popxl-gpt
. Each run has loss, learning rate and throughput logged. The version for addons
and PopXL are also logged together with the configuration settings.
File | Description |
---|---|
config/ |
Contains configuration options for pre-training GPT-3. |
data/ |
Data preprocessing for pre-training using the Wikipedia dataset |
modelling/ |
Implements layers in GPT-3 model and the models for different tasks for inference and training. - embedding.py , attention.py , feed_forward.py , and gpt_lm.py present the implementations of embedding layer, self-attention, feed forward, and language model head networks respectively. |
tests/ |
Includes integration and unit tests. |
utils/ |
Helper functions to set up GPT-3 configs and parse arguments. |
You can find configuration options for GPT-3 in class GPTConfig
in the file config/config.py
. It contains configurations for these aspects:
-
Models
You can set the parameters used in the GPT-3 model.
- general parameters:
layers
the number of decoder layers in the model,hidden_size
the hidden size of the layers,sequence_length
number of tokens in a sample,eval
to enable the model to be built for inference or validation which will disable dropout and optimisation,dropout_prob
the dropout probability,precision
to set the precision used in the model parameters, for instance,popxl.float32
andpopxl.float16
.seed
the random seed used by the model and data generation.
- parameters for
embedding
layers: vocabulary sizevocab_size
and maximum number of positions to support in the embeddingsmax_positional_length
. - parameters for
attention
layer:heads
the number of attention heads.
- general parameters:
-
Training
You can configure the training options that have impact on training.
steps
: number of steps,epochs
: number of epochs,global_batch_size
: the number of samples that contribute to an optimizer step,stochastic_rounding
: a flag to enable stochastic rounding,optimizer
: an optimizer with the following settings.learning_rate
: to set up the learning rate includingfunction
used in scheduler,maximum
learning rate, andwarmup_proportion
to set the proportion of the warmup step,beta1
: by default 0.9,beta2
: by default 0.999,weight_decay
: weight decay factor by default 0.0.
-
Data
input_files
: the path to input data files
-
Execution
You can change how to execute a GPT-3 run on IPU.
micro_batch_size
: the number of samples that contribute to a gradient accumulation step,data_parallel
: the number of model replicas to use for data parallelism,tensor_parallel_1
: the number of IPUs used for the first tensor model parallel axis. This is the outermost axis.tensor_parallel_2
: the number of IPUs used for the second tensor model parallel axis. This is the innermost axis.device_iterations
: the number of times the training loop is executed before relinquishing control and reporting to the host,io_tiles
: the number of tiles dedicated to streaming data,available_memory_proportion
: the available memory proportion for any op that supports this option,loss_scaling
: the scaling factor to apply to gradients, by default 1,pipeline
: the pipeline layers distribution,
Note that the gradient_accumulation
size is automatically computed from the global_batch_size
, the micro_batch_size
and data_parallel
.
-
Checkpoint
You can set the path to load and save checkpoints respectively by
load
andsave
.
Here we introduce some techniques that were required to scale up the GPT-3 model for the required capacity and throughput.
For compute graphs that have memory requirements greater than the available on-chip memory, we can partition it into a series of smaller sub-graphs and execute them in series on the IPU, using remote memory to store input and output tensors between calls. This is called phased execution. We recommend the tutorial about this concept in Phased Execution in MNIST example.
In the GPT-3 application we demonstrate this concept on a full sized model. Recomputation and replicated tensor sharding (RTS) are also used to improve the performance.
Tensor parallel training involves breaking the layers into shards, which are each allocated to a different devices. Communication is required within a layer between the different devices to rematerialise the same numerical result if tensor parallelism sharding wasn't used.
With 2D tensor parallel, some tensors are split along two different dimensions. For example the embedding matrix is split along the vocab dimension and hidden dimension. The activation tensor x
is also split along the hidden dimension.
For the embedding layer one all-reduce communication operation is required for the forwards and backwards pass (not included recomputation). For the GPT-3 layers, 8 all-reduce operations are required for the forwards and backwards pass. For the pre-training head 5 all-reduce operations are required for the forwards and backwards pass.
Data-parallel training involves breaking the training dataset up into multiple parts, which are each consumed by a model replica. At each optimization step, the gradients are mean-reduced across all replicas so that the weight update and model state are the same across all replicas. You can find more details about how to use data parallelism in PopXL addons within the MNIST example.
First of all, we build the training graphs for each phase, represented in the class Graphs
. A phase can include one layer or consecutive layers. The execution of a phase can include the forward, gradient, or optimizer graph, or a combination of them. We need to build the graphs used in each phase before we define the phases in Build the main computational graph.
The graphs required for each phase can be represented in class Graphs
.
- The
fwd
andbwd
are respectively the forward and backward pass graphs. Thebwd
graph is obtained directly by usingautodiff_with_accumulation
from the forward graphfwd
. - The
facts
has the required variable factories in the forward graph and optimizer graph. Thegrad_facts
has the required variable factories for the backward graph. - The
optim
contains the optimizer graphs for each variable. - The
buffers
are remote buffers used to handle the loading and offloading of the activations, trainable weights, and optimiser states. - To handle the remote load and store for the remote buffers, we also need the:
- graph
_fwd_load
that loads variables fromfwd
buffers and returns_fwd_load_names
, - graph
_optim_fwd_load
that loads all forward and optimiser state from buffers - graph
_optim_fwd_store
that stores all forward and optimiser state to buffers - graph
_grad_store
that stores tobwd
buffers. It is only used in pre-training GPT-3 layer and task head layer.
- graph
- To handle collectives for replica all gather and reduce replica for RTS variables, we also created the graphs:
- graph
_fwd_all_gather
that does AllGather across replicas for forward RTS variables and returns_fwd_all_gather_names
, - graph
_grad_reduce
that reduces across replicas for gradient RTS variables and returns_grad_reduce_names
.
- graph
We created these graphs:
embeddings
by calling the methodcreate_embeddings_graph
on the embedding layer. Note that the optimizer step for the embedding layer happens straight after the backward pass on device, so there is no need to store the gradient in a buffer.layer
by calling the methodcreate_decoder_block_graph
for each GPT-3 decoder layer. Its buffer contains the forward tensors and gradient tensors. Since each GPT-3 decoder layer has identical input and output data type and shape, we stack the buffers for each layer together. Hence, the number of entries in the buffers is the same as the number of decoder layers.head
by calling the methodcreate_task_head_graph
on the task head layer.
We then apply transformations to the graphs built:
-
recomputation: to reduce memory consumption in backward pass for embedding and decoder gradients. You can transform the gradient graphs by using the function
popxl_addons.recompute_graph
. -
batch serialisation: to avoid the frequent loading and offloading of the variables and graphs in different layers for each batch, we use batch serialisation. It repeats the same graph with different data for each partition of the model
steps
times. You can find the transformed graphs inembeddings_batch_serialise
,decoder_block_batch_serialise
, andhead_batch_serialise
. Each batch serialisation produces the forward and gradient graphs and the activations. You can get the transformed graphs for the embedding and decoder layers by using thepopxl_addons.transforms.batch_serialisation.batch_serialise_fwd_and_grad
directly. As for the head layer, it has a combined forward and gradient graph and so usespopxl_addons.transforms.batch_serialisation.batch_serialise
.
For batch serialisation, we also need to create remote buffers to load the inputs and store outputs for each partition by using popxl_addons.batch_serial_buffer
. In this application, we use the remote buffers x_buffer
and dx_buffer
respectively to handle the intermediate outputs of each partition in the forward pass and backward pass. The two buffers for this application are illustrated in the following diagram. Each row handles config.gradient_accumulation
elements.
For instance, in x_buffer
, row 0 stores the output of the embedding layer in forward pass. The output of each GPT-3 decoder layer is stored from row 1 to config.model.layers+1
. Note that the rows in the two buffers are filled up in the opposite directions.