ComfyUI/comfyui-n.bat
Rando717 2f256e48cb
Update comfyui-n.bat
- reverted previous commit (removes colored + - signs)
- added check for git (install+version) and current commit hash

- stylized output: [INFO], [PASS], [FAIL]
- added launching app info
2025-09-14 23:25:39 +02:00

64 lines
1.9 KiB
Batchfile

@echo off
set "FLASH_ATTENTION_TRITON_AMD_ENABLE=TRUE"
set "FLASH_ATTENTION_TRITON_AMD_AUTOTUNE=TRUE"
set "MIOPEN_FIND_MODE=2"
set "MIOPEN_LOG_LEVEL=3"
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"
:: 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
:: set "TRITON_OVERRIDE_ARCH=gfx1030"
set "ZLUDA_COMGR_LOG_LEVEL=1"
:: Check Git version and installed commit hash
where git >NUL 2>&1
if errorlevel 1 (
echo [FAIL] Git not found in PATH. Please install Git.
pause
) else (
for /f "tokens=3*" %%v in ('git --version') do (
echo [INFO] Detected Git version: %%v %%w
)
for /f %%h in ('git rev-parse --short HEAD') do (
echo [INFO] Current ComfyUI-ZLUDA commit hash: %%h
)
)
echo [INFO] Checking and updating to a new version if possible...
copy comfy\customzluda\zluda-default.py comfy\zluda.py /y >NUL
git pull
copy comfy\customzluda\zluda.py comfy\zluda.py /y >NUL
:: Check for zluda.exe and nccl.dll inside the zluda folder
echo.
echo [INFO] Checking ZLUDA installation...
pushd .\zluda
if exist zluda.exe (
if not exist nccl.dll (
for /f "tokens=2 delims= " %%v in ('zluda.exe --version 2^>^&1') do (
echo [FAIL] Detected version [%%v], but nccl.dll is missing. Likely blocked by AV as false positive.
)
) else (
for /f "tokens=2 delims= " %%v in ('zluda.exe --version 2^>^&1') do (
echo [PASS] Detected version: %%v
)
)
) else (
echo [FAIL] Can't detect zluda.exe inside .\zluda directory.
)
popd
echo [INFO] Launching application via ZLUDA...
echo.
.\zluda\zluda.exe -- %PYTHON% main.py %COMMANDLINE_ARGS%
pause