You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- !!!The VAE in SDXL encounters NaN issues under FP16, but unfortunately, the ggml_conv_2d only operates under FP16. Hence, a parameter is needed to specify the VAE that has fixed the FP16 NaN issue. You can find it here: [SDXL VAE FP16 Fix](https://huggingface.co/madebyollin/sdxl-vae-fp16-fix/blob/main/sdxl_vae.safetensors).
21
20
-[SD3/SD3.5](./docs/sd3.md)
22
21
-[Flux-dev/Flux-schnell](./docs/flux.md)
23
22
-[Chroma](./docs/chroma.md)
@@ -365,6 +364,7 @@ arguments:
365
364
--vae-tile-size [X]x[Y] tile size for vae tiling (default: 32x32)
366
365
--vae-relative-tile-size [X]x[Y] relative tile size for vae tiling, in fraction of image size if < 1, in number of tiles per dim if >=1 (overrides --vae-tile-size)
367
366
--vae-tile-overlap OVERLAP tile overlap for vae tiling, in fraction of tile size (default: 0.5)
367
+
--force-sdxl-vae-conv-scale force use of conv scale on sdxl vae
368
368
--vae-on-cpu keep vae in cpu (for low vram)
369
369
--clip-on-cpu keep clip in cpu (for low vram)
370
370
--diffusion-fa use flash attention in the diffusion model (for low vram)
printf(" --vae-tile-size [X]x[Y] tile size for vae tiling (default: 32x32)\n");
293
295
printf(" --vae-relative-tile-size [X]x[Y] relative tile size for vae tiling, in fraction of image size if < 1, in number of tiles per dim if >=1 (overrides --vae-tile-size)\n");
294
296
printf(" --vae-tile-overlap OVERLAP tile overlap for vae tiling, in fraction of tile size (default: 0.5)\n");
297
+
printf(" --force-sdxl-vae-conv-scale force use of conv scale on sdxl vae\n");
295
298
printf(" --vae-on-cpu keep vae in cpu (for low vram)\n");
296
299
printf(" --clip-on-cpu keep clip in cpu (for low vram)\n");
297
300
printf(" --diffusion-fa use flash attention in the diffusion model (for low vram)\n");
0 commit comments