CivArchive
    MiniMax H3 Ultra Boost - 4-step Turbo / INT8 / Sparse Attention (10Eros base) - v1.0 (i2v + t2v)
    NSFW
    Preview 141003446

    An i2v / t2v MiniMax H3 workflow tuned for maximum speed on a single 24 GB card, with native stereo audio in the same pass. On our RTX 4090 a 10 s clip that took ~27 min on the dense hi-res pipeline renders in ~6 min with this stack (same seed; the hi-res pass is the optional extra below). The Turbo LoRA alone already measured x1.9 end-to-end.

    What is inside

    • 10Eros-Max base (INT8) - NSFW-focused finetune of MiniMax H3 by cicalooo, int8 convrot skip_edges variant (first/last blocks kept in BF16, the quality-safe option). Same loader as the official base: swap one filename to go back SFW.
    • 4-step Turbo distill LoRA (larryvrh, v4_step600_ema, the strongest checkpoint of that line) + the dedicated dual-clock sampler: video and audio each keep their own shift (12/3), so 4-6 steps do not wreck the audio.
    • Sparse attention (Zironic's H3-Optimizations, Advanced node): author-measured 1.57-1.69x on 243-frame clips, Kitchen INT8 backend, zero extra dependencies.
    • SageAttention patch (KJNodes): another ~20% off sampling in our A/B.

    Downloads - models

    Put each file in the listed ComfyUI folder.

    Downloads - custom nodes

    • ComfyUI-MiniMax-H3-Turbo (larryvrh) - the Turbo LoRA loader + sampler. Keep THIS loader: on the quantized base the LoRA must run in bypass mode and re-inject the adaln keys the pruned base needs. A generic LoRA loader either silently does nothing or crawls at minutes per step.
    • H3-Optimizations (Zironic) - H3SparseAttentionAdvanced.
    • ComfyUI-KJNodes (kijai) - SageAttention patch node. Needs the sageattention pip package; cannot install it? Set the node to disabled, you only lose ~20%.

    Requirements

    • ComfyUI 0.30+ (native INT8 convrot support).
    • Tested on a 24 GB card (RTX 4090, 23.3/24 GB used at 0.3 MP). The NVFP4 text encoder is emulated on Ada: works, just slower at encode time.
    • Frame count must satisfy count mod 17 == 5: 56, 73, 90, ... 243. 56 frames = 2.3 s at 24 fps.
    • Stay at or under 0.5 MP; go big with the latent hi-res pass below instead.

    Settings that matter

    • Steps 6 shipped (4 = fastest and the author's minimum; 6-8 looks noticeably better; above 8 it over-sharpens).
    • Scheduler simple with the Turbo LoRA (switch to beta + ~20 steps if you remove it; node 17 is left in the graph to rewire).
    • Sparse level shipped at the author defaults (budget 0.3, edges [email protected]). Honest note: sparse attention is not free - on complex prompts adherence can drop, because with 4-6 steps the sparsity also touches the composition steps. Fix: raise to budget 0.5 / edges 0.8, or unplug node 810 (guider back to node 600) and keep the rest of the stack.
    • Prompt recipe H3 responds to: style, then <Picture 1> + subject, the action, ONE camera move, then an Audio: block (voices, sfx, music - the audio is generated from your prompt in the same pass).
    • t2v: the first_frame input of the MiniMax node is optional - drop the image and prompt only.

    Going further (optional)

    • Comfyui-MMH3-UltimateUpscale (bbaudio-2025): upscales the nested video+audio latent BEFORE decode - no tile seams, audio untouched. This is the stage our 27-to-6-min number runs sparse.
    • Heretic NVFP4 text encoder (sakamakismile): uncensored drop-in replacement for the official encoder (same folder, swap clip_name in node 13) if it refuses your prompts.

    Credits

    MiniMax (H3 open weights), Comfy-Org (ComfyUI repackage), larryvrh (Turbo LoRA + nodes), Zironic (H3-Optimizations), cicalooo (10Eros-Max), kijai (KJNodes), bbaudio-2025 (MMH3 UltimateUpscale), sakamakismile (Heretic encoder). This workflow just wires their work together - go like their repos.

    Description

    API-format ComfyUI graph. Shipped defaults: 6 steps, scheduler simple, sparse budget 0.3 / edges [email protected], 0.3 MP, 56 frames (2.3 s). README with every download link is inside the zip.

    FAQ

    Comments (6)

    incivAug 27, 2026· 2 reactions
    CivitAI

    Thanks for all the links & explanations !

    perfectgf
    Author
    Aug 29, 2026
    @inciv

    Thanks, glad the links were useful.

    Worth grabbing v2 if you already downloaded v1: the sparse attention node was fed from the SageAttention patch, and H3-Optimizations 0.2.16 refuses that combination, so sparse attention was silently switching itself off. v2 rewires it and also fixes the 10Eros download link.

    yajukunAug 27, 2026· 1 reaction
    CivitAI

    Just FYI, you may have to update your HF link for the Eros models, I'm getting a 404 but found it via search.

    perfectgf
    Author
    Aug 29, 2026· 1 reaction
    @yajukun

    Good catch, and it was worse than a typo. The repo I linked is gated, so it answers 401 to anyone who is not logged in and approved, which shows up as a 404. The INT8 convrot weights are actually in a separate, ungated repo from the same author:

    https://huggingface.co/cicalooo/10Eros-Max-h3-int8-convrot

    That one also has the ref2va and TURBO-hybrid variants. Fixed in v2, which is up now, and I re-checked every other link in the README while I was at it. Thanks for flagging it.

    VelantAug 29, 2026· 1 reaction
    CivitAI

    [WARNING] [H3 Optimizations] SPARSE ATTENTION FELL BACK to existing. Reason: preserved an unknown optimized-attention override with full-Q single-call semantics; sparse attention is disabled because the explicit external consumer does not expose an H3 sparse composition contract

    perfectgf
    Author
    Aug 29, 2026
    @Velant

    Thanks for posting the log, that is a real bug in v1 and not a false alarm.

    H3-Optimizations 0.2.16 added a guard that refuses to compose sparse attention with an attention override it does not own. v1 fed the sparse node from the SageAttention patch (601 -> 600 -> 810), so from 0.2.16 on, sparse attention is silently disabled. No error, no failed run, just that warning and none of the speedup.

    Fix you can apply right now in your copy: set the model input of node 810 to node 601 instead of node 600. That is the whole change. You lose nothing by taking Sage out of that chain, because when sparse attention is active it owns attention anyway, so Sage was already being replaced even on older versions. Keep node 600 around if you ever want to run without sparse.

    I retested here after the rewire and the pack logs attention=sparse_kitchen_int8 with no fallback. A v2 with that fix, plus a corrected 10Eros download link, is on its way to this page.

    Workflows
    MiniMax H3

    Looks like we don't have an active mirror for this file right now.

    CivArchive is a community-maintained index — we catalog mirrors that volunteers upload to HuggingFace, torrents, and other public hosts. Looks like no one has uploaded a copy of this file yet.

    Some files do get recovered over time through contributions. If you're looking for this one, feel free to ask in Discord, or help preserve it if you have a copy.

    Details

    Downloads
    379
    Platform
    CivitAI
    Platform Status
    Deleted
    Created
    8/27/2026
    Updated
    9/1/2026
    Deleted
    8/29/2026

    Files

    minimaxH3UltraBoost4StepTurbo_v10I2vT2v.zip