---
title: Scalable Image Synthesis
url: https://www.emergentmind.com/topics/scalable-image-synthesis
type: topic
---

# Scalable Image Synthesis

Scalable image synthesis refers to generative modeling approaches capable of producing high-fidelity, consistent images across a broad range of spatial scales, resolutions, and—sometimes—aspect ratios or spatial extents, from sub-megapixel to multi-gigapixel, with computational and memory requirements that scale gracefully as output dimensions increase. Recent research addresses the need to eliminate artifacts (e.g., "texture sticking," seams, or inconsistent details), avoid fixed-size architectural bottlenecks, and provide extensible frameworks for arbitrary-resolution or open-ended multi-modal visual generation.

## 1. Core Architectural Paradigms for Scalability

Modern scalable image synthesis methods diverge from strictly hierarchical, convolutional generator pipelines by reformulating the generative process as either coordinate-based (implicit) computation, variable-length token modeling, or patchwise synthesis, frequently leveraging specialized representations to balance expressivity, consistency, and computational tractability.

Key frameworks include:

- **Coordinate-based generators**: Models such as CREPS [2303.14157] abandon spatial convolutions and upsampling. Every pixel is synthesized as a function of its (continuous) $(x, y)$ position and a style vector, with no dependence on the resolution-dependent architectural hierarchy. The thick bi-line decomposition
  $$
  F^{(l)}_{ij} = \langle f^{r,(l)}_{i,:}, f^{c,(l)}_{j,:} \rangle = \sum_{d=1}^D f^{r,(l)}_{i,d} \cdot f^{c,(l)}_{j,d}
  $$
  reduces per-layer memory from $O(HW)$ to $O(D(H+W))$ and guarantees scale-equivariance.

- **Variable-length tokenization and native-resolution modeling**: NiT [2506.03131] reframes synthesis as a sequence modeling task, directly processing packed latent patches corresponding to each image’s "native" resolution and aspect ratio. Axial 2D rotary positional embeddings (RoPE) allow attention to generalize across arbitrary grids.

- **Patchwise and tiled synthesis**: InfinityGAN [2104.03963] and Any-Size-Diffusion [2308.16582] generate arbitrarily-large images via seamless, coordinate-aware patch decoding and tiled diffusion, respectively, guaranteeing consistency at patch boundaries and memory cost independent of total output size.

- **Hierarchical and pyramid representations**: Ultra-high resolutions are achieved by decomposing the latent space into multiple spatial scales (e.g., PDM [2403.12915]), with diffusion or flow networks operating on each pyramid level. This design concentrates computational resources where needed and decouples global structure from local detail.

- **Efficient Transformer attention**: The hourglass architecture in HDiT [2401.11605] imposes locality in attention patterns at high resolutions while retaining global coherence through early-stage global attention, reducing complexity from $O(n^2)$ to $O(n)$ in pixel count.

## 2. Conditioning, Consistency, and Multi-Scale Fidelity

Scalable synthesis architectures universally emphasize mechanisms for resolution- and scale-consistent detail, both within and beyond the training regime:

- **Scale-consistent positional embeddings**: Arbitrary-Scale Image Synthesis [2204.02273] derives positional grids whose spacings are aligned across resolutions and remove zero padding, preserving translation and scale-equivariance throughout the generator.

- **Continuous-scale training**: Anyres-GAN [2204.07156] samples patches at variable scales and positions, explicitly conditioning the synthesis network on both coordinates and scale, training over diverse native-resolution data.

- **Multi-view and 3D-aware generation**: EscherNet [2402.03908] enables simultaneous multi-view synthesis by fusing reference and target tokens (augmented with specialized camera positional encodings) via self- and cross-attention transformers, scaling up to 100+ views.

- **Pyramidal latent representations**: PDM [2403.12915] uses a set of latent feature maps across decreasing resolutions, integrating coarse and fine information during the decoding phase for robust global structure with high-frequency details.

Empirical evaluations consistently demonstrate that these conditioning mechanisms yield favorable FID, SSIM, and perceptual consistency metrics on both standard and novel-scale benchmarks, often matching or approaching the strongest fixed-scale models at each size.

## 3. Memory, Compute, and Throughput Scaling

A central requirement for true scalability is that memory and runtime cost increase at most linearly in output pixel count and avoid quadratic blowup in self-attention or other operations.

- **Latent-space modeling**: Methods such as LSSGen [2507.16154] and STARFlow [2506.06276] operate progressively in the autoencoder’s compressed latent space. Latent upsampling, learned at low cost, enables efficient multi-resolution diffusion or flow processing without repeated passage through the encoder/decoder.

- **Hierarchical attention and downsampling**: The hourglass transformer structure in HDiT [2401.11605] reduces self-attention scope at fine resolutions through neighborhood attention, confining $O(n^2)$ operations to early bottleneck stages ($n$ = token count).

- **Tiling and memory-efficient upsampling**: ASD [2308.16582] partitions the synthesis process into a composition-adaptive stage (ARAD) and a fast, implicitly overlapping tiled diffusion stage (FSTD), avoiding seams and drastically dropping peak memory from $O(HW)$ to $O(hw)$, where $h, w$ are small tile dimensions.

- **Packed variable-length transformers**: NiT [2506.03131] introduces a packing strategy for variable-length latent streams within a constant total token budget, enabling high-throughput training and inference across images of disparate resolutions and aspect ratios.

- **Scaling and compression in flows and autoregressive models**: STARFlow [2506.06276] leverages TARFlow’s deep–shallow transformer design for normalizing flows, limiting both attention and flow-layer depth while retaining universality for continuous densities.

## 4. Comparative Performance and Empirical Benchmarks

The leading scalable synthesis models systematically report quantitative measures across multiple resolution regimes, with FID, CLIP-score, IS, SSIM/LPIPS, and user studies.

Selected results illustrating the scalability trend:

| Model (Resolution)         | FID (lower is better)    | Compute/Memory Notes        |
|----------------------------|-------------------------|-----------------------------|
| CREPS (FFHQ 512²/1024²)    | 4.43 / 4.09             | $O(D(H+W))$ memory, 0.05s/step [2303.14157] |
| HDiT (FFHQ 1024²)          | 5.23                    | $O(n)$ scaling [2401.11605] |
| PDM (CelebA-HQ 1024²/2K²)  | 4.10 / 18.9             | 3-5× VRAM reduction [2403.12915] |
| NiT (ImageNet 512²/1536²)  | 1.45 / 6.51             | Zero-shot scaling, $O(n)$ tokenization [2506.03131] |
| InfinityGAN (8192²)        | ScaleInv FID: 121.2     | Constant memory, full parallelism [2104.03963] |
| STARFlow (ImageNet 256²/512²) | 2.40 / 3.00           | Latent, end-to-end MLE, $O(D'd^2)$ [2506.06276] |
| ASD (MM-CelebA-HQ up to 18432²) | FID 85.3            | Implicit overlap, 2× speedup over baseline [2308.16582] |
| DART (DiT-16 baseline: 8.0) | 5.5 (16 steps, ImageNet)| Non-Markovian AR, KV-caching [2410.08159] |

This demonstrates that scalable designs yield not only nearly constant or sublinear memory growth but also competitive or state-of-the-art sample fidelity and alignment to text/image conditions at previously unattainable output sizes or aspect ratios.

## 5. Multimodal and Compositional Scalability

Next-generation scalable frameworks, motivated by cross-modal and open-set synthesis, rely on modular condition fusion, minimal parameter expansion, and plug-in compositionality:

- **Composable multimodality**: DiffBlender [2305.15194] separates conditions into three orthogonal channels (image-form, spatial token, non-spatial token) and fuses each with minimal UNet changes. New modalities are supported by simply introducing their encoders and updating less than 5% of the backbone.

- **Retrieval-augmented semi-parametric approaches**: Semi-Parametric Neural Image Synthesis [2204.11824] uses an external, untrained retrieval database to offload visual memorization, allowing small core networks to synthesize diverse outputs and swap domains post hoc by exchanging retrieval sets.

- **Scalable view and 3D synthesis**: EscherNet [2402.03908] supports simultaneous multi-view diffusion with pose-aware attention, dramatically scaling both number of views and 3D scene complexity, and opening unified pipelines for view synthesis, 3D reconstruction, and novel view extrapolation.

## 6. Open Challenges, Limitations, and Future Directions

While scalable image synthesis models exhibit impressive generalization and computational scaling, open questions remain:

- **Consistency and artifact suppression**: Achieving perfect scale-consistency and micro-structure fidelity across arbitrary or extreme dimensions remains a challenge. CREPS, for example, observes banding and floating-blob artifacts due to per-pixel independence [2303.14157]. Explicit "scale-consistency" loss terms, robust coordinate regularization, or structural priors are areas of active research.

- **Token and memory bottlenecks at extreme resolutions**: Fully transformer-based approaches such as NiT reach limits due to quadratic or superlinear memory with token count. Sparse attention, hierarchical token reduction, and hybrid latents are potential solutions [2506.03131].

- **Extending beyond 2D images**: Expansion to spatio-temporal video, full 3D, multi-modal, and interactive synthesis spaces will require further breakthroughs in scalable attention, multi-branch latent representation, and dynamic condition fusion [2402.03908].

- **Data diversity and training regimes**: Native-resolution and mixed-resolution training protocols leverage "wild" image collections, but fully smoothing the empirical distribution, particularly at extreme aspect ratios or resolutions, is still an open challenge. Automated curriculum or token-packing schedules are under exploration [2506.03131].

- **Modal compositionality**: Integrating audio, textual, spatial, and even sensor-driven guidance in a truly open-ended compositional architecture, without retraining the generative backbone for each modality, is a long-term objective. Modular plug-and-play adapters and latent-space fusion strategies are current directions [2305.15194].

## 7. Summary and Outlook

Scalable image synthesis now encompasses a spectrum of generator architectures—coordinate- and token-based, patchwise and pyramidal, latent and pixel space—enabling high-fidelity, consistent image (and view, and modality) generation at arbitrary and massive scales. These models combine scale-consistent conditioning, efficient memory and compute strategies, and extensible compositionality, producing outputs that match or exceed fixed-resolution baselines while opening the field to new tasks and application domains. Key challenges at the frontier include complete artifact suppression under aggressive extrapolation, ultra-large-token scalability, generalized compositionality, and domain-agnostic adaptability. The field is rapidly evolving toward foundation models for open-ended, resolution- and modality-agnostic image synthesis.

**Key references:** [2303.14157], [2401.11605], [2506.03131], [2403.12915], [2308.16582], [2104.03963], [2204.07156], [2204.02273], [2507.16154], [2506.06276], [2410.08159], [2305.15194], [2204.11824], [2402.03908], [2012.09841], [2111.03384], [1707.09405].

Source: https://www.emergentmind.com/topics/scalable-image-synthesis