Skip to content

Commit 3db7fb1

Browse files
committed
Fix radiance proj support
1 parent c1226d6 commit 3db7fb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stable-diffusion.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1191,7 +1191,7 @@ class StableDiffusionGGML {
11911191
LOG_WARN("No latent to RGB projection known for this model");
11921192
return;
11931193
}
1194-
} else if (dim == 4) {
1194+
} else if (dim == 3) {
11951195
// Do nothing, assuming already RGB latents
11961196
} else {
11971197
LOG_WARN("No latent to RGB projection known for this model");

0 commit comments

Comments
 (0)