We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4587ccb commit ac6be8aCopy full SHA for ac6be8a
otherarch/sdcpp/stable-diffusion.cpp
@@ -401,17 +401,10 @@ class StableDiffusionGGML {
401
use_t5xxl = true;
402
}
403
if (!clip_on_cpu && !ggml_backend_is_cpu(backend) && use_t5xxl) {
404
- #if 0 // kcpp
405
LOG_WARN(
406
"!!!It appears that you are using the T5 model. Some backends may encounter issues with it."
407
"If you notice that the generated images are completely black,"
408
"try running the T5 model on the CPU using the --clip-on-cpu parameter.");
409
- #else
410
- if (conditioner_wtype != GGML_TYPE_F32) {
411
- LOG_INFO("CLIP: Forcing CPU backend for T5");
412
- clip_on_cpu = true;
413
- }
414
- #endif
415
416
if (clip_on_cpu && !ggml_backend_is_cpu(backend)) {
417
LOG_INFO("CLIP: Using CPU backend");
0 commit comments