Compare commits

...

2 Commits

Author SHA1 Message Date
Bradley Reynolds
99f8db1874
Merge 5ed09898bb into d0f3752e33 2025-01-07 16:33:14 -06:00
Bradley Reynolds
5ed09898bb
Convert latents_ubyte to 8-bit unsigned int before converting to CPU 2024-12-31 15:13:23 -06:00

View File

@ -12,7 +12,9 @@ MAX_PREVIEW_RESOLUTION = args.preview_size
def preview_to_image(latent_image):
latents_ubyte = (((latent_image + 1.0) / 2.0).clamp(0, 1) # change scale from -1..1 to 0..1
.mul(0xFF) # to 0..255
).to(device="cpu", dtype=torch.uint8, non_blocking=comfy.model_management.device_supports_non_blocking(latent_image.device))
)
latents_ubyte = latents_ubyte.to(dtype=torch.uint8)
latents_ubyte = latents_ubyte.to(device="cpu", dtype=torch.uint8, non_blocking=comfy.model_management.device_supports_non_blocking(latent_image.device))
return Image.fromarray(latents_ubyte.numpy())