fix an issue where VAE would remain in fp16 after an auto-switch to fp32

This commit is contained in:
AUTOMATIC1111 2023-08-30 21:13:24 +03:00
parent 0cdbd90d6b
commit d43333ff71

View File

@ -95,6 +95,8 @@ def images_tensor_to_samples(image, approximation=None, model=None):
else:
if model is None:
model = shared.sd_model
model.first_stage_model.to(devices.dtype_vae)
image = image.to(shared.device, dtype=devices.dtype_vae)
image = image * 2 - 1
if len(image) > 1: