Papers › FlashAttention-3: Fast and Accurate Attention with Asynchrony and Low-precision

FlashAttention-3: Fast and Accurate Attention with Asynchrony and Low-precision

11 Jul 2024arXiv:2407.08608archive 2025-07-28

Jay Shah, Ganesh Bikshandi, Ying Zhang, Vijay Thakkar, Pradeep Ramani, Tri Dao

Attention, as a core layer of the ubiquitous Transformer architecture, is the bottleneck for large language models and long-context applications. FlashAttention elaborated an approach to speed up attention on GPUs through minimizing memory reads/writes. However, it has yet to take advantage of new capabilities present in recent hardware, with FlashAttention-2 achieving only 35% utilization on the H100 GPU. We develop three main techniques to speed up attention on Hopper GPUs: exploiting asynchrony of the Tensor Cores and TMA to (1) overlap overall computation and data movement via warp-specialization and (2) interleave block-wise matmul and softmax operations, and (3) block quantization and incoherent processing that leverages hardware support for FP8 low-precision. We demonstrate that our method, FlashAttention-3, achieves speedup on H100 GPUs by 1.5-2.0× with FP16 reaching up to 740 TFLOPs/s (75% utilization), and with FP8 reaching close to 1.2 PFLOPs/s. We validate that FP8 FlashAttention-3 achieves 2.6× lower numerical error than a baseline FP8 attention.

PaperPDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2407.08608")

Code

Syntology Ran 16 of 18 code samples harvested from 1 repository linked to this paper; 2 have no recorded run. Of those that ran: 2 ran · honoured contract; 1 ran · fixture could not drive it; 13 ran with no contract checked.

By repository: official repository: 18 samples from 1 repository, 16 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

dao-ailab/flash-attention officialmentioned in paperpytorchBSD-3-Clause report
sandai-org/magiattention mentioned on GitHubpytorch report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

18 samples harvested; 16 ran; 2 honoured the contract we drafted; 2 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

2ran · honoured contract
1ran · fixture could not drive it
13ran
2unverified

Licence: 0 of the 18 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from dao-ailab/flash-attention. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

apply_rotary_emb_torch dao-ailab/flash-attention/flash_attn/layers/rotary.py official repository ran BSD-3-Clause (permissive) · 5ec949977c334f87 · report
attention_pytorch dao-ailab/flash-attention/flash_attn/cute/benchmark_flash_attention_fp8.py official repository ran · fixture could not drive it fingerprinted BSD-3-Clause (permissive) · 4afe00a5853d633f · report
attention_pytorch dao-ailab/flash-attention/benchmarks/benchmark_flash_attention.py official repository ran BSD-3-Clause (permissive) · 942ce4d7b0714c0a · report
convert_blockmask dao-ailab/flash-attention/flash_attn/flash_blocksparse_attn_interface.py official repository ran BSD-3-Clause (permissive) · cc628b160e090ba1 · report
efficiency dao-ailab/flash-attention/flash_attn/cute/benchmark_flash_attention_fp8.py official repository ran · honoured contract fingerprinted BSD-3-Clause (permissive) · f29cb637db3ec374 · report
efficiency dao-ailab/flash-attention/benchmarks/benchmark_flash_attention.py official repository ran fingerprinted BSD-3-Clause (permissive) · b5de75d142329f03 · report
flash_attn_qkvpacked_func dao-ailab/flash-attention/flash_attn/flash_attn_interface.py official repository ran BSD-3-Clause (permissive) · 7541ce9614862680 · report
flops dao-ailab/flash-attention/flash_attn/cute/benchmark_flash_attention_fp8.py official repository ran · honoured contract fingerprinted BSD-3-Clause (permissive) · e73bdfbda28da341 · report
flops dao-ailab/flash-attention/benchmarks/benchmark_flash_attention.py official repository ran BSD-3-Clause (permissive) · 8d5fb28ca2f46eb8 · report
init_to_zero dao-ailab/flash-attention/flash_attn/flash_attn_triton.py official repository ran BSD-3-Clause (permissive) · 1586b639a5abd0b0 · report
maybe_contiguous dao-ailab/flash-attention/flash_attn/flash_attn_interface.py official repository ran fingerprinted BSD-3-Clause (permissive) · 19ad2ccd82e378c1 · report
pad_input dao-ailab/flash-attention/flash_attn/bert_padding.py official repository ran BSD-3-Clause (permissive) · a8cf6124094beaab · report
rotate_half dao-ailab/flash-attention/flash_attn/layers/rotary.py official repository ran fingerprinted BSD-3-Clause (permissive) · 163292f43a3c861b · report
round_multiple dao-ailab/flash-attention/flash_attn/flash_attn_interface.py official repository ran fingerprinted BSD-3-Clause (permissive) · a0595f1c95cacf06 · report
unpad_input dao-ailab/flash-attention/flash_attn/bert_padding.py official repository ran BSD-3-Clause (permissive) · d84093c20a0ed8fd · report
unpad_input_for_concatenated_sequences dao-ailab/flash-attention/flash_attn/bert_padding.py official repository ran fingerprinted BSD-3-Clause (permissive) · 62394c842aafb022 · report
convert_to_cudnn_type dao-ailab/flash-attention/hopper/benchmark_flash_attention_fp8.py official repository unverified BSD-3-Clause (permissive) · a9519adef33152bb · report
cudnn_spda_setup dao-ailab/flash-attention/hopper/benchmark_flash_attention_fp8.py official repository unverified BSD-3-Clause (permissive) · 58ebcd8dbefa010d · report

Tasks

Quantization

1 archive task tag without a task page not shown.

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Methods

Absolute Position EncodingsAdamAttentionBPEDense ConnectionsDropoutLabel SmoothingLayer NormalizationLinear LayerMulti-Head AttentionPosition-Wise Feed-Forward LayerResidual ConnectionSPEEDSoftmaxTransformer

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections