@FeitengLi: NVIDIA Spatial Intelligence Lab proposes PiD, redesigning the decoding stage in latent diffusion models. Current mainstream text-to-image generation happens in latent space, then uses a VAE decoder to map back to pixels. This decoder's…

X AI KOLs Timeline Papers

Summary

NVIDIA Spatial Intelligence Lab proposes PiD, which redesigns the decoding stage of latent diffusion models as a conditional pixel diffusion process, unifying decoding and upsampling to achieve low-latency, high-resolution decoding.

NVIDIA Spatial Intelligence Lab proposes PiD, redesigning the decoding stage in latent diffusion models. Current mainstream text-to-image models generate in latent space, then use a VAE decoder to map back to pixels. This decoder aims to reverse the encoder and reconstruct the image; it is not responsible for synthesizing new details, and its overhead increases significantly at megapixel scales. PiD reinterprets the "latent to pixel" decoding as a conditional pixel diffusion process, unifying decoding and upsampling into a single module. Decoding from 512×512 latent to 2048×2048 takes less than 1 second (peak VRAM 13GB) on an RTX 5090, and about 210ms on a GB200; compared to the cascaded upsampling baseline SeedVR2, it is about 5.9x faster (211ms vs 1237ms). By using noisy latent training and sigma-aware gating, it remains robust to not-fully-denoised latents, so the base LDM can exit early, leaving PiD to complete the high-resolution work. The method also supports VAE latents and semantic latents (DINOv2 / SigLIP / RAE). Actual effectiveness and application boundaries still need to be verified in more scenarios, but redoing the decoder as a diffusion module that can synthesize details is a direction worth watching. https://research.nvidia.com/labs/sil/projects/pid/…
Original Article
View Cached Full Text

Cached at: 05/25/26, 04:43 AM

NVIDIA Spatial Intelligence Lab proposes PiD, which redesigns the decoding stage in latent diffusion models.

Currently, mainstream text-to-image generation works in the latent space, mapping back to pixels using a VAE decoder. This decoder aims to invert the encoder and reconstruct the image, and does not itself synthesize new details. Moreover, its cost increases significantly at the megapixel scale.

PiD reformulates “latent → pixel” decoding as a conditional pixel diffusion process, unifying decoding and upsampling into a single module.

Decoding a 512×512 latent to 2048×2048 takes less than 1 second on an RTX 5090 (peak memory 13GB), and about 210ms on a GB200. This is about 5.9× faster than the cascaded super-resolution baseline SeedVR2 (211ms vs 1237ms).

Through noise-corrupted latent training and sigma-aware gating, PiD remains robust to partially denoised latents, allowing the base LDM to exit early while PiD handles the remaining high-resolution generation. The method supports both VAE latents and semantic latents (DINOv2 / SigLIP / RAE).

The actual performance and applicability boundaries still need to be verified in more scenarios. However, rethinking the decoder as a diffusion module capable of synthesizing details is a direction worth attention.

https://research.nvidia.com/labs/sil/projects/pid/…


Fast and High-Resolution Latent Decoding with Pixel Diffusion

Source: https://research.nvidia.com/labs/sil/projects/pid/ SD3 PiD Decode

SD3 VAE Decode

VAE Decoder

PiD

DINOv2 PiD Decode

DINOv2 RAE Decode

RAE Decoder

PiD

Z-Image PiD Decode

Z-Image VAE Decode

VAE Decoder

PiD

Flux.2 PiD Decode

Flux.2 VAE Decode

VAE Decoder

PiD

Abstract


Most practical high-resolution text-to-image systems rely on latent diffusion models, where generation is performed in a compact latent space and a decoder maps latents back to pixels. Yet the latent-to-pixel decoder is reconstruction-oriented, optimized to invert the encoder rather than synthesize more details, and becomes increasingly costly at megapixel scale. This drawback calls for a more expressive and efficient decoding paradigm. Motivated by recent progress in scalable pixel-space diffusion, we introducePiD, aPixel diffusionDecoder that reformulates latent decoding as conditional pixel diffusion, unifying decoding and upsampling into one generative module. By denoising directly in high-resolution pixel space,PiDsynthesizes 4× and even 8× upscaled images with low latency. For latent conditioning, a lightweight sigma-aware adapter injects noise-corrupted latents into the pixel diffusion backbone, enablingPiDto decode partially denoised latents and terminate the latent diffusion process early. To further improve efficiency, we distill the model using DMD2, reducing inference to just 4 steps.PiDapplies to both conventional VAE latents and semantic latents (e.g., SigLIP, DINOv2) used in recent RAE-based models.PiDdecodes latents of 512×512 images into 2048×2048 pixels in under 1 second with 13 GB peak memory on a consumer RTX 5090, and as fast as 210 ms on a GB200 GPU, about 6× faster than cascaded diffusion-based super-resolution pipelines with better visual fidelity.

Results


From Latent to Pixels

Select a latent space and move the step slider to compare PiD decoding quality at different early-termination points. Drag thewhite divideron each image to reveal the VAE/RAE decode vs. PiD decode.

4K Decode

Direct latent→4K decoding with PiD. Click any image to launch a side-by-side comparison against the VAE decoder.

Baseline Comparison

Hover over any image to activate the synchronized zoom lens across all six views.

Quantitative Results(Decoding + Upsampling, 5122 → 20482)

End-to-End Decoding Latency (ms) ↓

PiD is up to5.9× fasterthan SeedVR2 (211.2 ms vs 1237.5 ms)

Gemini-3-Flash Judge Rating (%) ↑

% of evaluations where judges preferPiDover each baseline

Method


**Overview of PiD.**PiD unifies latent decoding and upsampling as a single latent-conditioned pixel diffusion model that predicts the target-resolution pixel-space velocity field. Noise-corrupted latent training and sigma-aware gating make the decoder robust to partially denoised latents, enabling early exit from the base LDM while preserving high-resolution output quality.

Similar Articles

nvidia/PiD

Hugging Face Models Trending

NVIDIA releases PiD (Pixel Diffusion Decoder), a conditional pixel-space diffusion model that unifies latent-to-pixel decoding and upsampling into one generative module, producing super-resolved images in one pass. Model checkpoints and VAE weights are released under a non-commercial license.

PiD: Fast and High-Resolution Latent Decoding with Pixel Diffusion

Hugging Face Daily Papers

PiD introduces a pixel diffusion decoder that reformulates latent decoding as conditional pixel diffusion, enabling fast and high-quality image synthesis at high resolutions with reduced computational requirements. It decodes latents into 4x or 8x upscaled images in under a second on consumer hardware.

zhen-nan/L2P

Hugging Face Models Trending

L2P proposes an efficient transfer paradigm that leverages pre-trained latent diffusion models to build pixel-space diffusion models, enabling high-quality generation with minimal computational overhead and data requirements, and supporting native 4K resolution.