推論系統
H3 Lightning Cuts MiniMax H3 Video Generation to Four Steps, but Its 12.2× Speedup Depends on Unreleased Weights
RunningHub has published a multi-GPU inference recipe for MiniMax H3 combining SGLang, step distillation, SageAttention2, Cache-DiT, and `torch.compile`. It reduces the reported latency for a five-second video from 348.8 seconds to 28.7 seconds, but the critical internal acceleration weights have not been released, and the public LoRA cannot directly reproduce that result.

RunningHub has released H3 Lightning, integrating MiniMax H3’s video-and-audio generation model with SGLang’s `multimodal_gen` runtime while pinning software versions, the model revision, launch parameters, and the benchmarking procedure. Rather than introducing a single new kernel, it layers workload reduction with execution-level optimizations: post-training/step distillation first reduces the baseline 50 denoising steps to four, SageAttention2 then accelerates attention, Cache-DiT reuses some intermediate computations, and `torch.compile` compiles the computation graph.
On eight RTX 6000D GPUs connected only through PCIe, without NVLink, the team measured a reduction in latency for generating a five-second, 1344×768 text-to-video clip from the BF16 baseline of 348.8 seconds to 43.0 seconds. Adding the full set of execution optimizations reduced it further to 28.7 seconds, equivalent to a 12.2× speedup. A separate 15-second test showed that changing the parallelization strategy from TP4 + Ulysses2 to TP2 + Ulysses4 reduced latency from 54.0 seconds to 48.2 seconds while using approximately 14 GiB less GPU memory. This is particularly relevant for PCIe servers without NVLink: the optimal partitioning strategy for video generation does not necessarily match the pure tensor-parallel configurations used for large language models.
From an engineering perspective, the 12.2× figure must be interpreted carefully. Most of the gain comes from replacing 50 steps with four, rather than from a lossless acceleration of the same numerical computation; SageAttention also uses quantization within the attention operation. More importantly, the benchmark results were obtained with RunningHub’s internal acceleration weights, which have not yet been released. The repository provides only a community LoRA as an alternative, so the deployment workflow can currently be reproduced, but not the complete benchmark. The tests also exclude model loading, initial compilation, queueing, and download time. Adopters should pin the prompt, seed, resolution, and model revision; measure cold-start and steady-state latency separately; and manually inspect character consistency, motion continuity, prompt adherence, and audio-video synchronization. The next important signals will be whether the internal weights are released and whether third parties can reproduce the quality–speed curve across different Blackwell and Hopper topologies.