Skip to main content

1. Quick start

Install the runtime dependencies with uv pip install "sglang[diffusion]" --prerelease=allow, then install this integration from its source checkout with uv pip install -e "python[diffusion]". The picker uses Qwen/Qwen-Image-2.1; you can also set a local checkpoint directory under Variables. The recipes target NVIDIA CUDA on Linux; the picker marks which single-GPU workloads have been verified with the full checkpoint. Use Setup to select text-to-image, single-image editing, or multi-image editing. Server controls placement, attention, encoder scheduling, VAE tiling, graph execution, and request batching. Request controls the background, resolution, steps, and output count. Set reference PNG paths under Variables; edits upload files from the machine running cURL, so they need not exist on the server. Hardware selection applies the recommended placement for that GPU. H200, B200, RTX PRO 6000 96GB, and DGX Spark keep weights resident; RTX 5090 and RTX 4090 offload selected components to fit the full pipeline. Untested topologies and feature combinations remain selectable and are labeled Unverified. Invalid topology combinations disable Copy. This integration currently uses the Python/source command; no published Docker image is verified. Both request modes return base64 PNGs. To save all returned images, append > response.json to the request command, then run:
Command
The picker defaults to native BF16/FP32 precision, exact attention, eager execution, and full-image VAE decoding. Commands omit default values, including one GPU, encoder auto scheduling, and batch size one. Explicit placement and attention overrides preserve each recipe. Measured on 2026-09-20 at 1024×1024, 40 steps, CFG 1, and one RGBA PNG per request. Times are median HTTP latency after warmup, including PNG serialization and excluding startup; VRAM is the sampled request-phase peak. Prompts and software versions affect both latency and memory use. RTX 5090 uses DiT layerwise offload and Torch SDPA; its recipe has not been retested with the updated checkpoint. Both RTX 5090 and RTX PRO 6000 use SDPA when FlashAttention is selected in this runtime. CPU offload requires host RAM.

DGX Spark

Select DGX Spark for one GB10 GPU on Linux ARM64 with CUDA 13. Use the source installation above. The recommended configuration keeps all components resident, uses native BF16/FP32 precision, and lets the runtime select Torch SDPA:
Command
The 128 GB unified memory is shared by the CPU and GPU. CPU offload is unnecessary for the verified single-image 1024×1024 workload. Keep full-image VAE decoding and eager execution. Generation, editing, transparent generation, and transparent editing were verified with PyTorch 2.13.0+cu130. Spark reports no separate VRAM usage in nvidia-smi. This recipe covers one Spark; multi-node deployment and batching remain unverified.

Batching

Keep Request batching → Off and Outputs → 1 for interactive use. Batching increases individual request latency and does not guarantee higher throughput. Measure your workload before enabling it. Cross-request batching merges compatible text-to-image requests. Image edits run separately; Outputs controls multiple images within one request. On RTX 4090, selecting multiple outputs or request batching switches to DiT layerwise offload for memory headroom. Restart with the updated Server command. Batching preserves native precision but can change floating-point rounding and output pixels, even with the same seed. See Inference batching for admission rules and metrics.

2. Model capabilities

Qwen-Image 2.1 supports text-to-image generation, single- and multi-image editing, and RGBA output. Use one checkpoint for all modes. For multi-round editing, send the previous output as the next reference image. The server does not retain conversation state. Condition-prefix KV caches are reused within one request; cross-request and dialogue-history caching are not implemented.

3. Checkpoint layout

The checkpoint directory must contain model_index.json and the processor, text_encoder, transformer, vae, and scheduler subdirectories. The processor includes the Qwen3-VL tokenizer assets; no separate tokenizer directory is needed. Use --model-id Qwen-Image-2.1 when your local checkpoint directory has another name. Older Qwen-Image and Qwen-Image-Edit transformer/VAE weights are incompatible. Keep SGLang’s installed dependencies. Its native encoder preserves the reference’s Transformers 4.57.3 conditioning semantics without requiring a runtime-wide downgrade.

Transparent PNG output

Choose Transparent / alpha under Request and describe an isolated subject on a transparent background in the prompt. The picker adds this instruction and selects PNG. background: "transparent" alone does not change conditioning or remove the background; JPEG cannot retain alpha. PNG references retain their alpha channel during editing; RGB references receive an opaque alpha channel. The model predicts continuous alpha values, including partly transparent edges, without thresholding or background removal.

4. Offline requests

Defaults are 1024×1024, 40 steps, CFG 1, and seed 42; output saving is enabled. For GPUs that need offload, also pass the placement flags from the picker.

Text-to-image

Command

Image-conditioned editing

Command
Height and width must be positive multiples of 32. Reference images preserve their aspect ratio and are resized to approximately the requested output area; the same resized image feeds the VLM and VAE. Image labels are deterministic (Picture 1, Picture 2, and so on). Multiple outputs receive independent noise seeds and independent prefix caches.

5. Runtime features

The default is 40 Euler flow-matching steps with CFG disabled. For CFG, provide --negative-prompt and --guidance-scale greater than one. The API requires a text prompt; precomputed embeddings alone are insufficient.
  • Parallelism: TP, Ulysses, Ring, CFG parallelism, and encoder folding are available in the picker. The target token count, (height / 16) × (width / 16), must be divisible by the SP degree. Ring requires FlashAttention or SageAttention.
  • Memory: use the hardware’s recommended placement. All components layerwise also streams encoder and VAE blocks, trading transfers for lower device memory.
  • VAE: full-image decoding is the default. Tiling can change pixels near boundaries. With two or more GPUs, Spatial shard distributes full-image decoding without enabling tiling; floating-point rounding can still differ.
See the compatibility inventory for configuration support and the performance guide for shared runtime options.

Quantization

Native precision is the default. Quantization changes image and alpha values; check quality on your own prompts and reference images. Set compatible component paths under Variables when choosing an exported format. Adding quantization metadata to native weights does not convert them. For online FP8, use --component-quantizations.transformer fp8, --component-quantizations.text_encoder fp8, or both.

Serialized FP8 components

Select a Serialized FP8 option and set the exported component directories. Each directory needs its architecture config.json, weights, and quantization metadata. Use --component-paths.transformer and/or --component-paths.text_encoder; omit online quantization flags. See the quantization guide for formats.

GGUF components

Select a GGUF option and set the .gguf files. The picker uses --component-weights-paths.transformer and/or --component-weights-paths.text_encoder, retaining architecture configs from the base checkpoint. Each file must contain the entire component with native tensor names. GGUF reduces weight storage but does not guarantee lower latency. See the GGUF guide.

NVFP4 components

NVFP4 requires Blackwell and compatible ModelOpt exports. Select the component directories using --component-paths.transformer and/or --component-paths.text_encoder. Keep the FlashInfer backend at auto on RTX 5090, RTX PRO 6000, and DGX Spark: TensorRT-LLM FP4 GEMM does not support SM12.x. These GPUs remain unverified for this model’s NVFP4 exports. See the NVFP4 guide.

LoRA and execution options

Use --lora-path and --lora-merge-mode dynamic|merge or the runtime adapter APIs. Diffusers adapter keys prefixed with transformer. map to the native DiT. Keep eager execution as the default. Breakable CUDA Graph replay requires matching resolution and condition-prefix length; unseen shapes run eagerly. Text buckets alone do not guarantee replay. SageAttention and Cache-DiT can change numerical results and require quality checks for your workload.

Cache-DiT

Enable --enable-cache-dit true or SGLANG_CACHE_DIT_ENABLED=true. 2.1 prefix KV is per layer: each block slices caches by _layer_id. Cache-DiT wraps transformer_blocks and forwards the same extras to every layer; without that slice, later layers reuse layer 0 and the image collapses to color noise. See the Cache-DiT guide.