fix: correct encoder channels for flux2 (#1346)

This commit is contained in:
Daniele 2026-03-16 15:16:43 +01:00 committed by GitHub
parent 862a6586cb
commit 997bb11fb6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -613,6 +613,9 @@ public:
int get_encoder_output_channels() { int get_encoder_output_channels() {
int factor = dd_config.double_z ? 2 : 1; int factor = dd_config.double_z ? 2 : 1;
if (sd_version_is_flux2(version)) {
return dd_config.z_channels * 4;
}
return dd_config.z_channels * factor; return dd_config.z_channels * factor;
} }
}; };