Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

This model has the following configuration:

  • 12-layer
  • 768 hidden dimension
  • 12 attention heads
  • 110M parameters.

Environment

The training use fp32 and runs on 1 node with 16 Nvidia V100 GPUs. The autotuning uses the same hardware resource as the training. max_train_batch_size is set to 4096. The HF packages below are used.

HF examples require installing the transformers package from source:

    git clone https://github.com/huggingface/transformers.git
    cd transformers
    pip install .

The datasets package can be installed by pip install datasets

Below are the versions used in this test.

  • transformers (4.12.0)
  • datasets (1.11.0)

Throughput Comparison

The table below shows the throughput (samples per second) comparison. The corresponding train micro-batch size per GPU (mbs or tmbspg) and ZeRO stage used to achieve the throughput value is also shown in the parentheses. Assume the strategy users would use in the handtuning process is to start from mbs = 1 and increase mbs by 2 each time until running out of GPU memory.

  • baseline is the vanila HF without DeepSpeed (DS) and mbs is hand-tuned.
  • HF + DS hand-tuned is HF with DS, and mbs is hand-tuned while other DS configuration uses default values.
  • HF + DS autotuning is HF with DS, and the DS configuration is selected from autotuning.

Notation: Hugging Face (HF), DeepSpeed (DS), ZeRO stage (z), gradient accumulation steps (gas), train micro-batch size per GPU (mbs or tmbspg).

Model name baseline (vanila HF) HF + DS handtuned HF + DS autotuning
BERT-base 2502.236 (gas = 1, mbs = 128) 2523.684 (z = 0, gas = 1, mbs = 128) 2736.561 (z0_gas1_tmbspg235)

Detailed HF + DS autotuning Result Summary

Note that the performance metric used in autotuning is calculated using the timings captured within DeepSpeed forward, backward, and step functions. The sum of these timings is less than the actual training step latency, thus the throughput metric values used by autotuning would be higher than the end-to-end throughput in training.

  • Fast-mode Autotuning time: 35 mins
  • Number of experiments: 34
  • Throughput Improvement over baseline: 1.09x
tuning_space num_experiments best_metric_val best_exp_name
z0 9 2930.18 z0_gas1_tmbspg235
z1 7 2930.17 z1_gas1_tmbspg235
z2 8 2744.16 z2_gas1_tmbspg235
z3 10 2479.47 z3_gas1_tmbspg238
global 34 2930.18 z0_gas1_tmbspg235

Tuning completed in 0:34:41.842250. Total number of experiments: 34.