mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-07-10 09:27:17 +08:00
Fix black images on some flux models in fp16. (#8495)
This commit is contained in:
parent
373a9386a4
commit
af1eb58be8
@ -187,6 +187,9 @@ class Flux(nn.Module):
|
||||
if add is not None:
|
||||
img[:, txt.shape[1] :, ...] += add
|
||||
|
||||
if img.dtype == torch.float16:
|
||||
img = torch.nan_to_num(img, nan=0.0, posinf=65504, neginf=-65504)
|
||||
|
||||
img = img[:, txt.shape[1] :, ...]
|
||||
|
||||
img = self.final_layer(img, vec) # (N, T, patch_size ** 2 * out_channels)
|
||||
|
Loading…
x
Reference in New Issue
Block a user