From f6f0a5553bfd389c27fef4f684ddef6e8984b60d Mon Sep 17 00:00:00 2001 From: Seth Gregory Date: Fri, 9 Jan 2026 03:07:11 -0500 Subject: [PATCH] Remove '--cpu' option from ExecStart command (#10659) By default, the ExecStart in the system service includes the --cpu flag which forces ComfyUI to run entirely on CPU even if a GPU is present. This commit removes that flag. --- install/comfyui-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/comfyui-install.sh b/install/comfyui-install.sh index 1f8ce93cd..cd07a5349 100644 --- a/install/comfyui-install.sh +++ b/install/comfyui-install.sh @@ -72,7 +72,7 @@ After=network.target Type=simple User=root WorkingDirectory=/opt/ComfyUI -ExecStart=/opt/ComfyUI/venv/bin/python /opt/ComfyUI/main.py --listen --port 8188 --cpu +ExecStart=/opt/ComfyUI/venv/bin/python /opt/ComfyUI/main.py --listen --port 8188 Restart=on-failure [Install]