REVIEW 1 major objections 6 minor 44 references
LongCat Sparse Attention: Taming the Lightning via Streaming-aware Hierarchical Cross-Layer Indexing
T0 review · 1 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read LongCat Sparse Attention claims that the practical cost of learned sparse attention sits in its indexer—$O(L^2)$ scoring plus scattered memory access—and removes both by reserving contiguous sink and window tokens, sharing one indexer…
desk verdict Serious sparse-attention systems paper: good integration and scale, but 1M parity claims need per-length evidence. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the cross-layer distillation loss of Eq. (8), which sums the per-layer indexer distillation losses over all $N$ layers of a group so the owner layer's indexer learns to predict the joint attention pattern of the group, making index reuse safe. Two supporting objects carry the rest: the Hybrid Sparse Attention kernel, which runs the sliding-window branch and the dynamically sparse branch on separate hardware streams and merges them with online-softmax rescaling so that roughly half of all KV reads are contiguous, and the two-stage Hierarchical Indexer, which first recalls the top-$M$ pages of size $P = 128$ using mean-pooled sub-block scores and then scores tokens only inside those pages, reducing per-query selection cost from $O(L)$ to $O(L/P + M P)$. The fixed-to-dynamic budget split (16 sink tokens plus 1024 window tokens against 1024 indexer-chosen tokens) is what turns the observed streaming-mass structure into a hardware-aligned memory layout.
What would settle it
Measure an owner layer's top-K selection coverage on its reuse partner's attention at 256K–1M context on non-retrieval workloads such as long-document summarization or repository-code tasks; a material drop from the 93.2% coverage observed at 8K would break the cross-layer leg of the claim. A second, simpler test is to run the $N=2$ versus $N=4$ ablation at 1M context, since the paper's own results put success and failure only a factor of two apart.
Extended reading notes
Core claim
LSA's central claim is that retrieval-based sparse attention can be made practical by exploiting structure already present in full attention. The paper's measurements show that roughly 83% of head-averaged attention mass falls inside sink and sliding-window regions, and that adjacent transformer layers share 57.4% of their top-K token sets while reusing a neighbor layer's set still captures 93.2% of the target layer's attention mass. On that basis LSA converts about half of the sparse budget to fixed contiguous regions, shares a single indexer across each pair of layers under a group-wise distillation loss (Eq. 8) that trains the owner indexer to serve the whole group's attention patterns, and runs a two-stage page-then-token selection beyond 256K context. With a total budget of $K = 2048$, LSA is reported to match or slightly exceed full attention on long-context and general benchmarks at both model scales, while the streaming and cross-layer components cut attention-layer training latency to 1.53–1.61x over DSA and the hierarchical module speeds up the indexer up to 4.11x at 1024K.
Load-bearing premise
The cross-layer reuse premise: a single indexer trained with the group distillation loss can select tokens that preserve essentially all attention mass for every layer in its group, and this stability persists at one million tokens and across tasks rather than only in the 8K needle-style settings where the 93.2% coverage figure was measured.
Editorial extensions
If this is right
- Indexer cost stops scaling with the full context: a group size of $N=2$ halves the number of indexing passes, the fixed window shrinks the scoring range, and beyond 256K the hierarchical selector keeps prefill indexer latency nearly flat, reaching a 4.11x indexer speedup at 1024K.
- Native one-million-token training becomes a practical claim rather than an inference-only trick: the paper converts from dense attention at the 128K stage, trains sparsely through the 256K and 1M stages, and reports loss gaps to full attention below 0.5%.
- Speculative decoding inherits the savings: all three MTP draft steps share a single index set with negligible acceptance-length change (3.11 versus 3.15 for dense MLA), so draft quality does not pay for cross-layer reuse.
- The binding constraint moves from compute to memory: LSA does not reduce the KV-cache footprint, so at extreme contexts the remaining gains are capped by cache capacity and transfer, a limitation the paper states explicitly.
- Speedups compound with scale: LSA runs slightly slower than dense MLA below 64K but beats it by up to 7.73x per attention layer at 1024K, giving practitioners a clear crossover point for converting dense checkpoints.
Reading between the lines
- A testable ceiling follows from the $N=2$ versus $N=4$ ablation: the safe reuse depth is set by how fast layer saliency drifts, so models whose attention patterns diverge more across layers (deeper stacks, interleaved modality or tool layers) should need smaller groups, and that prediction could be checked against the coverage-versus-distance curve without retraining.
- The 1:1 fixed-to-dynamic budget was chosen for hardware alignment, and the ablation shows anything from 0% to 75% fixed preserves quality at 128K; a natural extension is that task mixtures heavy in code or mathematics, where attention is less streaming, may want a smaller fixed share.
- If LSA's framing is right, the next round of gains lies on the memory side: combining this indexer design with KV compression along the depth or sequence dimension would attack the constraint the paper itself names as remaining, since the compute-side savings are already largely banked.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper presents LongCat Sparse Attention (LSA), a hardware-algorithm co-designed sparse attention framework built on DeepSeek Sparse Attention (DSA). LSA combines three mechanisms: (1) Streaming-Aware Indexing (SI), which reserves roughly half of the attention budget for fixed sink and sliding-window regions to enable coalesced memory access; (2) Cross-Layer Indexing (CLI), which trains an indexer in the first layer of a group to serve all layers in the group via a cross-layer KL distillation loss, halving or further reducing indexer passes; and (3) Hierarchical Indexing (HI), a two-stage coarse-to-fine page/token selection that reduces indexing cost at long contexts. The authors validate LSA on LongCat-Flash-Lite (69B-A3B) and LongCat-Flash (560B-A27B), reporting quality parity with dense MLA on general and long-context benchmarks, training and inference speedups over DSA, and the release of LongCat-Flash-Lite-Sparse with native 1M-token context length. The central claim is that LSA preserves full-attention quality while substantially reducing indexing overhead.
Significance. If the parity claim holds, LSA is a practically relevant contribution: it directly attacks the two dominant bottlenecks of DSA-style sparse attention (non-coalesced gathers and quadratic indexer cost) with orthogonal, composable mechanisms, and it validates these at contest-scale model sizes (69B and 560B). The paper's strengths include an unusually thorough ablation program (budget splits, CLI group sizes, distillation ablations, HI pooling and recall ablations, conversion-timing robustness), a clear formal treatment of the three mechanisms in Sections 3.1-3.3, and the release of an open-source model (LongCat-Flash-Lite-Sparse). The cross-layer distillation loss (Eq. 8) is a clean, well-motivated modification of the DSA objective, and the streaming-budget analysis in Fig. 2 gives empirical grounding to SI. The main weakness is that the headline quality claim is not actually demonstrated at the longest lengths: the fixed HI candidate budget creates an increasingly aggressive recall constraint as context grows, and the experiments that would expose a length-dependent collapse (per-length scores at 512K and 1M, and a same-condition dense baseline at those lengths) are absent.
major comments (1)
- [Section 4.2, Fig. 4 and Tables 2-4] All latency and speedup numbers are measured on proprietary accelerators with kernels that are not released; the open-source model is released, but the custom kernels (HFA, the HI two-stage operator, KVP support) are not. This makes the efficiency claims difficult to reproduce independently. This is not a correctness error, but it should be stated more prominently in the limitations, and any publicly verifiable kernel-level details (e.g., pseudocode, memory-access patterns, or a reference implementation) would strengthen the paper.
minor comments (6)
- [Section 5.1] The text reads 'an-shot needle-in-a-haystack task'; this appears to be a typo for 'an n-shot needle-in-a-haystack task'.
- [Section 6.1] The heading 'Model Informations' should be 'Model Information'.
- [Table 11] The column header 'Method / Size' with values '1 4 8 16 32' is confusing; please clarify that rows are pooling methods and columns are pooling sizes.
- [Table 15] The table compares only Lite-Sparse (w/o HI) vs. Lite-Sparse (w/ HI) and reports length-averaged scores; please add a dense MLA column or an explicit statement that no same-condition dense baseline exists at these lengths, and provide per-length scores at least for the longest lengths.
- [Table 16] The Lite-Dense scores are imported from the LongCat-Flash-Lite technical report rather than measured under identical conditions; this should be stated in the caption or text, since the comparison is therefore not a same-harness evaluation.
- [Introduction and abstract] The abstract says LSA supports native training up to one million tokens, but the 560B model's maximum training length is 256K (Table 6) and the 1M claim is demonstrated only at the 69B scale; please qualify the claim accordingly.
Circularity Check
No circular derivation: LSA parity is tested against an external dense MLA baseline; minor self-citations and benchmark-driven hyperparameter choices are not load-bearing.
full rationale
The paper's central claim—that LSA performs on par with full attention—is established by comparing LSA against an external dense MLA baseline on HELMET and standard benchmarks (Tables 7 and 8), not by an equation that reduces to the method's own training objective. The indexer is trained by KL distillation (Eqs. 4-5, 8) toward the full-attention distribution, but downstream benchmark parity is not guaranteed by that objective and is measured on held-out tasks. The three mechanism choices (fixed streaming budget 50%, CLI group size N=2, HI recall M=1024) are selected through ablations against MLA and against the no-HI baseline; this is ordinary model selection, not a fitted parameter renamed as a prediction. The only self-citation of note is the Lite-Dense baseline in Table 16, imported from the LongCat-Flash-Lite technical report [Liu et al., 2026] with overlapping authors; it is not load-bearing because the core parity result is already established in-house against measured MLA in Tables 7-8. The fixed HI recall budget (M*P=131K tokens) at 1M context is a genuine robustness/correctness risk, but it is a limitation of the scheme, not a circular step: the paper's equations do not define the evaluation outcome in terms of the method's own outputs. No step in the derivation chain reduces to its own input or to a self-citation chain.
Assumptions & free parameters
free parameters (9)
- Ksink (sink budget) =
16
- Kswa (sliding window budget) =
1024
- Ksparse (dynamic budget) =
1024
- CLI group size N =
2
- HI page size P =
128
- HI sub-block size B =
8
- HI recall pages M =
1024
- HI disabled early indexers =
4
- HI enablement threshold =
>=256K
assumptions (5)
- domain assumption The sink and sliding-window regions capture a large and stable fraction of attention mass.
- domain assumption Salient token sets are stable across adjacent layers.
- domain assumption Mean-pooled sub-block keys provide a sufficient coarse recall signal.
- domain assumption The DSA indexer is the dominant latency bottleneck at long contexts and its scattered output limits HBM bandwidth.
- domain assumption Cross-layer distillation in Eq. (8) can jointly supervise one indexer for a group of layers without changing the rest of the model.
Cite this review
Pith. "Pith review of LongCat Sparse Attention: Taming the Lightning via Streaming-aware Hierarchical Cross-Layer Indexing." pith.science (2026). https://pith.science/paper/SHK7BCSQ
@misc{pith2026260801662,
author = {Pith},
title = {Pith review of: LongCat Sparse Attention: Taming the Lightning via Streaming-aware Hierarchical Cross-Layer Indexing},
year = {2026},
howpublished = {\url{https://pith.science/paper/SHK7BCSQ}},
note = {Machine review of arXiv:2608.01662}
}
abstract
DeepSeek Sparse Attention (DSA) enables efficient long-context modeling through its Lightning Indexer. However, practical deployment remains constrained by the indexer's expensive $O(L^2)$ scoring overhead and the hardware-inefficient, discontinuous memory-access patterns induced by its outputs. To address these system-level bottlenecks, we introduce LongCat Sparse Attention (LSA), a hardware-algorithm co-designed framework comprising three complementary and orthogonal strategies: (1) Streaming-Aware Indexing, which selectively converts scattered KV entries into hardware-aligned contiguous layouts to enable coalesced HBM access; (2) Cross-Layer Indexing, which amortizes indexing overhead by reusing the results produced by a single layer across consecutive layers, supported by cross-layer distillation; and (3) Hierarchical Indexing, which adopts a coarse-to-fine scoring scheme to progressively narrow the candidate set for each query, thereby substantially reducing indexing computation. Extensive scaling experiments, ranging from 69B-A3B to 560B-A27B models, demonstrate that LSA consistently achieves performance on par with full attention across both general-purpose and long-context benchmarks. Moreover, LSA supports native training with context lengths of up to one million tokens and underpins the development of LongCat-2.0 (1.6T-A48B). To facilitate further research, we also introduce and open-source LongCat-Flash-Lite-Sparse (69B-A3B), which integrates LSA into LongCat-Flash-Lite and incorporates an updated long-context training corpus.
Figures
Figures from the paper (15 more)
Reference graph
Works this paper leans on
-
[5]
Scaling embeddings outperforms scaling experts in language models.arXiv preprint arXiv:2601.21204,
Hong Liu, Jiaqi Zhang, Chao Wang, Xing Hu, Linkun Lyu, Jiaqi Sun, Xurui Yang, Bo Wang, Fengcun Li, Yulei Qian, et al. Scaling embeddings outperforms scaling experts in language models.arXiv preprint arXiv:2601.21204,
-
[6]
Generating long sequences with sparse transformers.arXiv preprint arXiv:1904.10509,
Rewon Child, Scott Gray, Alec Radford, and Ilya Sutskever. Generating long sequences with sparse transformers.arXiv preprint arXiv:1904.10509,
arXiv 1904
-
[8]
One of the special magic uuids for <key> is: <value>
The indexer K cache and attention KV cache are sharded across KVP ranks at page granularity. Before processing each chunk, the complete cache blocks are all-gathered so that every rank can attend to the full context. • Decoding.Decoding uses a 4K chunk size. Short-context requests are served with data-parallel attention and expert parallelism (DP=16, EP=1...
-
[9]
Jingyang Yuan, Huazuo Gao, Damai Dai, Junyu Luo, Liang Zhao, Zhengyan Zhang, Zhenda Xie, Y . X. Wei, Lean Wang, Zhiping Xiao, et al. Native sparse attention: Hardware-aligned and natively trainable sparse attention.arXiv preprint arXiv:2502.11089,
-
[10]
Fast transformer decoding: One write-head is all you need.arXiv preprint arXiv:1911.02150,
Noam Shazeer. Fast transformer decoding: One write-head is all you need.arXiv preprint arXiv:1911.02150,
arXiv 1911
-
[11]
Aixin Liu, Bei Feng, Bin Wang, Bingxuan Wang, Bo Liu, Chenggang Zhao, Chengqi Deng, Chong Ruan, Damai Dai, Daya Guo, et al. Deepseek-v2: A strong, economical, and efficient mixture-of-experts language model.arXiv preprint arXiv:2405.04434, 2024b. Aixin Liu, Bei Feng, Bing Xue, Bingxuan Wang, Bochao Wu, Chengda Lu, Chenggang Zhao, Chengqi Deng, Chenyu Zhan...
-
[12]
Longcat-flash technical report.arXiv preprint arXiv:2509.01322,
Meituan LongCat Team, Bei Li, Bingye Lei, Bo Wang, Bolin Rong, Chao Wang, Chao Zhang, Chen Gao, Chen Zhang, Cheng Sun, et al. Longcat-flash technical report.arXiv preprint arXiv:2509.01322,
-
[13]
24 LongCat Sparse Attention Yushi Bai, Qian Dong, Ting Jiang, Xin Lv, Zhengxiao Du, Aohan Zeng, Jie Tang, and Juanzi Li. Indexcache: Accelerating sparse attention via cross-layer index reuse.arXiv preprint arXiv:2603.12201,
Show all 44 references
-
[14]
Helmet: How to evaluate long-context language models effectively and thoroughly.arXiv preprint arXiv:2410.02694,
Howard Yen, Tianyu Gao, and Danqi Chen. Helmet: How to evaluate long-context language models effectively and thoroughly.arXiv preprint arXiv:2410.02694,
-
[15]
Ruler: What’s the real context size of your long-context language models?arXiv preprint arXiv:2404.06654,
Cheng-Ping Hsieh, Simeng Sun, Samuel Kriman, Shantanu Acharya, Dima Rekesh, Fei Jia, Yang Zhang, and Boris Gins- burg. Ruler: What’s the real context size of your long-context language models?arXiv preprint arXiv:2404.06654,
-
[16]
Cohen, Ruslan Salakhutdinov, and Christopher D
Zhilin Yang, Peng Qi, Saizheng Zhang, Yoshua Bengio, William W. Cohen, Ruslan Salakhutdinov, and Christopher D. Manning. HotpotQA: A dataset for diverse, explainable multi-hop question answering. InProceedings of the 2018 Conference on Empirical Methods in Natural Language Pro...
2018
-
[19]
Xinrong Zhang, Yingfa Chen, Shengding Hu, Zihang Xu, Junhao Chen, Moo Khai Hao, Xu Han, Zhen Leng Thai, Shuo Wang, Zhiyuan Liu, and Maosong Sun
doi:10.1162/tacl_a_00023. Xinrong Zhang, Yingfa Chen, Shengding Hu, Zihang Xu, Junhao Chen, Moo Khai Hao, Xu Han, Zhen Leng Thai, Shuo Wang, Zhiyuan Liu, and Maosong Sun. ∞bench: Extending long context evaluation beyond 100k tokens.arXiv preprint arXiv:2402.13718,
-
[20]
Enabling large language models to generate text with citations
Tianyu Gao, Howard Yen, Jiatong Yu, and Danqi Chen. Enabling large language models to generate text with citations. InProceedings of the 2023 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 6465–6488,
2023
-
[21]
ASQA: Factoid questions meet long-form answers
Ivan Stelmakh, Yi Luan, Bhuwan Dhingra, and Ming-Wei Chang. ASQA: Factoid questions meet long-form answers. InProceedings of the 2022 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 8273–8288,
2022
-
[23]
Gonzalez, Ion Stoica, Xuezhe Ma, and Hao Zhang
Dacheng Li, Rulin Shao, Anze Xie, Ying Sheng, Lianmin Zheng, Joseph E. Gonzalez, Ion Stoica, Xuezhe Ma, and Hao Zhang. How long can open-source llms truly promise on context length?, June 2023a. URL https: //lmsys.org/blog/2023-06-29-longchat. Dan Hendrycks, Collin Burns, Stev...
2023 arXiv
-
[24]
Cmmlu: Measuring massive multitask language understanding in chinese.arXiv preprint arXiv:2306.09212, 2023b
Haonan Li, Yixuan Zhang, Fajri Koto, Yifei Yang, Hai Zhao, Yeyun Gong, Nan Duan, and Timothy Baldwin. Cmmlu: Measuring massive multitask language understanding in chinese.arXiv preprint arXiv:2306.09212, 2023b. Yuzhen Huang, Yuzhuo Bai, Zhihao Zhu, Junlei Zhang, Jinghan Zhang,...
-
[25]
David Rein, Betty Li Hou, Asa Cooper Stickland, Jackson Petty, Richard Yuanzhe Pang, Julien Dirani, Julian Michael, and Samuel R. Bowman. Gpqa: A graduate-level google-proof q&a benchmark.arXiv preprint arXiv:2311.12022,
-
[26]
Measuring mathematical problem solving with the math dataset.Advances in Neural Information Processing Systems, 34, 2021b
25 LongCat Sparse Attention Dan Hendrycks, Collin Burns, Saurav Kadavath, Akul Arora, Steven Basart, Eric Tang, Dawn Song, and Jacob Steinhardt. Measuring mathematical problem solving with the math dataset.Advances in Neural Information Processing Systems, 34, 2021b. MAA. Aime 2024,
2024
-
[27]
URL https://maa.org/math-competitions/ american-invitational-mathematics-examination-aime. MAA. Aime 2025,
2025
-
[28]
Naman Jain, King Han, Alex Gu, Wen-Ding Li, Fanjia Yan, Tianjun Zhang, Sida Wang, Armando Solar-Lezama, Koushik Sen, and Ion Stoica
doi:10.1145/3597926.3598030. Naman Jain, King Han, Alex Gu, Wen-Ding Li, Fanjia Yan, Tianjun Zhang, Sida Wang, Armando Solar-Lezama, Koushik Sen, and Ion Stoica. Livecodebench: Holistic and contamination free evaluation of large language models for code.arXiv preprint arXiv:24...
-
[29]
Asynctls: Efficient generative llm inference with asynchronous two-level sparse attention.arXiv preprint arXiv:2604.07815,
Yuxuan Hu, Jianchao Tan, Jiaqi Zhang, Wen Zan, Pingwei Sun, Yifan Lu, Yerui Sun, Yuchen Xie, Xunliang Cai, and Jing Zhang. Asynctls: Efficient generative llm inference with asynchronous two-level sparse attention.arXiv preprint arXiv:2604.07815,
-
[30]
Hisa: Efficient hierarchical indexing for fine-grained sparse attention.arXiv preprint arXiv:2603.28458, 2026a
Yufei Xu, Fanxu Meng, Fan Jiang, Yuxuan Wang, Ruijie Zhou, Zhaohui Wang, Jiexi Wu, Zhixin Pan, Xiaojuan Tang, Wenjie Pei, et al. Hisa: Efficient hierarchical indexing for fine-grained sparse attention.arXiv preprint arXiv:2603.28458, 2026a. Deli Huang, Cunguang Wang, Hongyin T...
-
[31]
Graphwalks dataset, 2025b
OpenAI. Graphwalks dataset, 2025b. URLhttps://huggingface.co/datasets/openai/graphwalks. Jinhyuk Lee, Anthony Chen, Zhuyun Dai, Dheeru Dua, Devendra Singh Sachan, Michael Boratko, Yi Luan, Sébastien MR Arnold, Vincent Perot, Siddharth Dalmia, et al. Can long-context language m...
-
[32]
Cheng Jiayang, Dongyu Ru, Lin Qiu, Yiyang Li, Xuezhi Cao, Yangqiu Song, and Xunliang Cai
URL https://arxiv.org/ abs/2505.07897. Cheng Jiayang, Dongyu Ru, Lin Qiu, Yiyang Li, Xuezhi Cao, Yangqiu Song, and Xunliang Cai. Amemgym: Interactive memory benchmarking for assistants in long-horizon conversations. InThe Fourteenth International Conference on Learning Represe...
-
[33]
Yushi Bai, Shangqing Tu, Jiajie Zhang, Hao Peng, Xiaozhi Wang, Xin Lv, Shulin Cao, Jiazheng Xu, Lei Hou, Yuxiao Dong, Jie Tang, and Juanzi Li
URLhttps://openreview.net/forum?id=sfrVLzsmlf. Yushi Bai, Shangqing Tu, Jiajie Zhang, Hao Peng, Xiaozhi Wang, Xin Lv, Shulin Cao, Jiazheng Xu, Lei Hou, Yuxiao Dong, Jie Tang, and Juanzi Li. Longbench v2: Towards deeper understanding and reasoning on realistic long-context mult...
-
[34]
Carlos E Jimenez, John Yang, Alexander Wettig, Shunyu Yao, Kexin Pei, Ofir Press, and Karthik Narasimhan
URLhttps://artificialanalysis.ai/articles/announcing-aa-lcr. Carlos E Jimenez, John Yang, Alexander Wettig, Shunyu Yao, Kexin Pei, Ofir Press, and Karthik Narasimhan. Swe-bench: Can language models resolve real-world github issues?arXiv preprint arXiv:2310.06770,
-
[35]
τ 2-bench: Evaluating conversational agents in a dual-control environment.arXiv preprint arXiv:2506.07982,
Victor Barres, Honghua Dong, Soham Ray, Xujie Si, and Karthik Narasimhan. τ 2-bench: Evaluating conversational agents in a dual-control environment.arXiv preprint arXiv:2506.07982,
-
[36]
Vitabench: Benchmarking llm agents with versatile interactive tasks in real-world applications.arXiv preprint arXiv:2509.26490,
Wei He, Yueqing Sun, Hongyan Hao, Xueyuan Hao, Zhikang Xia, Qi Gu, Chengcheng Han, Dengchang Zhao, Hui Su, Kefeng Zhang, Man Gao, Xi Su, Xiaodong Cai, Xunliang Cai, Yu Yang, and Yunke Zhao. Vitabench: Benchmarking llm agents with versatile interactive tasks in real-world appli...
-
[37]
Mcp-atlas: A large-scale benchmark for tool-use competency with real mcp servers.arXiv preprint arXiv:2602.00933,
Chaithanya Bandi, Ben Hertzberg, Geobio Boo, Tejas Polakam, Jeff Da, Sami Hassaan, Manasi Sharma, Andrew Park, Ernesto Hernandez, Dan Rambado, et al. Mcp-atlas: A large-scale benchmark for tool-use competency with real mcp servers.arXiv preprint arXiv:2602.00933,
-
[38]
Browsecomp: A simple yet challenging benchmark for browsing agents
26 LongCat Sparse Attention Jason Wei, Zhiqing Sun, Spencer Papay, Scott McKinney, Jeffrey Han, Isa Fulford, Hyung Won Chung, Alex Tachard Passos, William Fedus, and Amelia Glaese. Browsecomp: A simple yet challenging benchmark for browsing agents. arXiv preprint arXiv:2504.12516,
-
[39]
Browsecomp-zh: Benchmarking web browsing ability of large language models in chinese.arXiv preprint arXiv:2504.19314,
Peilin Zhou, Bruce Leon, Xiang Ying, Can Zhang, Yifan Shao, Qichen Ye, Dading Chong, Zhiling Jin, Chenxuan Xie, Meng Cao, Yuxin Gu, Sixin Hong, Jing Ren, Jian Chen, Chao Liu, and Yining Hua. Browsecomp-zh: Benchmarking web browsing ability of large language models in chinese.a...
-
[40]
Jasper Dekoninck, Nikola Jovanovi ´c, Tim Gehrunger, Kári Rögnvaldsson, Ivo Petrov, Chenhao Sun, and Martin Vechev
URLhttps://github.com/AGI-Eval-Official/RW-Search. Jasper Dekoninck, Nikola Jovanovi ´c, Tim Gehrunger, Kári Rögnvaldsson, Ivo Petrov, Chenhao Sun, and Martin Vechev. Beyond benchmarks: Matharena as an evaluation platform for mathematics with llms.arXiv preprint arXiv:2605.00674,
-
[41]
Thang Luong, Dawsen Hwang, Hoang H
URL https://huggingface.co/datasets/ByteDance-Seed/BeyondAIME. Thang Luong, Dawsen Hwang, Hoang H. Nguyen, Golnaz Ghiasi, Yuri Chervonyi, Insuk Seo, Junsu Kim, Garrett Bingham, Jonathan Lee, Swaroop Mishra, Alex Zhai, Clara Huiyi Hu, Henryk Michalewski, Jimin Kim, Jeonghyun Ah...
-
[42]
Deepseek-v4: Towards highly efficient million-token context intelligence.arXiv preprint arXiv:2606.19348, 2026b
Anyi Xu, Bangcai Lin, Bing Xue, Bingxuan Wang, Bingzheng Xu, Bochao Wu, Bowei Zhang, Chaofan Lin, Chen Dong, Chenchen Ling, et al. Deepseek-v4: Towards highly efficient million-token context intelligence.arXiv preprint arXiv:2606.19348, 2026b. 27 LongCat Sparse Attention A Tra...
-
[44]
Red brackets above the panel mark the key spans of the task description, the target needle line, and the question
Color is the per-(query, key) attention weight, linearly clipped to [0,10 −3] to reveal weak long-range dependencies (the true maximum is ∼0.26). Red brackets above the panel mark the key spans of the task description, the target needle line, and the question. The question que...
-
[2017]
Deepseek-v3.2-exp: Boosting long-context efficiency with deepseek sparse attention.Technical Report, 2025a
DeepSeek-AI. Deepseek-v3.2-exp: Boosting long-context efficiency with deepseek sparse attention.Technical Report, 2025a. URLhttps://github.com/deepseek-ai/DeepSeek-V3.2-Exp. DeepSeek-AI. Deepseek-v3.2: Pushing the frontier of open large language models.arXiv preprint arXiv:251...
-
[2018]
Alex Mallen, Akari Asai, Victor Zhong, Rajarshi Das, Daniel Khashabi, and Hannaneh Hajishirzi
doi:10.18653/v1/D18-1259. Alex Mallen, Akari Asai, Victor Zhong, Rajarshi Das, Daniel Khashabi, and Hannaneh Hajishirzi. When not to trust language models: Investigating effectiveness of parametric and non-parametric memories. InProceedings of the 61st Annual Meeting of the As...
-
[2019]
Peters, and Arman Cohan
Iz Beltagy, Matthew E. Peters, and Arman Cohan. Longformer: The long-document transformer.arXiv preprint arXiv:2004.05150,
2004 arXiv
-
[2020]
Retrievalattention: Accelerating long-context llm inference via vector retrieval.arXiv preprint arXiv:2409.10516, 2024a
Di Liu, Meng Chen, Baotong Lu, Huiqiang Jiang, Zhenhua Han, Qianxi Zhang, Qi Chen, Chengruidong Zhang, Bailu Ding, Kai Zhang, et al. Retrievalattention: Accelerating long-context llm inference via vector retrieval.arXiv preprint arXiv:2409.10516, 2024a. Enzhe Lu, Zhejun Jiang,...
-
[2022]
QAMPARI: An open-domain question answering benchmark for questions with many answers from multiple paragraphs.arXiv preprint arXiv:2205.12665,
Samuel Joseph Amouyal Ohad Rubin, Ori Yoran, Tomer Wolfson, Jonathan Herzig, and Jonathan Berant. QAMPARI: An open-domain question answering benchmark for questions with many answers from multiple paragraphs.arXiv preprint arXiv:2205.12665,
-
[2023]
Payal Bajaj, Daniel Campos, Nick Craswell, Li Deng, Jianfeng Gao, Xiaodong Liu, Rangan Majumder, Andrew McNamara, Bhaskar Mitra, Tri Nguyen, et al
doi:10.18653/v1/2023.acl-long.546. Payal Bajaj, Daniel Campos, Nick Craswell, Li Deng, Jianfeng Gao, Xiaodong Liu, Rangan Majumder, Andrew McNamara, Bhaskar Mitra, Tri Nguyen, et al. Ms marco: A human generated machine reading comprehension dataset.arXiv preprint arXiv:1611.09268,
2023 arXiv
-
[2024]
Kascade: A practical sparse attention method for long-context llm inference.arXiv preprint arXiv:2512.16391,
Dhruv Deshmukh, Saurabh Goyal, Nipun Kwatra, and Ramachandran Ramjee. Kascade: A practical sparse attention method for long-context llm inference.arXiv preprint arXiv:2512.16391,
-
[2025]
Hysparse: A hybrid sparse attention architecture with oracle token selection and kv cache sharing
Yizhao Gao, Jianyu Wei, Qihao Zhang, Yu Cheng, Shimao Chen, Zhengju Tang, Zihan Jiang, Yifan Song, Hailin Zhang, Liang Zhao, et al. Hysparse: A hybrid sparse attention architecture with oracle token selection and kv cache sharing. arXiv preprint arXiv:2602.03560,
-
[2026]
Efficient streaming language models with attention sinks.International Conference on Learning Representations, 2024a
Guangxuan Xiao, Yuandong Tian, Beidi Chen, Song Han, and Mike Lewis. Efficient streaming language models with attention sinks.International Conference on Learning Representations, 2024a. Guangxuan Xiao, Jiaming Tang, Jingwei Zuo, Junxian Guo, Shang Yang, Haotian Tang, Yao Fu, ...
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.