MiniMax H3 Hybrid NVFP4 for NVIDIA Blackwell

Two experimental mixed-precision quantizations of the MiniMax H3 Ref2VA Pruned diffusion model, optimized and tested locally on an NVIDIA GeForce RTX 5070 Ti 16 GB (Blackwell, SM 12.0).

This is an independent community optimization by abakanai. It is not an official MiniMax or ComfyUI release. The checkpoints are inference-only single-file diffusion weights for ComfyUI; they are not LoRAs and do not include the text encoder or VAEs.

Checkpoints

Checkpoint Quantization layout Size Recommended use
minimax_h3_ref2va_pruned_hybrid_ffn_nvfp4_blackwell.safetensors FFN input: NVFP4; QKV and output projections: INT8 ConvRot 16.38 GiB Start here when output fidelity is the priority
minimax_h3_ref2va_pruned_hybrid_nvfp4_blackwell.safetensors QKV and FFN input: NVFP4; output projections: INT8 ConvRot 14.03 GiB Lower storage/offload cost and faster linear projections

The attention-output and FFN-output projections remain INT8 ConvRot in both variants. This preserves the fused SwiGLU path and avoids spending precision where native NVFP4 did not provide a measured speed benefit.

Generated examples

All media below are AI-generated. The paired videos in each comparison use the same reference image, prompt, seed, resolution, duration, sampler, scheduler, and step count.

Prompt
Conservative hybrid — FFN input in NVFP4, 16.38 GiB
Prompt
Fast hybrid — QKV and FFN input in NVFP4, 14.03 GiB
Prompt
Matched-seed A/B contact sheet
Prompt
Fast hybrid high-resolution — simple, 1376 × 768, rendered in 568.67 s
Prompt
Conservative hybrid high-resolution — simple, 1376 × 768, rendered in 598.66 s

Matched-seed comparison

Matched-seed A/B comparison between the 16.38 GiB conservative hybrid and the 14.03 GiB fast hybrid

A/B generation settings

Setting Value
Resolution 864 × 480
Frames / frame rate 124 frames / 24 fps
Duration 5.17 seconds
Sampler res_multistep
Scheduler beta
Steps 20
Seed 788309604372424
Reference inputs 1 image
Reference sizing match
Audio Native H3 audio latent, stereo AAC output at 32 kHz
Prompt used for both videos
<Picture 1> The same young adult anime woman looks into the camera, blinks naturally, smiles, then slowly forms a heart with both hands in front of her chest. Her short black hair moves gently. Smooth expressive character animation, stable face and round glasses, consistent fingers and hands, clean pink-and-white background, locked camera, no scene cuts. No speech.

In this single-seed qualitative check, both variants preserved the character's face and glasses across the clip. The conservative variant held finger shapes slightly more consistently, while the fast variant produced a very similar result with somewhat larger changes in background composition and framing. This is one visual sample, not a statistically meaningful perceptual evaluation.

1376 × 768 simple follow-up

The two hybrid checkpoints were also tested at 1376 × 768 using the same reference, prompt, seed, 124-frame duration, 20 steps, and res_multistep sampler. The scheduler was changed to simple for both matched runs.

Checkpoint Resolution Video duration Total render time
Fast 14.03 GiB 1376 × 768 5.17 s 568.67 s (9:28.67)
Conservative 16.38 GiB 1376 × 768 5.17 s 598.66 s (9:58.66)

Both runs completed on the RTX 5070 Ti 16 GB through ComfyUI DynamicVRAM and produced 124-frame, 24 fps MP4 files with stereo AAC audio at 32 kHz. The fast checkpoint finished about 5% sooner in these sequential single runs. This is a practical observation rather than a controlled end-to-end benchmark because model and cache state were not fully reset between jobs.

Research summary

Test environment

  • NVIDIA GeForce RTX 5070 Ti, 16 GB
  • Blackwell, SM 12.0
  • PyTorch 2.10.0+cu130
  • CUDA 13.0
  • comfy-kitchen 0.2.26
  • BF16 compute
  • Baseline: minimax_h3_ref2va_pruned_int8_convrot.safetensors, 19.53 GiB

Attention and INT8 baseline

ComfyUI already dispatched MiniMax H3 full attention to cuDNN SDPA. At a sequence length of 16,384 tokens, one attention call took approximately 88 ms. Changing SDPA backend priority and forcing contiguous Q/K/V layouts did not produce a stable improvement.

The original INT8 ConvRot checkpoint already used a fused CUTLASS kernel. Forcing the cuBLAS fallback was 15–30% slower depending on matrix shape, so the CUTLASS path was retained.

Native NVFP4 projection benchmarks

Measurements below use a sequence length of 16,000 tokens and report one projection call from one H3 block.

Operation INT8 ConvRot NVFP4 Change
QKV projection 12.75 ms 6.86 ms −46%
Attention output projection 4.71 ms 3.15 ms −33%
FFN input projection 16.60 ms 9.35 ms −44%
FFN output + SwiGLU 9.47 ms 9.57 ms No speedup

A full conversion of every linear layer to NVFP4 was not selected. The FFN output projection did not become faster, while numerical error accumulated more strongly across the model's 50 blocks, especially in the audio channel.

For the fast hybrid, the combined time of these four major linear operations decreased from approximately 43.5 ms to 30.4 ms per block, a reduction of about 30%. Full-attention complexity remains the principal high-resolution bottleneck.

50-block numerical smoke test

Each candidate was compared with a freshly executed INT8 baseline on identical input tensors.

Variant INT8 → candidate Speedup Video cosine Audio cosine
NVFP4 for FFN input only 1.339 → 0.464 s 2.89× 0.992 0.937
NVFP4 for QKV and FFN input 1.111 → 0.287 s 3.87× 0.985 0.891

No NaN or Inf values were observed. These cosine measurements describe numerical similarity for a controlled smoke test; they do not replace full iterative visual and audio evaluation.

ComfyUI usage

Place one checkpoint in:

ComfyUI/models/diffusion_models/

The Ref2VA workflow also requires the companion files from Comfy-Org/MiniMax-H3:

ComfyUI/models/text_encoders/qwen3vl_32b_minimax_h3_nvfp4_awq.safetensors
ComfyUI/models/vae/minimax_h3_video_vae_fp16.safetensors
ComfyUI/models/vae/minimax_h3_audio_vae_fp32.safetensors

In ComfyUI:

  1. Load one of the checkpoints with UNETLoader and leave weight_dtype at default.
  2. Use the standard MiniMax H3 reference-to-video conditioning path.
  3. Keep the ComfyUI-selected PyTorch attention backend; on the tested setup this resolved to cuDNN SDPA.
  4. Use ref_image_size=match when maximum reference-token detail is not required, particularly on 16 GB cards.
  5. Do not force the INT8 cuBLAS fallback on the tested Blackwell configuration.

The checkpoints rely on native NVFP4 operations exposed by a recent ComfyUI/comfy-kitchen build. They are intended for NVIDIA Blackwell GPUs, including GeForce RTX 50-series cards. Compatibility and performance on pre-Blackwell NVIDIA GPUs, ROCm, MPS, DirectML, XPU, NPU, and other backends have not been validated.

Limitations

  • Tested on one RTX 5070 Ti configuration; results should not be generalized to every RTX 50-series GPU without measurement.
  • MiniMax H3 uses full attention in the evaluated open implementation. NVFP4 linear-projection gains do not remove the quadratic attention cost at high token counts.
  • The fast variant has lower numerical similarity, especially in the audio channel. Prefer the conservative checkpoint when fidelity matters more than model size.
  • The A/B media represents one seed and one reference image. More prompts, motion patterns, identities, durations, and audio scenarios are needed for a broader quality evaluation.
  • These checkpoints are experimental community conversions and are provided without warranty.

License and use restrictions

The MiniMax H3 diffusion weights and derivatives are governed by the MiniMax H3 Community License Agreement, not Apache-2.0. The license contains territorial restrictions, an Acceptable Use Policy, redistribution requirements, and additional commercial terms. In particular, the defined applicable territory excludes the European Union, the United Kingdom, the Republic of Korea, and the United States of America. Read the full LICENSE and NOTICE before downloading, using, or redistributing these files.

The separately distributed Qwen3-VL-32B encoder is licensed under Apache-2.0 by its respective authors.

Acknowledgements

Downloads last month
-
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for abakanai/Minimax_h3_hybrid

Finetuned
(6)
this model