UC Berkeley's VDN-H3 Generates 14-Second Videos Faster Than You Can Watch
VDN-H3 replaces most of MiniMax H3's quadratic attention with a linear branch, rendering a 14.4-second 768p clip in 11.23 seconds on 8 B200s.
PRO- OpenVDN released VDN-H3, a hybrid attention rework of MiniMax H3 for text-to-video.
- Generates a 14.4-second 768p clip in 11.23 seconds on 8 B200 GPUs, 75-90x faster than dense H3.
- Combines sliding-window softmax for local frames with a new Video Delta Attention linear branch for long range.
- Ships as a linear branch plus two LoRA adapters that merge into the frozen H3 backbone at inference.
- 8-step checkpoint is DMD2 distilled from a 50-step model; weights, training and inference code open.
- License excludes the US, EU, UK, and South Korea; requires Hopper or datacenter Blackwell GPUs.
A team from UC Berkeley, Impossible Inc., and UT Austin released weights and code for a hybrid attention rework of MiniMax H3 that generates video faster than you can watch it. Video DeltaNet (VDN-H3) is an open-source patch on top of the MiniMax H3 text-to-video backbone. On 8 B200 GPUs, it generates a 14.4-second 768p clip in 11.23 seconds across 8 denoising steps, a 75-to-90x speedup over the dense baseline, without the visible quality collapse that usually accompanies linear attention.
The release includes a Hugging Face checkpoint, an optimized inference stack, training code, and a technical blog. A community contributor has already shipped a native ComfyUI port, so the model is reachable outside the datacenter reference setup.
The attention bottleneck in video diffusion
Video diffusion transformers spend most of their compute inside self-attention, and costs scale quadratically with clip length. On MiniMax H3, softmax attention over long token sequences accounts for more than 85% of total runtime. Swapping in linear attention is the obvious remedy, but it carries steep quality tradeoffs: degraded subject consistency, broken scene layout, and poor long-range dependency capture.
VDN-H3 sidesteps the tradeoff by splitting video-video attention into two complementary branches. A sliding-window softmax branch handles local frame pairs, computing exact attention between nearby frames to preserve fine-grained detail and short-term temporal stability. Concretely, sets of five consecutive latent frames are grouped into chunks, each attending to itself plus the preceding and following chunks, following the original H3 architecture. A separate linear branch handles long-range context.
This story is for Pro members
You've reached the end of the free preview. Upgrade to AlphaSignal Pro to read the full article - and everything else behind the paywall.