AIAny
AI Infra2025
Icon for item

LongLive 2.0: An NVFP4 Parallel Infrastructure for Long Video Generation

Provides an NVFP4‑optimized training and inference infrastructure for long-form video diffusion models — supports multi-shot AR training, KV-cache and NVFP4 quantized inference, sequence-parallelism and async decoding for higher FPS and longer outputs.

Introduction

Long-form video generation is constrained by memory, latency, and sequence length; LongLive 2.0 targets those bottlenecks by treating the model stack and runtime as a joint systems problem rather than only a modeling one. The repo focuses on practical infra and recipes that let diffusion-based video generators train on long sequences and run inference with quantized NVFP4 pipelines and parallelism.

What Sets It Apart
  • NVFP4-first engineering: integrates NVFP4 (and BF16) support across training and inference paths so you can run quantized, low-precision pipelines (W4A4 style) without reworking core code — this reduces memory and improves throughput on supported hardware. So what: enables larger context / longer videos on the same GPU budget.
  • Sequence and model parallel primitives for AR training and inference: balanced sequence parallel for autoregressive training and sequence-parallel inference reduce per-device memory pressure. So what: fewer OOMs and more stable long-sequence training across multi‑GPU setups.
  • Multi-shot attention & KV-cache optimizations: supports multi-shot (and single-shot) training, KV-cache relative RoPE and KV-cache compression options (e.g., TriAttention integration). So what: enables streaming or effectively ‘infinite’ generation with smaller KV footprints and lower decoding latency.
  • Practical throughput numbers and distillation paths: provides model weights and distilled NVFP4 checkpoints (examples show up to ~45.7 FPS for a 5B NVFP4 2-step setup) and few-step distillation flows to trade compute for latency. So what: you get concrete performance targets and end-to-end artifacts (models, docs, demo).
Who It's For & Tradeoffs

Great fit if you are building or researching long-form/interactive video generation and need engineering-ready solutions for memory-constrained GPUs, quantized inference, or streaming decode. The repo is useful for researchers who want reproducible infra and for engineering teams that must deploy long-sequence generators in production-like settings. Look elsewhere if you only need short (a few seconds) video synthesis from existing image-to-video tools, if your deployment hardware doesn't support NVFP4 or the quantization backends mentioned, or if you prefer purely model-centric research without infra changes — adopting LongLive's NVFP4 and parallel tooling has a systems integration cost and some backend-specific assumptions.

Where It Fits

Positioned between model research and production inference stacks: it pairs video diffusion architectures (and distillation recipes) with systems-level primitives (NVFP4, seq-parallel, KV-cache tricks). Compared with vanilla repos that publish weights only, LongLive supplies both performance-focused checkpoints and runtime utilities to reach them.

How It Works (brief)

The codebase stitches together: autoregressive diffusion training on multi-shot sequences, balanced sequence parallelism to partition sequence dimensions, NVFP4/BF16 materialization and backend wrappers for fast quantized inference, KV-cache relative RoPE to enable long or infinite decoding, and optional KV compression (TriAttention) to shrink memory without quality loss. Documentation and demo pages accompany the release for reproducibility.

Information

  • Websitegithub.com
  • AuthorsNVIDIA Research (NVLabs)
  • Published date2025/09/22

More Items

Hugging Face
AI Video2026

Provides Parallel Decoding Distillation (PDD) LoRA adapters that accelerate MiniMax-H3 video generation into few inference steps. Includes official 8-step Acc LoRAs for FL2VA and Ref2VA (rank=64, network_alpha=64, BF16), demo comparison videos, and example scripts using Diffusers' MiniMax-H3 ModularPipeline.

GitHub
AI Infra2025

Measures generative AI inference performance with token-level metrics (TTFT, inter-token latency), latency, and throughput under realistic traffic patterns. Provides a multiprocess engine, real-time TUI dashboard, extensible plugins, and integrations for telemetry and result uploads, aimed at inference benchmarking and capacity planning.

Hugging Face
AI Video2026

Conditions a MiniMax‑H3 video generator with a single ControlNet‑Union checkpoint to accept Canny, Depth, HED, MLSD or Pose control videos and run video inpainting. Guidance‑distilled for one‑pass inference; requires the base MiniMax‑H3 weights and specific control-branch config.