README.md 2.63 KB
Newer Older
1
2
3
4
5
6
# FlashAttention
This repository provides the official implementation of FlashAttention from the
following paper.

**FlashAttention: Fast and Memory-Efficient Exact Attention with IO-Awareness***
Tri Dao, Daniel Y. Fu, Stefano Ermon, Atri Rudra, Christopher Ré
7
![FlashAttention](assets/flashattn_banner.jpg)
8
9

## Alpha release (0.1).
Tri Dao's avatar
Tri Dao committed
10

Tri Dao's avatar
Tri Dao committed
11
To compile (requiring NVCC and an A100 GPU):
Tri Dao's avatar
Tri Dao committed
12
```
Tri Dao's avatar
Tri Dao committed
13
cd csrc/flash_attn
Tri Dao's avatar
Tri Dao committed
14
15
16
python setup.py install
```

Tri Dao's avatar
Tri Dao committed
17
Interface: `flash_attention.py`
Tri Dao's avatar
Tri Dao committed
18

Tri Dao's avatar
Tri Dao committed
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
To run the benchmark against PyTorch standard attention: 
```
PYTHONPATH=$PWD python benchmarks/benchmark_flash_attention.py
```

FlashAttention currently supports:
1. A100 GPUs.
2. fp16.
3. Head dimensions 16, 32, 64.

Our roadmap to broaden the support:
1. Refactor to use Cutlass.
2. Support SM86 GPUs (e.g. RTX 3080, 3090), support SM75 GPUs (e.g. T4).
3. Support bf16.
4. Support head dimension 128.
5. Make package pip-installable.
6. Support SM70 GPUs (V100).
7. Fused rotary embedding.
8. Attention linear bias (e.g. ALiBi).

Dan Fu's avatar
Dan Fu committed
39
40
41
42
43
44
45
### Speedup and Memory Savings

We present expected speedup (combined forward + backward pass) and memory savings from using FlashAttention against PyTorch standard attention, depending on sequence length.
We display FlashAttention speedup using these parameters (similar to BERT-base):
* Batch size 8
* Head dimension 64
* 12 attention heads
Dan Fu's avatar
Dan Fu committed
46

Dan Fu's avatar
Dan Fu committed
47
48
49
50
Our graphs show sequence lengths between 128 and 4096 (when standard attention runs out of memory on an A100), but FlashAttention can scale up to sequence length 64K.

#### Speedup

51
![FlashAttention speedup](assets/flashattn_speedup.jpg)
Dan Fu's avatar
Dan Fu committed
52
53
54
55
56
57

We generally see 2-4X speedup at sequence lengths between 128 and 4K, and we see more speedup when using dropout and masking, since we fuse the kernels.
At sequence lengths that are popular with language models like 512 and 1K, we see speedups up to 4X when using dropout and masking.

#### Memory

58
![FlashAttention memory](assets/flashattn_memory.jpg)
Dan Fu's avatar
Dan Fu committed
59
60
61
62
63

We show memory savings in this graph (note that memory footprint is the same no matter if you use dropout or masking).
Memory savings are proportional to sequence length -- since standard attention has memory quadratic in sequence length, whereas FlashAttention has memory linear in sequence length.
We see 10X memory savings at sequence length 2K, and 20X at 4K.
As a result, FlashAttention can scale to much longer sequence lengths.
Tri Dao's avatar
Tri Dao committed
64
65
66
67
68
69
70
71

### Acknowledgments
Our implementation uses Apex's
[FMHA](https://github.com/NVIDIA/apex/tree/master/apex/contrib/csrc/fmha) code
as a starting point.

We thank [Young-Jun Ko](https://yjk21.github.io/) for the in-depth explanation of his FMHA implementation
and for his thoughtful answers to our questions about CUDA.