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
"try specifying SDXL VAE FP16 Fix with the --vae parameter. "
289
290
"You can find it here: https://huggingface.co/madebyollin/sdxl-vae-fp16-fix/blob/main/sdxl_vae.safetensors");
290
291
}
291
-
} elseif (version == VERSION_SD3_2B || version == VERSION_SD3_5_8B) {
292
+
} elseif (version == VERSION_SD3_2B || version == VERSION_SD3_5_8B || version == VERSION_SD3_5_2B) {
292
293
scale_factor = 1.5305f;
293
294
} elseif (version == VERSION_FLUX_DEV || version == VERSION_FLUX_SCHNELL) {
294
295
scale_factor = 0.3611;
@@ -311,7 +312,7 @@ class StableDiffusionGGML {
311
312
} else {
312
313
clip_backend = backend;
313
314
bool use_t5xxl = false;
314
-
if (version == VERSION_SD3_2B || version == VERSION_SD3_5_8B || version == VERSION_FLUX_DEV || version == VERSION_FLUX_SCHNELL) {
315
+
if (version == VERSION_SD3_2B || version == VERSION_SD3_5_8B || version == VERSION_SD3_5_2B || version == VERSION_FLUX_DEV || version == VERSION_FLUX_SCHNELL) {
315
316
use_t5xxl = true;
316
317
}
317
318
if (!ggml_backend_is_cpu(backend) && use_t5xxl && conditioner_wtype != GGML_TYPE_F32) {
@@ -322,7 +323,7 @@ class StableDiffusionGGML {
322
323
LOG_INFO("CLIP: Using CPU backend");
323
324
clip_backend = ggml_backend_cpu_init();
324
325
}
325
-
if (version == VERSION_SD3_2B || version == VERSION_SD3_5_8B) {
326
+
if (version == VERSION_SD3_2B || version == VERSION_SD3_5_8B || version == VERSION_SD3_5_2B) {
if (version == VERSION_SD3_2B || version == VERSION_SD3_5_8B || version == VERSION_FLUX_DEV || version == VERSION_FLUX_SCHNELL) {
460
+
if (version == VERSION_SD3_2B || version == VERSION_SD3_5_8B || version == VERSION_SD3_5_2B || version == VERSION_FLUX_DEV || version == VERSION_FLUX_SCHNELL) {
0 commit comments