From 9eaba63e1a9f2b27701cf0a0694aeed777da42f5 Mon Sep 17 00:00:00 2001 From: comfyanonymous <121283862+comfyanonymous@users.noreply.github.com> Date: Sat, 8 Aug 2026 14:51:05 -0700 Subject: [PATCH] Fix upscale models breaking on non dynamic vram low vram. (#15437) --- comfy_extras/nodes_upscale_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_extras/nodes_upscale_model.py b/comfy_extras/nodes_upscale_model.py index a4d692955..d1e0401b9 100644 --- a/comfy_extras/nodes_upscale_model.py +++ b/comfy_extras/nodes_upscale_model.py @@ -72,7 +72,7 @@ class ImageUpscaleWithModel(io.ComfyNode): memory_required = (512 * 512 * 3) * image.element_size() * max(upscale_model.scale, 1.0) * 384.0 #The 384.0 is an estimate of how much some of these models take, TODO: make it more accurate memory_required += image.nelement() * image.element_size() - model_management.load_models_gpu([upscale_model.patcher], memory_required=memory_required) + model_management.load_models_gpu([upscale_model.patcher], memory_required=memory_required, force_full_load=True) in_img = image.movedim(-1,-3).to(device)