From ae873d3b77cd7e266e0021cb0a209afab92c8c87 Mon Sep 17 00:00:00 2001 From: patientx Date: Sun, 30 Nov 2025 15:17:58 +0300 Subject: [PATCH] Update COMMANDLINE_ARGS for GPU compatibility Added '--disable-async-offload' to COMMANDLINE_ARGS for compatibility with older GPUs. --- comfyui-n.bat | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/comfyui-n.bat b/comfyui-n.bat index d2fe98ac9..106423cc0 100644 --- a/comfyui-n.bat +++ b/comfyui-n.bat @@ -10,7 +10,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. :: in the comfyui-user.bat remove the dots on the line below and change the gfx1030 to your gpu's specific code. :: you can find out about yours here, https://llvm.org/docs/AMDGPUUsage.html#processors