From d74837e4f530c35ddf664cee4a872c25581b963c Mon Sep 17 00:00:00 2001 From: patientx Date: Sun, 30 Nov 2025 15:18:38 +0300 Subject: [PATCH] Add '--disable-async-offload' to command line args Added '--disable-async-offload' argument to command line options to improve compatibility with older GPUs. --- comfyui.bat | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/comfyui.bat b/comfyui.bat index 9c8bb5273..0ff3b5cf6 100644 --- a/comfyui.bat +++ b/comfyui.bat @@ -4,7 +4,9 @@ set "PYTHON=%~dp0venv\Scripts\python.exe" set "GIT=" set "VENV_DIR=.\venv" -set "COMMANDLINE_ARGS=--auto-launch --use-quad-cross-attention --reserve-vram 0.9" +set "COMMANDLINE_ARGS=--auto-launch --use-quad-cross-attention --reserve-vram 0.9 --disable-async-offload" + +:: "--disable-async-offload" added because of this : ComfyUI has added async weight offloading by default, not compatible with older GPUs, try without it , if it works you are good." set "ZLUDA_COMGR_LOG_LEVEL=1" @@ -149,3 +151,4 @@ echo. .\zluda\zluda.exe -- %PYTHON% main.py %COMMANDLINE_ARGS% pause +