multimodalart / minimax-h3-aoti

huggingface.co
Total runs: 14
24-hour runs: -6
7-day runs: -7
30-day runs: 23
Model's Last Updated: August 16 2026

Introduction of minimax-h3-aoti

Model Details of minimax-h3-aoti

MiniMax-H3 AoTI packages

AOT-Inductor packages for one MiniMaxH3TransformerBlock , keyed <width>/torch<X.Y>/sm<cc>/<shape> . One package serves all 50 blocks of a transformer: it carries no weights , and spaces.aoti_patch binds each block's own live state_dict() on its first forward. Built and consumed by h3_aoti.py in the MiniMax-H3 Spaces; built off-Space by job_bf16_aoti.py on an rtx-pro-6000 Job.

What is here

bf16/torch2.11/sm120/dynamic is the one that matters: a dynamic sequence dimension , so it serves every canvas, every duration and every prompt length. The <HxWxF> keys hold byte-identical copies of it, for a Space configured to look artifacts up per canvas. _inputs/ holds cached conditioner output ( prompt_embeds + text_token_tags ) so a build job never has to load the 62 GiB Qwen3-VL. _reports/ holds each build's full JSON report.

A dynamic package is not a nicety. build_packed_sequence pads nothing, so S = num_text_tokens + condition_rows + audio_rows + video_rows moves with the prompt : the same canvas is S = 37726 for a 16-token prompt and S = 37728 for an 18-token one. A static package serves exactly one prompt length.

Measured, unquantized bfloat16, 124 frames, everything resident on one RTX PRO 6000 Blackwell
canvas (HxW) eager s/step AoTI s/step saved faster
768x1344 10.20 9.73 0.47 s +4.6%
704x1280 8.59 7.87 0.72 s +8.4%
640x1152 6.46 5.88 0.59 s +9.1%
576x1024 4.74 4.24 0.50 s +10.5%
544x960 4.02 3.58 0.44 s +11.0%

The absolute saving is near-constant at ~0.5 s/step, which is what AoTI can remove: 50 blocks of kernel-launch overhead plus the norm / rotary / AdaLN-gather epilogues. It cannot touch the matmuls, and at S = 37726 one block is ~70 TFLOP of GEMM and attention, so the released 768x1344 canvas is compute bound. The smaller the canvas, the more this pays.

Proven end to end on the pool: the MiniMax-H3 Space loads bf16/torch2.11/sm120/dynamic at startup, patches all 50 blocks and generates.

The trap, recorded because the symptom is a segfault with no message

spaces.zero.torch.aoti.LazyAOTIModel binds a package's constants by name , intersecting the block's state_dict() with get_constant_fqns() , and silently keeps whatever it cannot match. A shallow clone ( _shallow_clone_module , which aoti_patch uses and which the export side was mirroring) exported in torch.export 's default non-strict mode lifts every weight twice — once as a named PARAMETER , once as an anonymous lifted_tensor_<N> CONSTANT_TENSOR sharing the same data_ptr() . The anonymous half binds to nothing and the compiled kernel reads pointers nobody set. Measured on the real block, at full size, in plain bfloat16 with no tensor subclass anywhere:

module exported mode result
live block non-strict 12 PARAMETER, 0 CONSTANT_TENSOR
live block strict 12 PARAMETER, 0 CONSTANT_TENSOR
shallow clone non-strict 12 PARAMETER, 12 CONSTANT_TENSOR (1231 MiB)
shallow clone strict 12 PARAMETER, 0 CONSTANT_TENSOR

So it is neither accelerate's offload hooks nor torchao's tensor subclasses, which were both blamed first. Export the live block when it has nothing to flatten; use strict=True when a subclass forces the clone.

temb is padded to a fixed 4 rows

temb is (num_distinct_timesteps, time_embed_dim) — one row at step 0, where video and audio still share a noise level, two from step 1 where their sigma schedules diverge — and the block gathers from a 3 * rows AdaLN table, so the row count is part of the compiled shape. Padding to a fixed 4 rows makes it constant; rows past the live ones are never gathered, so the output is unchanged. Validated rather than assumed: the build replays a real 1-row and a real 2-row call through the compiled block and diffs both against eager.

Runs of multimodalart minimax-h3-aoti on huggingface.co

14
Total runs
-6
24-hour runs
-6
3-day runs
-7
7-day runs
23
30-day runs

More Information About minimax-h3-aoti huggingface.co Model

More minimax-h3-aoti license Visit here:

https://choosealicense.com/licenses/other

minimax-h3-aoti huggingface.co

minimax-h3-aoti huggingface.co is an AI model on huggingface.co that provides minimax-h3-aoti's model effect (), which can be used instantly with this multimodalart minimax-h3-aoti model. huggingface.co supports a free trial of the minimax-h3-aoti model, and also provides paid use of the minimax-h3-aoti. Support call minimax-h3-aoti model through api, including Node.js, Python, http.

multimodalart minimax-h3-aoti online free

minimax-h3-aoti huggingface.co is an online trial and call api platform, which integrates minimax-h3-aoti's modeling effects, including api services, and provides a free online trial of minimax-h3-aoti, you can try minimax-h3-aoti online for free by clicking the link below.

multimodalart minimax-h3-aoti online free url in huggingface.co:

https://huggingface.co/multimodalart/minimax-h3-aoti

minimax-h3-aoti install

minimax-h3-aoti is an open source model from GitHub that offers a free installation service, and any user can find minimax-h3-aoti on GitHub to install. At the same time, huggingface.co provides the effect of minimax-h3-aoti install, users can directly use minimax-h3-aoti installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

minimax-h3-aoti install url in huggingface.co:

https://huggingface.co/multimodalart/minimax-h3-aoti

Url of minimax-h3-aoti

Provider of minimax-h3-aoti huggingface.co

multimodalart
ORGANIZATIONS

Other API from multimodalart

huggingface.co

Total runs: 41
Run Growth: -18
Growth Rate: -43.90%
Updated:July 10 2025