Update comfyui-n.bat (zluda check)

A simple check for zluda.exe and nccl.dll
With hint about AV false positive nccl.dll block.
This commit is contained in:
Rando717 2025-09-07 17:28:36 +02:00 committed by GitHub
parent 9417753a6c
commit bb3b73f947
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,6 +25,23 @@ 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
echo.
echo ** Checking ZLUDA version
pushd .
cd ./zluda
if exist zluda.exe (
if not exist nccl.dll (
echo nccl.dll is missing, likely blocked by AV as false positive.
) else (
zluda.exe --version
echo Check passed.
)
) else (
echo Check failed. Can't detect ZLUDA.
)
popd
echo.
.\zluda\zluda.exe -- %PYTHON% main.py %COMMANDLINE_ARGS%
pause