DLLM-TTS brings block diffusion to text-to-speech at 0.15 RTF

Text-to-speech systems have long faced a trade-off between two families of models. Autoregressive codec language models produce highly intelligible speech, but they need large-scale models and training data and decode audio tokens one at a time, which is slow. Non-autoregressive methods generate faster but sacrifice linguistic accuracy to get there.

A paper titled "DLLM-TTS: Block Discrete Diffusion Language Model for Text-to-Speech Synthesis" proposes a third path. The authors reformulate text-to-speech as conditional block discrete diffusion over tokens from the X-Codec2 neural audio codec. The model splits an audio sequence into blocks and applies masked diffusion inside each block, while still processing the blocks themselves in sequence. The stated goal is to let the model learn both local acoustic coherence, meaning smooth sound within a block, and global text-speech alignment across the whole sequence.

The payoff shows up at inference time: because tokens within a block are predicted in parallel rather than one by one, the system reaches a real-time factor (RTF) of 0.15, meaning it generates audio roughly six to seven times faster than the audio plays back. The authors trained a 0.6-billion-parameter version of the model on 20,000 hours of speech and report it achieves competitive performance on the SeedTTS-eval benchmark. They frame the result as evidence that block discrete diffusion language models can deliver practical, data-efficient speech synthesis while keeping parallel generation.

The paper lists seven authors, Wasim Madha, Nityanand Mathur, Hamees Sayed, Apoorv Singh, Sameer Khurana, Akshat Mandloi and Sudarshan Kamath, and was submitted to arXiv's Computation and Language and Artificial Intelligence categories on 19 June 2026. No institutional affiliations are given in the text, and the paper does not report a specific numeric score on SeedTTS-eval or a head-to-head RTF or accuracy comparison against any named competing system.

Key facts

  • Autoregressive TTS models are intelligible but slow to decode; non-autoregressive models are faster but less linguistically accurate, the paper's stated trade-off.
  • DLLM-TTS reformulates TTS as conditional block discrete diffusion over X-Codec2 neural audio codec tokens, applying masked diffusion within blocks that are processed sequentially.
  • Parallel token prediction within blocks gets the system a real-time factor of 0.15 at inference.
  • A 0.6B-parameter model trained on 20,000 hours of speech achieves what the authors call competitive performance on the SeedTTS-eval benchmark.
  • The paper, by seven authors led by Wasim Madha, was submitted to arXiv's cs.CL and cs.AI categories on 19 June 2026.

Why it matters

TTS research has been stuck choosing between autoregressive codec models, which sound accurate but decode token by token and need heavy compute, and non-autoregressive models, which are fast but less precise. DLLM-TTS's pitch is that block discrete diffusion, diffusing within small blocks while still moving through the sequence block by block, can capture both local sound quality and long-range text-to-speech alignment without giving up the speed of parallel generation. If that holds up under wider testing, it points to a middle path for a field that has mostly had to pick one side of the trade-off.

Who it affects

The result speaks mainly to speech synthesis researchers and engineers deciding which model family to build on: it introduces a specific alternative to standard autoregressive and non-autoregressive TTS architectures. It does not describe a released product or consumer-facing app, so end users of voice assistants or dubbing tools are not directly affected by this paper.

How to use it

This is a research paper, not a product release. The text gives no mention of code, model weights or a public demo being made available, so there is currently nothing outside the paper itself for others to run or test.

How solid is it

The source is the paper's own abstract, and its claims read as the authors' self-reported results rather than independent verification. It gives a concrete RTF figure (0.15) and training scale (0.6B parameters, 20K hours), but the benchmark result itself is described only qualitatively as competitive performance on SeedTTS-eval, without a specific score. No institutional affiliations are listed for any of the seven authors.

Risks and caveats

The paper gives no numeric comparison, RTF, word error rate, or mean opinion score, against any specific autoregressive or non-autoregressive baseline system, and no exact SeedTTS-eval score beyond the phrase competitive performance. It also does not specify which language or languages the model was trained or evaluated on. Without those comparisons, the strength of the claimed trade-off improvement cannot be independently judged from this text alone.