explaingit

blacksnowskill/anima_booster

17PythonAudience · vibe coderComplexity · 3/5ActiveSetup · moderate

TLDR

ComfyUI add-on that speeds up the Anima DiT 2B image model by 3.5-5x on NVIDIA GPUs using torch.compile, SageAttention, and adaptive TeaCache skipping.

Mindmap

mindmap
  root((ANIMA_BOOSTER))
    Inputs
      Anima DiT 2B model
      ComfyUI workflow
    Outputs
      Accelerated images
      Compiled model cache
    Use Cases
      Faster local image gen
      Lower VRAM use
      Skip late steps
    Tech Stack
      Python
      PyTorch
      Triton
      SageAttention
      ComfyUI

Things people build with this

USE CASE 1

Speed up Anima DiT 2B image generation in ComfyUI by 3 to 5 times on an NVIDIA GPU.

USE CASE 2

Drop VRAM use during local image generation by switching to SageAttention 8-bit math.

USE CASE 3

Skip redundant late-step computation in long workflows using Adaptive TeaCache.

USE CASE 4

Install precompiled .whl files for SageAttention and Triton on portable ComfyUI for Windows.

Tech stack

PythonPyTorchTritonSageAttentionComfyUICUDA

Getting it running

Difficulty · moderate Time to first run · 30min

Windows portable ComfyUI users need precompiled SageAttention and Triton wheels because the default pip install needs a C++ compiler.

In plain English

ANIMA_BOOSTER, also called BSS, is an add-on package for ComfyUI, a popular tool for running image generation models on your own computer. It targets one specific model called Anima DiT 2B and tries to make it run faster while using less video memory on NVIDIA graphics cards. The author says the combined speed-up is between 3.5 and 5.0 times the speed of the default Anima workflow, with no visible drop in image quality. The package bundles three main pieces. The first is a one-click toggle for torch.compile, a PyTorch feature that compiles parts of the model the first time you run it so later runs go faster, claimed at 20 to 40 percent. The second is SageAttention, a faster 8-bit version of a calculation that image models do a lot of. The third is something the author calls Adaptive TeaCache, which skips repeat calculations in later steps of the image generation when the picture is mostly finished and small changes do not matter as much. Installation is described two ways: through the built-in ComfyUI Manager by pasting the GitHub URL, or by cloning the repository into the custom_nodes folder by hand. The README also has a long section about Windows users who run the portable ComfyUI build, because they need precompiled .whl files for SageAttention and Triton instead of the normal pip install, which would fail without a C++ compiler installed. Once installed, three new nodes appear under the BSS/AnimaBooster category: a model loader, a TeaCache node with two version modes, and a latent image utility that keeps image sizes aligned to the model's grid. The README is clear that the optional libraries are optional, and the nodes will quietly turn off features that need missing libraries rather than crashing.

Copy-paste prompts

Prompt 1
Install BlackSnowSkill/ANIMA_BOOSTER on portable ComfyUI for Windows. Show the exact .whl files for SageAttention and Triton and the pip command to use.
Prompt 2
Build a ComfyUI workflow with the BSS model loader, TeaCache node, and latent image utility from ANIMA_BOOSTER. Generate a 1024x1024 Anima DiT 2B image.
Prompt 3
Compare torch.compile, SageAttention, and Adaptive TeaCache in ANIMA_BOOSTER. Show how to toggle each one and measure the per-step speed-up.
Prompt 4
Adaptive TeaCache in ANIMA_BOOSTER gives me visible artifacts on detailed scenes. Walk through the two version modes and how to tune the threshold.
Prompt 5
Run ANIMA_BOOSTER on a 12 GB NVIDIA card and report typical it/s on Anima DiT 2B at 1024x1024 versus the default ComfyUI workflow.
Open on GitHub → Explain another repo

Generated 2026-05-22 · Model: sonnet-4-6 · Verify against the repo before relying on details.