Add '--disable-async-offload' to command line args

Added '--disable-async-offload' argument to command line options to improve compatibility with older GPUs.
This commit is contained in:
patientx 2025-11-30 15:18:38 +03:00 committed by GitHub
parent ae873d3b77
commit d74837e4f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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