Merge pull request #16275 from AUTOMATIC1111/fix-image-upscale-on-cpu

fix image upscale on cpu
This commit is contained in:
AUTOMATIC1111 2024-07-27 15:47:49 +03:00
parent c19d044364
commit 1d7e9eca09
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ def upscale_pil_patch(model, img: Image.Image) -> Image.Image:
""" """
param = torch_utils.get_param(model) param = torch_utils.get_param(model)
with torch.no_grad(): with torch.inference_mode():
tensor = pil_image_to_torch_bgr(img).unsqueeze(0) # add batch dimension tensor = pil_image_to_torch_bgr(img).unsqueeze(0) # add batch dimension
tensor = tensor.to(device=param.device, dtype=param.dtype) tensor = tensor.to(device=param.device, dtype=param.dtype)
with devices.without_autocast(): with devices.without_autocast():