Skip to content

Commit 1aa9cf3

Browse files
Make lowvram more aggressive on low memory machines.
1 parent 2f88d19 commit 1aa9cf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

comfy/model_management.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ def __eq__(self, other):
318318
return self.model is other.model
319319

320320
def minimum_inference_memory():
321-
return (1024 * 1024 * 1024)
321+
return (1024 * 1024 * 1024) * 1.2
322322

323323
def unload_model_clones(model, unload_weights_only=True, force_unload=True):
324324
to_unload = []

0 commit comments

Comments
 (0)