paper-with-me

Papers

Cluster-Level Attention-Guided Parallel Decoding for Masked Diffusion Language Models

2026-05-28 · Heqiang Qi, Wei Huang, Mingyuan Bai, Xiangming Meng arxiv

Masked diffusion language models (MDLMs) enable parallel decoding by predicting all masked positions at each denoising step, yet existing training-free samplers usually decide which positions to commit at token-level granularity. We revisit this granularity and observe that reliable predictions often emerge as contiguous high-confidence spans, suggesting that the unit of parallel commitment can be larger than a single token. We first group adjacent high-confidence candidates into confidence-induced clusters (CICs) as span-level update units. We then use self-attention maps from the same forward pass to estimate inter-cluster dependencies, enabling conflict-aware selection of mutually compatible CICs for parallel commitment. This yields CLAD (Cluster-Level Attention-Guided Decoding), a training-free cluster-level decoder for MDLMs. Experiments on LLaDA and Dream model families across four reasoning and code-generation benchmarks show that CLAD achieves 1.77x--8.47x speedups over Vanilla decoding while maintaining broadly comparable task accuracy in most settings.

📄 PDF Abstract BibTeX arXiv:2605.29607

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

ParallelVLM: Lossless Video-LLM Acceleration with Visual Alignment Aware Parallel Speculative Decoding

2026-03-20 · Quan Kong, Yuhao Shen, Yicheng Ji, Huan Li 외 arxiv

Although current Video-LLMs achieve impressive performance in video understanding tasks, their autoregressive decoding efficiency remains constrained by the massive number of video tokens. Visual token pruning can partia…

FlexDraft: Flexible Speculative Decoding via Attention Tuning and Bonus-Guided Calibration

2026-05-19 · Yaojie Zhang, Jianuo Huang, Junlong Ke, Yuhang Han 외 arxiv

Speculative decoding accelerates memory-bound LLM inference without quality degradation by using a fast drafter to propose multiple candidate tokens and the target model to verify them in parallel. However, conventional …

Continual Pretraining

Sparse Attention Remapping with Clustering for Efficient LLM Decoding on PIM

2025-05-09 · Zehao Fan, Garrett Gagnon, Zhenyu Liu, Liu Liu

Transformer-based models are the foundation of modern machine learning, but their execution, particularly during autoregressive decoding in large language models (LLMs), places significant pressure on memory systems due …

ClusteringSemantic SimilaritySemantic Textual Similarity

Vegas: Self-Speculative Decoding with Verification-Guided Sparse Attention

2026-02-06 · Yikang Yue, Yuqi Xue, Jian Huang arxiv

Long-context large language model (LLM) inference has become the norm for today's AI applications. However, it is severely bottlenecked by the increasing memory demands of its KV cache. Previous works have shown that sel…

Hardware-Efficient Attention for Fast Decoding

2025-05-27 · Ted Zadouri, Hubert Strauss, Tri Dao

LLM decoding is bottlenecked for large batches and long contexts by loading the key-value (KV) cache from high-bandwidth memory, which inflates per-token latency, while the sequential nature of decoding limits parallelis…