From 2c5f0ec681e373b83a0b541e6e5dd2becf5e57fb Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Mon, 27 Feb 2023 20:04:18 -0500 Subject: [PATCH] Small adjustment. --- 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 ced94cc0..2ec6bbea 100644 --- a/comfy/model_management.py +++ b/comfy/model_management.py @@ -25,7 +25,7 @@ try: if total_vram <= 4096: print("Trying to enable lowvram mode because your GPU seems to have 4GB or less. If you don't want this use: --normalvram") set_vram_to = LOW_VRAM - elif total_vram > total_ram * 1.2 and total_vram > 14336: + elif total_vram > total_ram * 1.1 and total_vram > 14336: print("Enabling highvram mode because your GPU has more vram than your computer has ram. If you don't want this use: --normalvram") vram_state = HIGH_VRAM except: