Training-free acceleration toolkit for Diffusion Transformer pipelines
Project description
Figure 1. Accelerating Diffusion Transformer inference across multiple modalities with 50 DDIM Steps on DiT-XL-256x256, 100 DPM-Solver++(3M) SDE steps for a 10s audio sample (spectrogram shown) on Stable Audio Open, 30 Rectified Flow steps on Open-Sora 480p 2s videos
Updates
Release v0.1
SmoothCache now supports generating cache schedues using a zero-intrusion external helper. See run_calibration.py to find out how it generates a schedule compatible with HuggingFace Diffusers DiTPipeline, without requiring any changes to Diffusers implementation!
Introduction
We introduce SmoothCache, a straightforward acceleration technique for DiT architecture models, that's both training-free, flexible and performant. By leveraging layer-wise representation error, our method identifies redundancies in the diffusion process, generates a static caching scheme to reuse output featuremaps and therefore reduces the need for computationally expensive operations. This solution works across different models and modalities, can be easily dropped into existing Diffusion Transformer pipelines, can be stacked on different solvers, and requires no additional training or datasets. SmoothCache consistently outperforms various solvers designed to accelerate the diffusion process, while matching or surpassing the performance of existing modality-specific caching techniques.
Quick Start
Install
pip install dit-smoothcache
Usage - Inference
Inspired by DeepCache, we have implemented drop-in SmoothCache helper classes that easily applies to Huggingface Diffuser DiTPipeline, and original DiT implementations.
Generally, only 3 additional lines needs to be added to the original sampler scripts:
from SmoothCache import <DESIREDCacheHelper>
cache_helper = DiffuserCacheHelper(<MODEL_HANDLER>, schedule=schedule)
cache_helper.enable()
# Original sampler code.
cache_helper.disable()
Usage example with Huggingface Diffuser DiTPipeline:
import json
import torch
from diffusers import DiTPipeline, DPMSolverMultistepScheduler
# Import SmoothCacheHelper
from SmoothCache import DiffuserCacheHelper
# Load the DiT pipeline and scheduler
pipe = DiTPipeline.from_pretrained("facebook/DiT-XL-2-256", torch_dtype=torch.float16)
pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config)
pipe = pipe.to("cuda")
# Initialize the DiffuserCacheHelper with the model
with open("smoothcache_schedules/50-N-3-threshold-0.35.json", "r") as f:
schedule = json.load(f)
cache_helper = DiffuserCacheHelper(pipe.transformer, schedule=schedule)
# Enable the caching helper
cache_helper.enable()
# Prepare the input
words = ["Labrador retriever"]
class_ids = pipe.get_label_ids(words)
# Generate images with the pipeline
generator = torch.manual_seed(33)
image = pipe(class_labels=class_ids, num_inference_steps=50, generator=generator).images[0]
# Restore the original forward method and disable the helper
# disable() should be paired up with enable()
cache_helper.disable()
Usage example with original DiT implementation
import torch
torch.backends.cuda.matmul.allow_tf32 = True
torch.backends.cudnn.allow_tf32 = True
from torchvision.utils import save_image
from diffusion import create_diffusion
from diffusers.models import AutoencoderKL
from download import find_model
from models import DiT_models
import argparse
from SmoothCache import DiTCacheHelper # Import DiTCacheHelper
import json
# Setup PyTorch:
torch.manual_seed(args.seed)
torch.set_grad_enabled(False)
device = "cuda" if torch.cuda.is_available() else "cpu"
if args.ckpt is None:
assert (
args.model == "DiT-XL/2"
), "Only DiT-XL/2 models are available for auto-download."
assert args.image_size in [256, 512]
assert args.num_classes == 1000
# Load model:
latent_size = args.image_size // 8
model = DiT_models[args.model](
input_size=latent_size, num_classes=args.num_classes
).to(device)
ckpt_path = args.ckpt or f"DiT-XL-2-{args.image_size}x{args.image_size}.pt"
state_dict = find_model(ckpt_path)
model.load_state_dict(state_dict)
model.eval() # important!
with open("smoothcache_schedules/50-N-3-threshold-0.35.json", "r") as f:
schedule = json.load(f)
cache_helper = DiTCacheHelper(model, schedule=schedule)
# number of timesteps should be consistent with provided schedules
diffusion = create_diffusion(str(len(schedule[cache_helper.components_to_wrap[0]])))
# Enable the caching helper
cache_helper.enable()
# Sample images:
samples = diffusion.p_sample_loop(
model.forward_with_cfg,
z.shape,
z,
clip_denoised=False,
model_kwargs=model_kwargs,
progress=True,
device=device,
)
samples, _ = samples.chunk(2, dim=0) # Remove null class samples
samples = vae.decode(samples / 0.18215).sample
# Disable the caching helper after sampling
cache_helper.disable()
# Save and display images:
save_image(samples, "sample.png", nrow=4, normalize=True, value_range=(-1, 1))
Usage - Cache Schedule Generation
See run_calibration.py, which generates schedule for the self-attention module (attn1) from Diffusers BasicTransformerBlock block.
Note that only self-attention, and not cross-attention, is enabled in the stock config of Diffusers DiT module. We leave this behavior as-is for the purpose of minimal intrusion.
We welcome all contributions aimed at expending SmoothCache's model coverage and module coverage.
Visualization
256x256 Image Generation Task
Evaluation
Image Generation with DiT-XL/2-256x256
Video Generation with OpenSora
Audio Generation with Stable Audio Open
License
SmoothCache is licensed under the Apache-2.0 license.
Bibtex
@misc{liu2024smoothcacheuniversalinferenceacceleration,
title={SmoothCache: A Universal Inference Acceleration Technique for Diffusion Transformers},
author={Joseph Liu and Joshua Geddes and Ziyu Guo and Haomiao Jiang and Mahesh Kumar Nandwana},
year={2024},
eprint={2411.10510},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/2411.10510},
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dit-smoothcache-0.1.1.tar.gz.
File metadata
- Download URL: dit-smoothcache-0.1.1.tar.gz
- Upload date:
- Size: 11.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a3aed1eeb5e2112ad6f221a64afb8f86913798ef5f09f4e8bbd3ec4a64f3099
|
|
| MD5 |
48a11c998d236a0863a4c4171658c443
|
|
| BLAKE2b-256 |
65e02562d91f6670b6a2aeb6b79b42f625a950139a812d620e973febccf2a1dc
|
File details
Details for the file dit_smoothcache-0.1.1-py3-none-any.whl.
File metadata
- Download URL: dit_smoothcache-0.1.1-py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d38d625c6693f049d290cbe12d334d931a0bcce31a4adbce7c6e2d1b4f91030
|
|
| MD5 |
203bafde0665493f050bf98e4eb81480
|
|
| BLAKE2b-256 |
ca044eb4ac07395202c6884f3dd6651979a60992f478ff5683ca5f6e74de904a
|