This directory provides scripts to train the GPT-based LLaMA and Mixtral models in the Megatron-DeepSpeed repository on Intel® Gaudi® 2 AI accelerator. Before you get started, make sure to review the Supported Configuration.
- Model Overview
- Setup
- Training Script Settings
- LLaMA Training and Examples
- Mixtral Training and Examples
- Changelog
- Known Issues
This implementation is based on https://github.com/microsoft/Megatron-DeepSpeed at 7eb36a11b3a9c48ed07b93692ccf22bfb5577f7e. Megatron (1 and 2) is a large, powerful transformer developed by the Applied Deep Learning Research team at NVIDIA. This repository is for training large transformer language models such as LLaMA at scale. Codebase is capable of efficiently training very large (hundreds of billions of parameters) language models with both model and data parallelism.
Users bear sole liability and responsibility to follow and comply with any third party licenses, and Habana Labs disclaims and will bear no liability with respect to users’ use or compliance with third party licenses.
Please follow the instructions provided in the Intel Gaudi Installation Guide
to set up the environment including the $PYTHON
environment variable. To achieve the best performance, please follow the methods outlined in the Optimizing Training Platform guide.
The guides will walk you through the process of setting up your system to run the model on Gaudi 2.
Please follow the instructions provided in the DeepSpeed Installation Guide to install deepspeed.
In the docker container, clone this repository and switch to the branch that matches your Intel Gaudi software version.
You can run the hl-smi
utility to determine the Intel Gaudi software version.
git clone -b [Intel Gaudi software version] https://github.com/HabanaAI/Megatron-DeepSpeed
export MEGATRON_DEEPSPEED_ROOT=/path/to/Megatron-DeepSpeed
export PYTHONPATH=$MEGATRON_DEEPSPEED_ROOT:$PYTHONPATH
-
In the docker container, go to the Megatron-DeepSpeed directory:
cd $MEGATRON_DEEPSPEED_ROOT
-
Install the required packages using pip:
pip install -r megatron/core/requirements.txt
-
To run training on more than 128 cards, apply the below configuration changes:
echo '* soft nofile unlimited' >> /etc/security/limits.conf echo '* hard nofile unlimited' >> /etc/security/limits.conf echo 'root soft nofile unlimited' >> /etc/security/limits.conf echo 'root hard nofile unlimited' >> /etc/security/limits.conf
-
To run on multiple nodes, setup a shared directory. This directory should be shared writeable. Samba has a quick guide on how to setup one: https://ubuntu.com/server/docs/samba-as-a-file-server
-
To run on multiple nodes, setup passwordless SSH between the nodes. This guide can be used to setup the same: https://github.com/huggingface/optimum-habana/tree/main/examples/multi-node-training
Follow the instructions in https://github.com/bigscience-workshop/bigscience/tree/master/data/oscar to download oscar-en full dataset. Note that the dataset takes around 550G of disk space. This dataset is used for training LLaMA & LLaMA 2. However, you will need around twice this space to process it.
The below provides the steps required to prepare your dataset. It is based on instructions in https://github.com/bigscience-workshop/bigscience/tree/master/data/oscar. The dataset in the example is intended to be zh
git clone https://github.com/bigscience-workshop/bigscience.git
cd bigscience/data/oscar
# Edit the `oscar-to-jsonl.py` in the list language_subsets and remove the comment on unshuffled_deduplicated_zh and comment out unshuffled_deduplicated_en
vi oscar-to-jsonl.py
# -s can be added for subset of data
$PYTHON oscar-to-jsonl.py
mkdir -p zh
mv oscar*.jsonl zh
cd zh
Use one of the three methods below to tokenize the dataset. You can use any number of workers based on the CPU cores.
-
Tokenize the dataset using GPT2BPETokenizer:
# download gpt2 vocab and merge files wget https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-vocab.json wget https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-merges.txt # tokenize individual jsonl files # loop count will change based on number of files for a given dataset mkdir zh_tokenized for i in $(seq 0 4); do $PYTHON $MEGATRON_DEEPSPEED_ROOT/tools/preprocess_data.py --input oscar-${i}.jsonl --output-prefix zh_tokenized/tokenized${i} --tokenizer-type GPT2BPETokenizer --vocab-file gpt2-vocab.json --merge-file gpt2-merges.txt --append-eod --workers 80 done
-
Tokenize the dataset using GPTSentencePieceTokenizer:
# download tokenizer.model based on model trying to train # tokenize individual jsonl files # loop count will change based on number of files for a given dataset mkdir zh_tokenized for i in $(seq 0 4); do $PYTHON $MEGATRON_DEEPSPEED_ROOT/tools/preprocess_data.py --input oscar-${i}.jsonl --output-prefix zh_tokenized/tokenized${i} --tokenizer-type GPTSentencePieceTokenizer --tokenizer-model /path/to/tokenizer.model --append-eod --workers 80 done
-
Tokenize the dataset using HFTokenizer:
# path to tokenizer can be local directory path and to run custom code from it, trust remote code option(--trust-remote-code) should be passed # or # path to tokenizer can be link to huggingface repo model card # if huggingface repo model card is a gated repo, Log in using a token from huggingface.co/settings/tokens with below command # huggingface-cli login # --seq-length value need to be passed explicitly from huggingface repo model card or local directory path which has model_max_length in tokenizer_config.json file # tokenize individual jsonl files # loop count will change based on number of files for a given dataset mkdir zh_tokenized for i in $(seq 0 4); do $PYTHON $MEGATRON_DEEPSPEED_ROOT/tools/preprocess_data.py --input oscar-${i}.jsonl --output-prefix zh_tokenized/tokenized${i} --tokenizer-type HFTokenizer --tokenizer-model /path/to/tokenizer --append-eod --workers 4 --seq-length 1000000000000000019884624838656 done
- Multiple tokenized dataset files are merged into a single file using the below method:
# merge tokenized files mkdir zh_tokenized_merged $PYTHON $MEGATRON_DEEPSPEED_ROOT/tools/merge_datasets.py --input zh_tokenized --output-prefix zh_tokenized_merged/tokenized_text_document # use the tokenized files generated from above command to train
- Based on the tokenization method, update the tokenizer type:
HL_TOKENIZER_TYPE=GPT2BPETokenizer
- To run custom tokenizer code from local path using HFTokenizer method:
HL_TRUST_REMOTE_CODE=1
- Update data root dir with the path of your choice:
HL_DATA_DIR_ROOT=/data/bigscience/data/oscar/zh
- Update data file prefix(*.bin and *.idx) based on file name in data root dir (
--output-prefix
from Step 3):HL_DATA_FILE_PREFIX=zh_tokenized_merged/tokenized_text_document
- Update tokenizer.model file path if it is not in data root dir, required for any sentence piece based tokenizer (e.g Not required for
GPT2BPETokenizer
in Step 3):HL_TOKENIZER_MODEL=path/to/tokenizer.model
- Some additional steps for multinode:
- Move the files to the shared directory created previously. Update
HL_DATA_DIR_ROOT
to this path. - Make sure to change the IP addresses in hostsfile according to your setup.
- Specify
HL_RESULTS_DIR
as a directory in shared. Alternatively,$MEGATRON_DEEPSPEED_ROOT
can be in the shared directory.
- Move the files to the shared directory created previously. Update
- Additional notes
- The multinode instructions applies to
HL_CHECKPOINTS_DIR
,HL_TENSORBOARD_DIR
andHL_KILL_SWITCH
if specified. - If
HL_DATA_DIR_ROOT
is not writable, thenHL_DATA_CACHE_DIR
must be set to a writable location and must be shared and accessible across all nodes and launchers when running training on more than 8 cards.
- The multinode instructions applies to
- Training of LLaMA is based on https://arxiv.org/abs/2302.13971
- Training of LLaMA 2 is based on https://arxiv.org/pdf/2307.09288
-
Run LLaMA 2 13B on 8 HPUs with BF16 precision:
HL_NUM_NODES=1 HL_PP=2 HL_TP=2 HL_DP=2 scripts/run_llama.sh
-
Run LLaMA 2 13B on 64 HPUs with BF16 precision:
HL_HOSTSFILE=scripts/hostsfile HL_NUM_NODES=8 HL_PP=2 HL_TP=2 HL_DP=16 scripts/run_llama.sh
-
Run LLaMA 2 70B on 32 HPUs with BF16 precision:
HL_HOSTSFILE=scripts/hostsfile HL_LLAMA_MODEL_SIZE=70 HL_NUM_NODES=4 HL_PP=4 HL_TP=8 HL_DP=1 scripts/run_llama.sh
LLaMA 2 training supports FP8 precision, which improves model performance. To enable FP8, set HL_USE_TRANSFORMER_ENGINE=1
. Several FP8 parameters adjust model performance, accuracy, and memory utilization. It is not recommended to change the following default parameters, as they are set optimally:
HL_FP8_FORMAT=hybrid
HL_FP8_MARGIN=0
HL_FP8_AMAX_RECOMPUTE_ALGO=max
HL_FP8_AMAX_REDUCE=1
HL_FP8_MEASURE_INTERVAL=GBS/micro_batch_size/DP
HL_FP8_AMAX_HISTORY_LEN=GBS/micro_batch_size/DP
The below parameter can be added to improve model performance while using FP8. Try adding them if you have enough memory:
HL_USE_CACHE_FP8_WEIGHT_FWD=1
HL_USE_CACHE_FP8_WEIGHT=1
-
Run LLaMA 2 70B on 32 HPUs with FP8 precision:
HL_HOSTSFILE=scripts/hostsfile HL_LLAMA_MODEL_SIZE=70 HL_NUM_NODES=4 HL_PP=4 HL_TP=8 HL_DP=1 HL_CKP_ACT=0 HL_SEQ_LEN=4096 HL_MICRO_BATCH=1 HL_USE_TRANSFORMER_ENGINE=1 HL_USE_CACHE_FP8_WEIGHT_FWD=1 scripts/run_llama.sh
-
Run LLaMA 2 13B on 16 HPUs with FP8 precision:
HL_HOSTSFILE=scripts/hostsfile HL_NUM_NODES=2 HL_PP=2 HL_TP=2 HL_DP=4 HL_CKP_ACT=2 HL_SEQ_LEN=4096 HL_ZERO_STAGE=1 HL_USE_FAST_SOFTMAX=1 HL_MICRO_BATCH=2 HL_GRAD_ACCUM_DTYPE=bf16 HL_USE_TRANSFORMER_ENGINE=1 HL_USE_CACHE_FP8_WEIGHT_FWD=1 HL_USE_CACHE_FP8_WEIGHT=1 scripts/run_llama.sh
-
Run LLaMA 2 7B on 8 HPUs with FP8 precision:
HL_LLAMA_MODEL_SIZE=7 HL_NUM_NODES=1 HL_PP=1 HL_TP=1 HL_DP=8 HL_CKP_ACT=2 HL_SEQ_LEN=4096 HL_ZERO_STAGE=1 HL_USE_FAST_SOFTMAX=1 HL_MICRO_BATCH=1 HL_GRAD_ACCUM_DTYPE=bf16 HL_USE_TRANSFORMER_ENGINE=1 HL_USE_CACHE_FP8_WEIGHT_FWD=1 HL_USE_CACHE_FP8_WEIGHT=1 scripts/run_llama.sh
- Training of Mixtral is based on https://arxiv.org/abs/2401.04088
Configure the following for the Mixtral examples below:
- Set the correct path for
HL_DATA_DIR_ROOT
. - Set the correct values for
HL_TOKENIZER_TYPE
andHL_DATA_FILE_PREFIX
. - Add
HL_DATA_CACHE_DIR
and/orHL_TOKENIZER_MODEL
if necessary.
Refer to training script settings for details.
In addition, Capacity Bins functionality was introduced for Mixtral. Capacity bins is a solution for more performance efficent handling of dynamicity in Mixture of Expert layer. Expert capacity values are limited to a fixed set of values (defined by bins). Bins are auto-optimized in given steps intervals, based previous bins usage frequencies.
Capacity bins are configured using following variables:
HL_MOE_NUM_CAPACITY_BINS
- Number of bins to be used.HL_CAPACITY_BINS_EXP_BASE
- Exponential base for initialization of capacity bins. Bins are generated with exponential growing bins width. Bins that are closer to the start are smaller and thus have less extra non-required capacity.HL_MOE_CAPACITY_BINS_ALIGNMENT
- Every capacity bin value (initialized or optimized) will be a multiple of this alignment.HL_MOE_CAPACITY_BINS_OPTIMIZE_INTERVAL
- Steps interval for auto-optimization of MoE capacity bins.HL_MOE_CAPACITY_BINS_OPTIMIZE_MAX_GROUP
- Maximum group size of adjacent MoE gates that their capacity bins are optimized jointly.
Capacity bins functionality is enabled by setting HL_MOE_NUM_CAPACITY_BINS
.
Recomended configuration is to set HL_MOE_NUM_CAPACITY_BINS=10
and leave other parameters as default values.
- Run Mixtral 8x7b on 32 HPUs, Lazy mode, with BF16 precision, sequence length 32k:
HL_HOSTSFILE=$MEGATRON_DEEPSPEED_ROOT/scripts/hostsfile \ HL_MOE_NUM_CAPACITY_BINS=10 \ HL_NUM_NODES=4 \ HL_TP=8 \ HL_MOE_EP=1 \ HL_SEQ_PARALLEL=1 \ HL_MOE_ENABLE_EXPERT_TP=1 \ HL_ZERO_STAGE=1 \ HL_CKP_ACT=1 \ $MEGATRON_DEEPSPEED_ROOT/scripts/run_mixtral.sh
Validated on | Intel Gaudi software Version | PyTorch Version | Mode |
---|---|---|---|
Gaudi 2 | 1.17.0 | 2.3.1 | Training |
- Added throughput timers configuration to the Deepspeed json config.
- Rebased Megatron-DeepSpeed repository from PR#372 to PR#374.
- Added support for Megatron-DeepSpeed Eval Harness tasks. Usage example is available here.
- Added support for full recompute in FP8.
- Added Lazy mode support for Mixtral.
- Added Capacity Bins functionality for Mixtral.
- Added Megatron-DeepSpeed to Hugging Face checkpoint conversion support. Usage example is available here.
- Added Mixtral model with Eager and torch.compile modes support. Lazy mode is not supported.
- Rebased Megatron-DeepSpeed repository from PR#307 to PR#372.
- Set the LLaMA 2 model as the default.
- Added support for Zeroshot_gpt tasks using DeepSpeed 3D parallelism.
- Added support for ALiBi positional embeddings in core attention only.
- Added support for fast softmax. Currently disabled by default.
- Added support for accumulation of gradients in BF16. Currently disabled by default.
- Initial release.
Major changes done to the original model from microsoft/Megatron-DeepSpeed repository:
- Changed README file content.
- TFLOPs calculation changed.
- Added HPU FP8 support.
- Flash attention support via FusedSDPA is added for HPU Accelerator.
- Added checkpoint verification.
- Added kill-switch mechanism to gracefully stop training.
- Only scripts and configurations mentioned in this README are supported and verified.