Fast-DLLM: Training-Free Acceleration of Diffusion LLM

70 pointsposted 3 months ago
by nathan-barry

4 Comments

ProofHouse

3 months ago

Wait, under everything I’ve read about Diffusion Language Models and demos I’ve also seen and tried, inference is faster than traditional architectures. They state the opposite what gives?

gurtinator

3 months ago

Thats because those demos probably use parallel decoding. In principle, dLLM inference is slower since you have to do bidirectional generation over the whole generation window for each diffusion step. Example; you unmask one token in the 128 window for 128 diffusion steps to generate the full window.

yorwba

3 months ago

In particular, part of the paper is about dynamically adjusting the number of tokens generated in parallel while maintaining roughly the same output quality as one-token-at-a-time decoding. The other part is about the KV caching strategy they use to speed up parallel decoding further.

am17an

3 months ago

What is parallel decoding?