explaingit

blacksnowskill/anima_booster

Analysis updated 2026-06-24

15PythonAudience · vibe coderComplexity · 3/5Setup · 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
Click or tap to explore — scroll the page freely

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

What do people build with it?

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.

What is it built with?

PythonPyTorchTritonSageAttentionComfyUICUDA

How does it compare?

blacksnowskill/anima_booster13127905/deep-learning-based-air-gesture-text-recognition-6xvl/paralives-plugins-index
Stars151515
LanguagePythonPythonPython
Setup difficultymoderatemoderateeasy
Complexity3/53/52/5
Audiencevibe coderdevelopergeneral

Figures from each repo's GitHub metadata at analysis time.

How do you get 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.

Frequently asked questions

What is anima_booster?

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.

What language is anima_booster written in?

Mainly Python. The stack also includes Python, PyTorch, Triton.

How hard is anima_booster to set up?

Setup difficulty is rated moderate, with roughly 30min to a first successful run.

Who is anima_booster for?

Mainly vibe coder.

Open on GitHub → Explain another repo

This repo across BitVibe Labs

Verify against the repo before relying on details.