cli_args: bump clamp to 128BGB (#15068)

Some long running chaos testing on a 512GB RAM RTX6000 pro showed that this
is a little bit too low for common template workflows switching around. The
original number was just a guess from me, so go with the scientific result
instead.
This commit is contained in:
rattus
2026-07-25 09:48:52 +10:00
committed by GitHub
parent f8a3fd9d79
commit 36aec0d086
2 changed files with 2 additions and 2 deletions

View File

@@ -319,7 +319,7 @@ def prompt_worker(q, server_instance):
cache_ram_inactive = 0
if not args.cache_classic and not args.cache_none and args.cache_lru <= 0:
cache_ram = min(10.0, max(2.0, comfy.model_management.total_ram * 0.10 / 1024.0))
cache_ram_inactive = min(96.0, comfy.model_management.total_ram / 1024.0)
cache_ram_inactive = min(128.0, comfy.model_management.total_ram / 1024.0)
if len(args.cache_ram) > 0:
cache_ram = args.cache_ram[0]
if len(args.cache_ram) > 1: