Papers › Dynamic-dLLM: Dynamic Cache-Budget and Adaptive Parallel Decoding for Training-Free...

Dynamic-dLLM: Dynamic Cache-Budget and Adaptive Parallel Decoding for Training-Free Acceleration of Diffusion LLM

27 May 2026arXiv:2606.26120added by Syntology

Tianyi Wu, Xiaoxi Sun, Yanhua Jiao, Yulin Li, Yixin Chen, YunHao Cao, YiQi Hu, Zhuotao Tian

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Diffusion Large Language Models (dLLMs) offer a promising alternative to autoregressive models, excelling in text generation tasks due to their bidirectional attention mechanisms. However, their computational complexity scales on the order of L cubed with the sequence length L. This poses significant challenges for long-sequence and real-time applications, primarily due to the lack of compatibility with key-value caching and the non-autoregressive nature of denoising steps. Existing acceleration methods rely on static caching or parallel decoding strategies, which fail to account for the dynamic behavior of token properties across layers and decoding steps. We propose Dynamic-dLLM, a training-free framework that enhances dLLM inference efficiency through two components: Dynamic Cache Updating (DCU), which adaptively allocates cache-update budgets based on layer-wise token dynamics, and Adaptive Parallel Decoding (APD), which dynamically calibrates decoding thresholds to balance generation quality and efficiency. Extensive experiments on models like LLaDA-8B-Instruct, LLaDA-1.5, and Dream-v0-7B-Instruct across benchmarks such as MMLU, GSM8K, and HumanEval demonstrate that Dynamic-dLLM significantly improves inference speed. It attains an average speedup exceeding 3 times while maintaining performance. Dynamic-dLLM outperforms state-of-the-art acceleration methods and provides a plug-and-play solution for efficient dLLM deployment without compromising performance. The code is available at https://github.com/TianyiWu233/DYNAMIC-DLLM.

PaperPDFCode 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="2606.26120")

Code

Syntology Ran 8 of 10 code samples harvested from 1 repository linked to this paper; 2 have no recorded run. Of those that ran: 1 ran · honoured contract; 1 ran · violated contract; 5 ran · our draft was wrong; 1 ran · fixture could not drive it.

By repository: found in paper text by Syntology: 10 samples from 1 repository, 8 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

TianyiWu233/DYNAMIC-DLLM found in paper text by Syntology report

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

10 samples harvested; 8 ran; 1 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.

1ran · honoured contract
1ran · violated contract
5ran · our draft was wrong
1ran · fixture could not drive it
2unverified

Licence: 10 of the 10 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 TianyiWu233/DYNAMIC-DLLM. “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.

_attention_wrapper TianyiWu233/DYNAMIC-DLLM/dynamic_dllm_cache/hooks/cache_hook_LLaDA.py found in paper text by Syntology ran · our draft was wrong no licence file found · pointer only · 10fe79d4a7caaf48 · report
_compute_mlp TianyiWu233/DYNAMIC-DLLM/dynamic_dllm_cache/hooks/cache_hook_LLaDA.py found in paper text by Syntology ran · our draft was wrong no licence file found · pointer only · 55841709d4ee0531 · report
_compute_sim_token TianyiWu233/DYNAMIC-DLLM/dynamic_dllm_cache/hooks/cache_hook_LLaDA.py found in paper text by Syntology ran · violated contract fingerprinted no licence file found · pointer only · 314ddc1217922a42 · report
_compute_sim_token_downsampled TianyiWu233/DYNAMIC-DLLM/dynamic_dllm_cache/hooks/cache_hook_LLaDA.py found in paper text by Syntology ran · fixture could not drive it fingerprinted no licence file found · pointer only · 13dc4f6eec46ff34 · report
_do_partial_selection TianyiWu233/DYNAMIC-DLLM/dynamic_dllm_cache/hooks/cache_hook_LLaDA.py found in paper text by Syntology ran · our draft was wrong no licence file found · pointer only · bb02ba746dbaf877 · report
_get_centered_window_indices TianyiWu233/DYNAMIC-DLLM/dynamic_dllm_cache/hooks/cache_hook_LLaDA.py found in paper text by Syntology ran · honoured contract fingerprinted no licence file found · pointer only · 815ac724e9bef02d · report
_project TianyiWu233/DYNAMIC-DLLM/dynamic_dllm_cache/hooks/cache_hook_LLaDA.py found in paper text by Syntology ran · our draft was wrong no licence file found · pointer only · 0fd0ee5ab17274d6 · report
_safe_layer_budget TianyiWu233/DYNAMIC-DLLM/dynamic_dllm_cache/hooks/cache_hook_LLaDA.py found in paper text by Syntology ran · our draft was wrong fingerprinted no licence file found · pointer only · 1c660e5a9b0d0106 · report
_cache_hook_feature_window_budget TianyiWu233/DYNAMIC-DLLM/dynamic_dllm_cache/hooks/cache_hook_LLaDA.py found in paper text by Syntology unverified no licence file found · pointer only · 6c53389a73948184 · report
_compute_sim_for_budget_full_refresh TianyiWu233/DYNAMIC-DLLM/dynamic_dllm_cache/hooks/cache_hook_LLaDA.py found in paper text by Syntology unverified no licence file found · pointer only · 27c0f30076de9715 · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2606.26120, was issued in June 2026, after that date, so the archive has no leaderboard rows for it.

Placed on leaderboards by Syntology Syntology

Syntology's extractor considered 2 leaderboards for this paper and placed the paper on none of them: 2 refused by a rule. What is not shown.

Syntology has checked 6,264 of the 9,581 papers on this site that are newer than the archive; results from the others appear after they are checked.

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