Apple study compares diffusion and autoregressive language models on performance and scaling trade-offs
Researchers find diffusion models can raise arithmetic intensity via parallel token generation but struggle with long-context scaling unless block-wise decoding is used.
1 source · cross-referenced
- Apple ML Research published a study comparing diffusion and autoregressive language models across performance, throughput, and scaling.
- Diffusion models generate tokens in parallel, which can increase arithmetic intensity but face challenges with long-context scaling.
- Block-wise decoding for diffusion models decouples arithmetic intensity from sequence length and improves scaling to long contexts.
- Batched inference favors autoregressive models due to better parallelism across sequences.
- Reducing sampling steps is identified as key to lowering diffusion model latency relative to autoregressive models.
Apple’s Machine Learning Research group published a study comparing the performance characteristics of diffusion language models (DLMs) and autoregressive language models (ARMs). The work combines theoretical analysis with empirical profiling to characterize trade-offs between the two approaches.
The researchers note that ARMs, which generate tokens sequentially conditioned on prior tokens, have been the dominant paradigm for LLMs but suffer from low arithmetic intensity due to sequential dependencies in next-token prediction. DLMs, by contrast, generate output tokens in parallel, which can mitigate the limitations of sequential decoding and increase arithmetic intensity.
The study finds that while DLMs can achieve higher arithmetic intensity than ARMs through parallel token generation, they do not scale effectively with longer contexts. To address this, the authors explore block-wise decoding for DLMs, a technique that decouples arithmetic intensity from sequence length and enables better scaling to long contexts, similar to ARMs.
The authors also examine batched inference and report that ARMs exhibit superior throughput because they benefit more from parallelism across sequences in the batch. The study highlights opportunities for accelerating DLM inference, emphasizing that reducing the number of sampling steps is key for open-source DLMs to achieve lower latency relative to ARMs.
The paper includes contributions from researchers affiliated with Seoul National University, UC Berkeley, ICSI, LBNL, and the University of Texas at Austin, and is authored by Minseo Kim, Coleman Hooper, Aditya Tomar, Chenfeng Xu, Mehrdad Farajtabar, Michael W. Mahoney, Kurt Keutzer, and Amir Gholami.
- Aug 8, 2026 · Apple — Machine Learning Research
Apple proposes DLR-Lock to restrict fine-tuning of open-weight language models
Trust79 - Aug 8, 2026 · Apple — Machine Learning Research
Apple proposes ARBITRAGE, a step-level speculative decoding framework to reduce LLM reasoning latency by up to twofold
Trust79 - Aug 8, 2026 · Apple — Machine Learning Research
Apple demonstrates few-step text generation with a 1.7B-parameter flow model trained on 2.1 trillion tokens
Trust79