Update ComfyUI PyTorch versions to match upstream recommendations

- NVIDIA: cu128 → cu130 (requires driver ≥ 570)
- AMD: rocm6.3 → rocm6.4 (stable version)
- Intel: xpu (unchanged, already matches upstream)

Fixes NVML version mismatch issues when host driver is upgraded
Aligns with ComfyUI upstream: https://github.com/Comfy-Org/ComfyUI#manual-install-windows-linux
This commit is contained in:
MickLesk
2026-02-07 18:00:08 +01:00
parent 8dca8d2041
commit c8dc7f2196

View File

@@ -42,14 +42,14 @@ if [[ "${comfyui_gpu_type,,}" == "nvidia" ]]; then
torch \
torchvision \
torchaudio \
--extra-index-url "https://download.pytorch.org/whl/cu128" \
--extra-index-url "https://download.pytorch.org/whl/cu130" \
--python="/opt/ComfyUI/venv/bin/python"
elif [[ "${comfyui_gpu_type,,}" == "amd" ]]; then
$STD uv pip install \
torch \
torchvision \
torchaudio \
--index-url "https://download.pytorch.org/whl/rocm6.3" \
--index-url "https://download.pytorch.org/whl/rocm6.4" \
--python="/opt/ComfyUI/venv/bin/python"
elif [[ "${comfyui_gpu_type,,}" == "intel" ]]; then
$STD uv pip install \