index.md 10.2 KB
Newer Older
Shaden Smith's avatar
Shaden Smith committed
1
2
3
4
5
6
7
8
9
10
---
layout: single
toc: true
toc_label: "Contents"
---

DeepSpeed is a deep learning optimization library that makes distributed training easy,
efficient, and effective.

<p align="center"><i><b>10x Larger Models</b></i></p>
Jeff Rasley's avatar
Jeff Rasley committed
11
<p align="center"><i><b>10x Faster Training</b></i></p>
Shaden Smith's avatar
Shaden Smith committed
12
13
14
<p align="center"><i><b>Minimal Code Change</b></i></p>

DeepSpeed can train DL models with over a hundred billion parameters on current
Jeff Rasley's avatar
Jeff Rasley committed
15
generation of GPU clusters, while achieving over 10x in system performance
Shaden Smith's avatar
Shaden Smith committed
16
17
18
19
20
compared to the state-of-art. Early adopters of DeepSpeed have already produced
a language model (LM) with over 17B parameters called
[Turing-NLG](https://www.microsoft.com/en-us/research/blog/turing-nlg-a-17-billion-parameter-language-model-by-microsoft),
establishing a new SOTA in the LM category.

Shaden Smith's avatar
Shaden Smith committed
21
22
23
24
# What's New?
{% assign news = site.posts | where: "sneak_preview", "false" %}
{% for post in news limit:5 %}
  {% if post.link %}
Jeff Rasley's avatar
Jeff Rasley committed
25
  * [{{ post.date | date: "%Y/%m/%d"  }}] [{{ post.title }}]({{ post.link }}) {% if post.new_post %} <span style="color:dodgerblue">**NEW!**</span> {% endif %}
Shaden Smith's avatar
Shaden Smith committed
26
  {% else %}
Jeff Rasley's avatar
Jeff Rasley committed
27
  * [{{ post.date | date: "%Y/%m/%d"}}] [{{ post.title }}]({{ post.url }}) {% if post.new_post %} <span style="color:dodgerblue">**NEW!**</span> {% endif %}
Shaden Smith's avatar
Shaden Smith committed
28
29
30
  {% endif %}
{% endfor %}

Shaden Smith's avatar
Shaden Smith committed
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56

# Why DeepSpeed?
Training advanced deep learning models is challenging. Beyond model design,
model scientists also need to set up the state-of-the-art training techniques
such as distributed training, mixed precision, gradient accumulation, and
checkpointing. Yet still, scientists may not achieve the desired system
performance and convergence rate. Large model sizes are even more challenging:
a large model easily runs out of memory with pure data parallelism and it is
difficult to use model parallelism. DeepSpeed addresses these challenges to
accelerate model development *and* training.

## Distributed, Effective, and Efficient Training with Ease
The DeepSpeed API is a lightweight wrapper on [PyTorch](https://pytorch.org/). This
means that you can use everything you love in PyTorch and without learning a new
platform. In addition, DeepSpeed manages all of the boilerplate state-of-the-art
training techniques, such as distributed training, mixed precision, gradient
accumulation, and checkpoints so that you can focus on your model development. Most
importantly, you can leverage the distinctive efficiency and effectiveness benefit of
DeepSpeed to boost speed and scale with just a few lines of code changes to your PyTorch
models.

## Speed
DeepSpeed achieves high performance and fast convergence through a combination of
efficiency optimizations on compute/communication/memory/IO and effectiveness
optimizations on advanced hyperparameter tuning and optimizers. For example:

Jeff Rasley's avatar
Jeff Rasley committed
57
58
59
* <span style="color:dodgerblue">DeepSpeed trains BERT-large to parity in 44
  mins using 1024 V100 GPUs (64 DGX-2 boxes) and in 2.4 hours using 256 GPUs
  (16 DGX-2 boxes).</span>
Shaden Smith's avatar
Shaden Smith committed
60
61
62

  **BERT-large Training Times**

Jeff Rasley's avatar
Jeff Rasley committed
63
64
65
66
67
68
  | Devices        | Source    |        Training Time  |
  | -------------- | --------- | ---------------------:|
  | 1024 V100 GPUs | DeepSpeed |             **44** min|
  | 256 V100 GPUs  | DeepSpeed |             **2.4** hr|
  | 64 V100 GPUs   | DeepSpeed |            **8.68** hr|
  | 16 V100 GPUs   | DeepSpeed |           **33.22** hr|
Shaden Smith's avatar
Shaden Smith committed
69

Jeff Rasley's avatar
Jeff Rasley committed
70
  *BERT codes and tutorials will be available soon.*
Shaden Smith's avatar
Shaden Smith committed
71
72
73
74

* DeepSpeed trains GPT2 (1.5 billion parameters) 3.75x faster than state-of-art, NVIDIA
  Megatron on Azure GPUs.

Shaden Smith's avatar
Shaden Smith committed
75
  *Read more*: [GPT tutorial](/tutorials/megatron/)
Shaden Smith's avatar
Shaden Smith committed
76
77
78
79
80



## Memory efficiency
DeepSpeed provides memory-efficient data parallelism and enables training models without
Jeff Rasley's avatar
Jeff Rasley committed
81
model parallelism. For example, DeepSpeed can train models with up to 13 billion parameters on
Shaden Smith's avatar
Shaden Smith committed
82
NVIDIA V100 GPUs with 32GB of device memory. In comparison, existing frameworks (e.g.,
Jeff Rasley's avatar
Jeff Rasley committed
83
PyTorch's Distributed Data Parallel) run out of memory with 1.4 billion parameter models.
Shaden Smith's avatar
Shaden Smith committed
84
85
86

DeepSpeed reduces the training memory footprint through a novel solution called Zero
Redundancy Optimizer (ZeRO). Unlike basic data parallelism where memory states are
Jeff Rasley's avatar
Jeff Rasley committed
87
88
89
90
91
92
replicated across data-parallel processes, ZeRO partitions model states and gradients to save
significant memory. Furthermore, it also reduces activation memory and fragmented memory.
The current implementation (ZeRO-2) reduces memory by up to
8x relative to the state-of-art. You can read more about ZeRO in our [paper](https://arxiv.org/abs/1910.02054), and
in our blog posts related to
[ZeRO-1](https://www.microsoft.com/en-us/research/blog/zero-deepspeed-new-system-optimizations-enable-training-models-with-over-100-billion-parameters/). <!-- and [ZeRO-2](linklink). -->
Shaden Smith's avatar
Shaden Smith committed
93
94
95

With this impressive memory reduction, early adopters of DeepSpeed have already
produced  a language model (LM) with over 17B parameters called
Jeff Rasley's avatar
Jeff Rasley committed
96
97
<a href="https://www.microsoft.com/en-us/research/blog/turing-nlg-a-17-billion-parameter-language-model-by-microsoft">
<span style="color:dodgerblue">Turing-NLG</span></a>,
Shaden Smith's avatar
Shaden Smith committed
98
99
100
101
102
103
establishing a new SOTA in the LM category.


## Scalability
DeepSpeed supports efficient data parallelism, model parallelism, and their
combination. ZeRO boosts the scaling capability and efficiency further.
Jeff Rasley's avatar
Jeff Rasley committed
104
105
106
107
108
* <span style="color:dodgerblue">DeepSpeed provides system support to run models up to 170 billion parameters,
  10x larger than the state-of-art (8 billion NVIDIA GPT, 11 billion Google T5).</span>
* <span style="color:dodgerblue">DeepSpeed can run large models more efficiently, up to 10x
  faster for models with
  various sizes spanning 1.5B to 170B.</span> More specifically, the data parallelism powered by ZeRO
Shaden Smith's avatar
Shaden Smith committed
109
110
111
112
  is complementary and can be combined with different types of model parallelism.  It allows
  DeepSpeed to fit models using lower degree of model parallelism and higher batch size, offering
  significant performance gains compared to using model parallelism alone.

Jeff Rasley's avatar
Jeff Rasley committed
113
  *Read more*: [ZeRO paper](https://arxiv.org/abs/1910.02054),
Shaden Smith's avatar
Shaden Smith committed
114
  and [GPT tutorial](/tutorials/megatron).
Shaden Smith's avatar
Shaden Smith committed
115

Jeff Rasley's avatar
Jeff Rasley committed
116
![DeepSpeed Speedup](/assets/images/deepspeed-speedup.png)
Shaden Smith's avatar
Shaden Smith committed
117
118
119
120
121
122
123
124
125
126
127
<p align="center">
<em>The figure depicts system throughput improvements of DeepSpeed (combining ZeRO-powered data parallelism with model parallelism of NVIDIA Megatron-LM) over using Megatron-LM alone.</em>
</p>


## Fast convergence for effectiveness
DeepSpeed supports advanced hyperparameter tuning and large batch size
optimizers such as [LAMB](https://arxiv.org/abs/1904.00962). These improve the
effectiveness of model training and reduce the number of samples required to
convergence to desired accuracy.

Shaden Smith's avatar
Shaden Smith committed
128
*Read more*: [Tuning tutorial](/tutorials/1Cycle).
Shaden Smith's avatar
Shaden Smith committed
129
130
131


## Good Usability
Jeff Rasley's avatar
Jeff Rasley committed
132
Only a few lines of code changes are needed to enable a PyTorch model to use DeepSpeed and ZeRO. Compared to current model parallelism libraries, DeepSpeed does not require a code redesign or model refactoring. It also does not put limitations on model dimensions (such as number of attention heads, hidden sizes, and others), batch size, or any other training parameters. For models of up to 13 billion parameters, you can use ZeRO-powered data parallelism conveniently without requiring model parallelism, while in contrast, standard data parallelism will run out of memory for models with more than 1.4 billion parameters. In addition, DeepSpeed conveniently supports flexible combination of ZeRO-powered data parallelism with custom model parallelisms, such as tensor slicing of NVIDIA's Megatron-LM.
Shaden Smith's avatar
Shaden Smith committed
133
134
135
136
137
138
139
140
141
142
143
144
145


## Features

Below we provide a brief feature list, see our detailed [feature
overview](features) for descriptions and usage.

* [Distributed Training with Mixed Precision](features.md#distributed-training-with-mixed-precision)
    * 16-bit mixed precision
    * Single-GPU/Multi-GPU/Multi-Node
* [Model Parallelism](features.md#model-parallelism)
    * Support for Custom Model Parallelism
    * Integration with Megatron-LM
Jeff Rasley's avatar
Jeff Rasley committed
146
147
148
149
150
151
* [The Zero Redundancy Optimizer (ZeRO)](features.md#the-zero-redundancy-optimizer)
    * Optimizer State and Gradient Partitioning
    * Activation Partitioning
    * Constant Buffer Optimization
    * Contiguous Memory Optimization
* [Additional Memory and Bandwidth Optimizations](features.md#additional-memory-and-bandwidth-optimizations)
Shaden Smith's avatar
Shaden Smith committed
152
    * Smart Gradient Accumulation
Jeff Rasley's avatar
Jeff Rasley committed
153
    * Communication/Computation Overlap
Shaden Smith's avatar
Shaden Smith committed
154
155
* [Training Features](features.md#training-features)
    * Simplified training API
Jeff Rasley's avatar
Jeff Rasley committed
156
    * Activation Checkpointing API
Shaden Smith's avatar
Shaden Smith committed
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
    * Gradient Clipping
    * Automatic loss scaling with mixed precision
* [Training Optimizers](features.md#training-optimizers)
    * Fused Adam optimizer and arbitrary `torch.optim.Optimizer`
    * Memory bandwidth optimized FP16 Optimizer
    * Large Batch Training with LAMB Optimizer
    * Memory efficient Training with ZeRO Optimizer
* [Training Agnostic Checkpointing](features.md#training-agnostic-checkpointing)
* [Advanced Parameter Search](features.md#advanced-parameter-search)
    * Learning Rate Range Test
    * 1Cycle Learning Rate Schedule
* [Simplified Data Loader](features.md#simplified-data-loader)
* [Performance Analysis and Debugging](features.md#performance-analysis-and-debugging)


# Contributing
DeepSpeed welcomes your contributions! Please see our
Shaden Smith's avatar
Shaden Smith committed
174
[contributing](/contributing/) guide for more details on formatting, testing,
Shaden Smith's avatar
Shaden Smith committed
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
etc.

## Contributor License Agreement
This project welcomes contributions and suggestions. Most contributions require you to
agree to a Contributor License Agreement (CLA) declaring that you have the right to, and
actually do, grant us the rights to use your contribution. For details, visit
https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need
to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply
follow the instructions provided by the bot. You will only need to do this once across
all repos using our CLA.

## Code of Conduct
This project has adopted the [Microsoft Open Source Code of
Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the
[Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact
[opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or
comments.

# Publications
1. Samyam Rajbhandari, Jeff Rasley, Olatunji Ruwase, Yuxiong He. (2019) ZeRO: Memory Optimization Towards Training A Trillion Parameter Models. [ArXiv:1910.02054](https://arxiv.org/abs/1910.02054)