LGAIMay 22, 2025

MARché: Fast Masked Autoregressive Image Generation with Cache-Aware Attention

arXiv:2506.12035v1h-index: 5
Originality Incremental advance
AI Analysis

This work addresses a bottleneck in efficient image generation for researchers and practitioners using masked autoregressive models, though it is incremental as it optimizes an existing method without architectural changes.

The paper tackles the computational inefficiency of masked autoregressive (MAR) models in image generation, where redundant recomputation occurs at each decoding step, and proposes MARché, a training-free framework that achieves up to 1.7x speedup with negligible impact on image quality.

Masked autoregressive (MAR) models unify the strengths of masked and autoregressive generation by predicting tokens in a fixed order using bidirectional attention for image generation. While effective, MAR models suffer from significant computational overhead, as they recompute attention and feed-forward representations for all tokens at every decoding step, despite most tokens remaining semantically stable across steps. We propose a training-free generation framework MARché to address this inefficiency through two key components: cache-aware attention and selective KV refresh. Cache-aware attention partitions tokens into active and cached sets, enabling separate computation paths that allow efficient reuse of previously computed key/value projections without compromising full-context modeling. But a cached token cannot be used indefinitely without recomputation due to the changing contextual information over multiple steps. MARché recognizes this challenge and applies a technique called selective KV refresh. Selective KV refresh identifies contextually relevant tokens based on attention scores from newly generated tokens and updates only those tokens that require recomputation, while preserving image generation quality. MARché significantly reduces redundant computation in MAR without modifying the underlying architecture. Empirically, MARché achieves up to 1.7x speedup with negligible impact on image quality, offering a scalable and broadly applicable solution for efficient masked transformer generation.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes