Pykeio Diffusers Save Abandoned

A modular Rust library for super fast Stable Diffusion inference - 45% faster than PyTorch 🔮

Project README
pyke Diffusers Gallery of generated images GitHub Workflow Status Crates.io Discord

pyke Diffusers is a modular Rust library for pretrained diffusion model inference to generate images using ONNX Runtime for acceleration on both CPUs & GPUs.

Features

  • 🔮 Text-to-image for Stable Diffusion v1 & v2: pyke Diffusers currently supports text-to-image generation with Stable Diffusion v1, v2, & v2.1 based models.
  • ⚡ Optimized for both CPU and GPU inference - 45% faster than PyTorch, and uses 20% less memory
🔮 Memory usage Generation time
🤗 4.1 GB 68.0 s
3.3 GB 37.4 s

Ryzen 5 5600X + NVIDIA GTX 1660 w/ CUDA

  • đŸĒļ Memory-efficient pipeline to run with <2GB of RAM on mobile devices
  • 🔃 Textual inversion in both positive & negative prompts
  • ✒ī¸ Prompt weighting, e.g. a (((house:1.3)) [on] a (hill:0.5), sun, (((sky))).
  • 📋 Implements many schedulers: DPM/DPM++, DDIM, DDPM, Euler/Euler a, LMS

Prerequisites

You'll need Rust v1.62.1+ to use pyke Diffusers.

  • If using CPU: recent (no earlier than Haswell/Zen) x86-64 CPU for best results. ARM64 is supported, but only recommended for use with Apple silicon hardware.
  • If using CUDA: CUDA >= v11.6, cuDNN v8.2.x more info
  • If using TensorRT: CUDA >= v11.6, TensorRT v8.4 more info
  • If using ROCm: ROCm v5.2 more info
  • If using DirectML: DirectX 12 compatible GPU, Windows 10 v1903+ more info

Only generic CPU, CUDA, and TensorRT have prebuilt binaries available (for now). Other execution providers will require you to manually build them; see the ONNX Runtime & ort docs for more info.

Usage

Add the following to your Cargo.toml:

[dependencies]
pyke-diffusers = { git = "https://github.com/pykeio/diffusers", rev = "69c33b996416ca42535e4f524068081b93486770" } 
# if you'd like to use CUDA:
pyke-diffusers = { git = "https://github.com/pykeio/diffusers", rev = "69c33b996416ca42535e4f524068081b93486770", features = [ "ort-cuda" ] }

The default features enable some commonly used schedulers and pipelines.

To run text-to-image inference with a Stable Diffusion model:

use pyke_diffusers::{
    EulerDiscreteScheduler, OrtEnvironment, SchedulerOptimizedDefaults, StableDiffusionOptions, StableDiffusionPipeline,
    StableDiffusionTxt2ImgOptions
};

let environment = OrtEnvironment::default().into_arc();
let mut scheduler = EulerDiscreteScheduler::stable_diffusion_v1_optimized_default()?;
let pipeline = StableDiffusionPipeline::new(&environment, "./stable-diffusion-v1-5", StableDiffusionOptions::default())?;

let mut imgs = StableDiffusionTxt2ImgOptions::default()
    .with_prompt("photo of a red fox")
    .run(&pipeline, &mut scheduler)?;

imgs.remove(0).into_rgb8().save("result.png")?;

Examples

pyke-diffusers includes an interactive Stable Diffusion demo. Run it with:

$ cargo run --example stable-diffusion-interactive --features ort-cuda -- ~/path/to/stable-diffusion/

See examples/ for more examples and the docs for more detailed information.

Converting models

pyke Diffusers currently supports Stable Diffusion v1, v2, and its derivatives.

To convert a model from a Hugging Face diffusers model:

  1. Create and activate a virtual environment.
  2. Install Python requirements:
    • install torch with CUDA: python3 -m pip install torch --extra-index-url https://download.pytorch.org/whl/cu116
    • install dependencies: python3 -m pip install -r requirements.txt
  3. If you are converting a model directly from Hugging Face, log in to Hugging Face Hub with huggingface-cli login - this can be skipped if you have the model on disk
  4. Convert your model with scripts/hf2pyke.py:
    • To convert a float32 model from HF (recommended for CPU inference): python3 scripts/hf2pyke.py runwayml/stable-diffusion-v1-5 ~/pyke-diffusers-sd15/
    • To convert a float32 model from disk: python3 scripts/hf2pyke.py ~/stable-diffusion-v1-5/ ~/pyke-diffusers-sd15/
    • To convert a float16 model from HF (recommended for GPU inference): python3 scripts/hf2pyke.py --fp16 runwayml/stable-diffusion-v1-5@fp16 ~/pyke-diffusers-sd15-fp16/
    • To convert a float16 model from disk: python3 scripts/hf2pyke.py --fp16 ~/stable-diffusion-v1-5-fp16/ ~/pyke-diffusers-sd15-fp16/

float16 models are faster on some GPUs and use less memory. hf2pyke supports a few options to improve performance or ORT execution provider compatibility. See python3 scripts/hf2pyke.py --help.

ONNX Runtime binaries

When running the examples in this repo on Windows, you'll need to copy the onnxruntime* dylibs from target/debug/ to target/debug/examples/ on first run. You'll also need to copy the dylibs to target/debug/deps/ if your project uses pyke Diffusers in a Cargo test.

CUDA and other execution providers

CUDA is the only alternative execution provider available with no setup required. Simply enable pyke Diffusers' ort-cuda feature and enable DiffusionDevice::CUDA; see the docs or the stable-diffusion example for more info. You may need to rebuild your project for ort to copy the libraries again.

For other EPs like DirectML or oneDNN, you'll need to build ONNX Runtime from source. See ort's notes on execution providers.

Low memory usage

Lower resolution generations require less memory usage.

A StableDiffusionMemoryOptimizedPipeline exists for environments with low memory. This pipeline removes the safety checker and will only load models when they are required and unloads them immediately after. This will heavily impact performance and should only be used in extreme cases.

Quantization

In extremely constrained environments (e.g. <= 4GB RAM), it is also possible to produce a quantized int8 model. The int8 model's quality is heavily impacted, but faster and less memory intensive on CPUs.

To convert an int8 model:

$ python3 scripts/hf2pyke.py --quantize=ut ~/stable-diffusion-v1-5/ ~/pyke-diffusers-sd15-quantized/

--quantize=ut will quantize only the UNet and text encoder using uint8 mode for best quality and performance. You can choose to convert the other models using the following format:

  • each model is assigned a letter: u for UNet, v for VAE, and t for text encoder.
  • a lowercase letter means the model will be quantized to uint8
  • an uppercase letter means the model will be quantized to int8

Typically, uint8 is higher quality and faster, but you can play around with the settings to see if quality or speed improves.

A combination of 256x256 image generation via StableDiffusionMemoryOptimizedPipeline with a uint8 UNet only requires 1.3 GB of memory usage.

Roadmap

  • Import from original Stable Diffusion checkpoints
  • Graph fusion for better optimization
  • Implement img2img, inpainting, and upscaling (#2)
  • Textual inversion
  • VAE approximation
  • CLIP layer skip
  • Rewrite scheduler system (#16)
  • Acceleration for M1 Macs (#14)
  • Web interface
  • Batch generation
  • Explore other backends (pyke's DragonML, tract)
Open Source Agenda is not affiliated with "Pykeio Diffusers" Project. README Source: pykeio/diffusers
Stars
170
Open Issues
0
Last Commit
6 months ago
License

Open Source Agenda Badge

Open Source Agenda Rating