Skip to content

Latest commit

 

History

History
78 lines (52 loc) · 4.35 KB

File metadata and controls

78 lines (52 loc) · 4.35 KB

Use Flash Attention to save memory and improve speed.

Enabling flash attention for the diffusion model reduces memory usage by varying amounts of MB. eg.:

  • flux 768x768 ~600mb
  • SD2 768x768 ~1400mb

For most backends, it slows things down, but for cuda it generally speeds it up too. At the moment, it is only supported for some models and some backends (like cpu, cuda/rocm, metal).

Run by adding --diffusion-fa to the arguments and watch for:

[INFO ] stable-diffusion.cpp:312  - Using flash attention in the diffusion model

and the compute buffer shrink in the debug log:

[DEBUG] ggml_extend.hpp:1004 - flux compute buffer size: 650.00 MB(VRAM)

Offload weights to the CPU to save VRAM without reducing generation speed.

Using --offload-to-cpu allows you to offload weights to the CPU, saving VRAM without reducing generation speed.

Use params backend to reduce VRAM or RAM usage.

--params-backend controls where model parameters are kept. If it is not set, parameters use the same backend as --backend, so a GPU runtime backend also keeps parameters in VRAM.

Use CPU params to reduce VRAM usage:

--backend cuda0 --params-backend cpu

This keeps model weights in system RAM and moves them to the runtime backend when needed. In the example CLI/server, --offload-to-cpu is a compatibility shortcut that prepends *=cpu to --params-backend before creating the context, so explicit module assignments can still override it:

--offload-to-cpu --params-backend te=disk

Use disk params to reduce both VRAM and RAM usage:

--backend cuda0 --params-backend disk

This reloads parameters from the model file on demand and releases them after use. It has the lowest memory residency, but can be slower because weights must be read again. disk is never selected implicitly; set it explicitly when RAM usage matters more than reload cost.

Per-module assignments can target only the largest modules:

--backend cuda0 --params-backend diffusion=disk,te=cpu,vae=cpu

See backend selection for full syntax.

Run models that don't fit in VRAM (CPU streaming).

--offload-to-cpu alone keeps every parameter in system RAM and stages it to the runtime backend on first use, then leaves it resident there. If the diffusion model is larger than the runtime backend's free memory (e.g. Flux dev at bf16 on an 8 GiB GPU), that residency stops fitting during the sampling loop and generation fails. Two additional flags make it fit by trading a small amount of speed for room:

  • --max-vram <GiB> sets a VRAM budget the graph-cut segmenter respects. It cuts each forward pass into segments sized to fit the budget, running them in sequence and freeing intermediate activations between them. Negative values auto-detect free VRAM and spare the given amount (--max-vram -1 uses most of the free VRAM and keeps ~1 GiB headroom), a positive value caps the budget, 0 disables segmentation.
  • --stream-layers streams the diffusion model's transformer blocks one at a time. Each block's parameters are copied from the CPU to the runtime backend just before it runs and evicted when the residency budget is reached. Prefetching hides most of the copy latency behind compute. This flag only takes effect when the diffusion params backend is CPU, so it must be combined with --offload-to-cpu (or an explicit --params-backend diffusion=cpu); a warning is logged and the flag is ignored otherwise.

The three flags stack. The recommended shape for "biggest model my card can host":

sd-cli --diffusion-model flux1-dev.safetensors ... \
       --offload-to-cpu --max-vram -1 --stream-layers
  • --offload-to-cpu: params in RAM, staged as needed.
  • --max-vram -1: use most of the free VRAM as the compute budget, spare 1 GiB headroom, let the graph-cut segmenter split each forward pass to fit.
  • --stream-layers: on top of the segmenter, stream individual transformer blocks so their weights don't all need to be resident at once.

Ordered from fastest to smallest-VRAM: no flags → --offload-to-cpu--offload-to-cpu --max-vram <N>--offload-to-cpu --max-vram <N> --stream-layers. Each step down costs a few percent of throughput to buy more room; combined they can run models roughly 3-4x larger than the raw VRAM would allow.

Use quantization to reduce memory usage.

quantization