From 1aa9cf3292499303260533780d25bbff99e076c8 Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Thu, 1 Aug 2024 12:11:57 -0400 Subject: [PATCH] Make lowvram more aggressive on low memory machines. --- comfy/model_management.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/model_management.py b/comfy/model_management.py index 07c13727..de4bd442 100644 --- a/comfy/model_management.py +++ b/comfy/model_management.py @@ -318,7 +318,7 @@ class LoadedModel: return self.model is other.model def minimum_inference_memory(): - return (1024 * 1024 * 1024) + return (1024 * 1024 * 1024) * 1.2 def unload_model_clones(model, unload_weights_only=True, force_unload=True): to_unload = []