Fix case where upscale model wouldn't be moved to cpu. (#11633)

This commit is contained in:
comfyanonymous
2026-01-04 16:13:50 -08:00
committed by GitHub
parent acbf08cd60
commit 38d0493825

View File

@ -78,6 +78,7 @@ class ImageUpscaleWithModel(io.ComfyNode):
overlap = 32
oom = True
try:
while oom:
try:
steps = in_img.shape[0] * comfy.utils.get_tiled_scale_steps(in_img.shape[3], in_img.shape[2], tile_x=tile, tile_y=tile, overlap=overlap)
@ -88,8 +89,9 @@ class ImageUpscaleWithModel(io.ComfyNode):
tile //= 2
if tile < 128:
raise e
finally:
upscale_model.to("cpu")
s = torch.clamp(s.movedim(-3,-1), min=0, max=1.0)
return io.NodeOutput(s)