STDec: Spatio-Temporal Stability Guided Decoding for dLLMs

arXiv cs.CL / 4/9/2026

💬 OpinionSignals & Early TrendsIdeas & Deep AnalysisModels & Research

Key Points

  • The paper introduces STDec, a spatio-temporal stability guided decoding method for diffusion LLMs (dLLMs) to improve decoding efficiency beyond a single global confidence threshold.
  • STDec leverages observed stability properties in dLLM decoding, using spatial-aware token-adaptive thresholds from neighboring decoded states and temporal-aware threshold relaxation when token IDs remain consistent across denoising steps.
  • The approach is training-free and is designed to be compatible with cache-based acceleration techniques, aiming to increase throughput without retraining.
  • Experiments on textual reasoning and multimodal understanding benchmarks show substantial throughput gains while maintaining comparable task performance, including up to 14.17x speedup on MBPP with LLaDA.
  • The method’s main contribution is explicitly modeling local (spatial) context and temporal consistency during decoding for dLLMs.

Abstract

Diffusion Large Language Models (dLLMs) have achieved rapid progress, viewed as a promising alternative to the autoregressive paradigm. However, most dLLM decoders still adopt a global confidence threshold, and do not explicitly model local context from neighboring decoded states or temporal consistency of predicted token IDs across steps. To address this issue, we propose a simple spatio-temporal stability guided decoding approach, named STDec. We observe strong spatio-temporal stability in dLLM decoding: newly decoded tokens tend to lie near decoded neighbors, and their predicted IDs often remain consistent across several denoising steps. Inspired by this stability, our STDec includes spatial-aware decoding and temporal-aware decoding. The spatial-aware decoding dynamically generates the token-adaptive threshold by aggregating the decoded states of nearby tokens. The temporal-aware decoding relaxes the decoding thresholds for tokens whose predicted token IDs remain consistent over denoising steps. Our STDec is training-free and remains compatible with cache-based acceleration methods. Across textual reasoning and multimodal understanding benchmarks, STDec substantially improves throughput while maintaining comparable task performance score. Notably, on MBPP with LLaDA, STDec achieves up to 14.17x speedup with a comparable score. Homepage: https://yzchen02.github.io/STDec.