From Sequential to Spatial: Reordering Autoregression for Efficient Visual Generation
Siyang Wang, Hanting Li, Wei Li, Jie Hu, Xinghao Chen, Feng Zhao
TL;DR
The paper addresses the inefficiency of traditional autoregressive visual generation by proposing RadAR, a radial parallel autoregressive framework that decodes tokens ring-by-ring from a center token. It preserves spatial locality through concentric rings and introduces a nested attention mechanism to mitigate inconsistent outputs, along with a tokenizer post-training step to align latent spaces. Empirically, RadAR achieves up to 5.6× speedups on ImageNet while delivering competitive image quality and enabling zero-shot generalization tasks such as out-painting and class-conditional editing, demonstrating strong practical impact for high-throughput visual synthesis and multimodal integration.
Abstract
Inspired by the remarkable success of autoregressive models in language modeling, this paradigm has been widely adopted in visual generation. However, the sequential token-by-token decoding mechanism inherent in traditional autoregressive models leads to low inference efficiency.In this paper, we propose RadAR, an efficient and parallelizable framework designed to accelerate autoregressive visual generation while preserving its representational capacity. Our approach is motivated by the observation that visual tokens exhibit strong local dependencies and spatial correlations with their neighbors--a property not fully exploited in standard raster-scan decoding orders. Specifically, we organize the generation process around a radial topology: an initial token is selected as the starting point, and all other tokens are systematically grouped into multiple concentric rings according to their spatial distances from this center. Generation then proceeds in a ring-wise manner, from inner to outer regions, enabling the parallel prediction of all tokens within the same ring. This design not only preserves the structural locality and spatial coherence of visual scenes but also substantially increases parallelization. Furthermore, to address the risk of inconsistent predictions arising from simultaneous token generation with limited context, we introduce a nested attention mechanism. This mechanism dynamically refines implausible outputs during the forward pass, thereby mitigating error accumulation and preventing model collapse. By integrating radial parallel prediction with dynamic output correction, RadAR significantly improves generation efficiency.
