1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-27 17:22:53 +03:00
This commit is contained in:
yiyi@huggingface.co
2025-12-01 00:35:30 +00:00
parent d7f399d1b2
commit bdfab30766

View File

@@ -60,6 +60,9 @@ export_to_video(video, "output.mp4", fps=15)
- **A100/A800/RTX 4090:** `flash` or `flash_varlen`
- **Other GPUs:** `sage`
Refer to the [Attention backends](../../optimization/attention_backends) guide for more details about using a different backend.
```py
pipe.transformer.set_attention_backend("flash_varlen") # or your preferred backend
```