Skip to content

Commit 6265a23

Browse files
Add warning for users who disable dynamic vram. (Comfy-Org#13113)
1 parent d49420b commit 6265a23

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

main.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -471,6 +471,9 @@ async def start_all():
471471
if sys.version_info.major == 3 and sys.version_info.minor < 10:
472472
logging.warning("WARNING: You are using a python version older than 3.10, please upgrade to a newer one. 3.12 and above is recommended.")
473473

474+
if args.disable_dynamic_vram:
475+
logging.warning("Dynamic vram disabled with argument. If you have any issues with dynamic vram enabled please give us a detailed reports as this argument will be removed soon.")
476+
474477
event_loop, _, start_all_func = start_comfyui()
475478
try:
476479
x = start_all_func()

0 commit comments

Comments
 (0)