How to deploy FLUX.1-schnell on a GPU cloud
A 11.9B-parameter text-to-image model. Full specs, license and use cases.
FLUX.1-schnell size and hardware requirements
| Precision | Weight size on disk | Required VRAM | Cheapest live fit | GPUs needed | Est. $/hr (full fit) |
|---|---|---|---|---|---|
| BF16 | 22.1 GB | 26.6 GB | RTX A6000 | 1 | $0.330/hr |
| FP8 (quantized) | 11.1 GB | 13.3 GB | RTX 4080 | 1 | $0.158/hr |
| INT4 (quantized) | 5.5 GB | 6.6 GB | RTX 4070 Super | 1 | $0.110/hr |
How to run FLUX.1-schnell
Run FLUX.1-schnell with Diffusers (Python)
Generic example using Hugging Face's diffusers library, not from the model's own docs.
from diffusers import DiffusionPipeline
import torch
pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-schnell", torch_dtype=torch.bfloat16)
pipe.to("cuda")
image = pipe("a description of the scene").images[0]
image.save("output.png")Run FLUX.1-schnell with ComfyUI
Aquanode's ComfyUI template comes with ComfyUI preinstalled. Download black-forest-labs/FLUX.1-schnell's checkpoint into the models folder and load it in a workflow; this is a real Aquanode template, but loading this specific checkpoint is a manual step, not a one-click deploy.
Deploy FLUX.1-schnell on Aquanode
Aquanode has no one-click deploy template for FLUX.1-schnell; it comes with ComfyUI preinstalled, so you only need to load the checkpoint, not install anything. Aquanode sells GPU pods billed per second, not a hosted inference API.
- Launch the ComfyUI template sized to the requirement above (1× RTX A6000 or larger).
- Open a terminal on the pod, or save one of the commands above as a startup script so it runs automatically the first time the pod boots.
- Run the command and connect to the resulting endpoint.