Implementation of the sparse attention pattern proposed by the Deepseek team in their "Native Sparse Attention" paper
Last updated Jul 24, 2026
811
Stars
53
Forks
12
Issues
0
Stars/day
Attention Score
63
Language breakdown
Python 100.0%
โธ Files
click to expand
README

Native Sparse Attention
Implementation of the sparse attention pattern proposed by the Deepseek team in their Native Sparse Attention paper
This will be my last open sourced project under Meta
Appreciation
- Phil Tillet for democratizing CUDA kernel hacking with Triton
- Flex Attention for allowing for rapid prototyping
- @Mr-Grin for the code review and pointing out an inaccuracy with the implementation
- Eric Pasewark for submitting a simple transformer based compression network
- @Mr-Grin for a pull request that fixes compression block hyperparameters
- @StrongSpoon for a memory access guard
Install
$ pip install native-sparse-attention-pytorch
Usage
import torch
from nativesparseattention_pytorch import SparseAttention
attn = SparseAttention( dim = 512, dim_head = 64, heads = 8, slidingwindowsize = 2, compressblocksize = 4, compressblocksliding_stride = 2, selectionblocksize = 4, numselectedblocks = 2 )
tokens = torch.randn(2, 31, 512)
attended = attn(tokens)
assert tokens.shape == attended.shape
Example
Enwik8 language modeling
$ pip install .[examples]
Then
$ python train.py
To record some of your experiments, just invoke wandb login first before modifying the training script
Citations
@inproceedings{Yuan2025NativeSA,
title = {Native Sparse Attention: Hardware-Aligned and Natively Trainable Sparse Attention},
author = {Jingyang Yuan and Huazuo Gao and Damai Dai and Junyu Luo and Liang Zhao and Zhengyan Zhang and Zhenda Xie and Y. X. Wei and Lean Wang and Zhiping Xiao and Yuqing Wang and Chong Ruan and Ming Zhang and Wenfeng Liang and Wangding Zeng},
year = {2025},
url = {https://api.semanticscholar.org/CorpusID:276408911}
}
@inproceedings{Keles2022OnTC,
title = {On The Computational Complexity of Self-Attention},
author = {Feyza Duman Keles and Pruthuvi Maheshakya Wijewardena and Chinmay Hegde},
booktitle = {International Conference on Algorithmic Learning Theory},
year = {2022},
url = {https://api.semanticscholar.org/CorpusID:252198880}
}๐ More in this category