# PyTorch 2.11 with CUDA 13.0 — PyTorch release, CUDA build and NVIDIA driver pairings For PyTorch 2.11 with CUDA 13.0, pytorch release is 2.11; cuda build is CUDA 13.0; python versions is >=3.10, <=(3.14, 3.14t experimental); cudnn version is 9.17.1.4; build script: base architecture list is TORCH_CUDA_ARCH_LIST="7.5;8.0;8.6;9.0;10.0", recorded from its source on 2026-09-16. - **Pairing:** PyTorch 2.11 with CUDA 13.0 _(our reading, not quoted from the source)_ - **PyTorch release:** 2.11 _(verified: appears in the quote below)_ - **CUDA build:** CUDA 13.0 _(verified: appears in the quote below)_ - **Python versions:** >=3.10, <=(3.14, 3.14t experimental) _(verified: appears in the quote below)_ - **cuDNN version:** 9.17.1.4 _(verified: appears in the quote below)_ - **Build script: base architecture list:** TORCH_CUDA_ARCH_LIST="7.5;8.0;8.6;9.0;10.0" _(verified: appears in its own passage below)_ - **Build script: this CUDA build's architecture line:** TORCH_CUDA_ARCH_LIST="${TORCH_CUDA_ARCH_LIST};$([[ "$ARCH" == "aarch64" ]] && echo "11.0;" || echo "")12.0" _(verified: appears in its own passage below)_ - **GPU architectures compiled in, Windows wheel:** 7.5;8.0;8.6;9.0;10.0;12.0 _(verified: appears in its own passage below)_ - **Minimum driver (minor version compatibility):** >= 580 _(verified: appears in its own passage below)_ - **Wheel index URL:** https://download.pytorch.org/whl/cu130 _(our reading, not quoted from the source)_ ## What the source says > | 2.11 | >=3.10, <=(3.14, 3.14t experimental) | C++17 | CUDA 12.6 (CUDNN 9.10.2.21) (NCCL 2.28.9), CUDA 12.8 (CUDNN 9.17.1.4) (NCCL 2.28.9), CUDA 13.0 (CUDNN 9.17.1.4) (NCCL 2.28.9) | -- | ROCm 7.2 | ## Where each value comes from This source states these in separate places, so each value is shown with the passage that states it. ### Build script: base architecture list > TORCH_CUDA_ARCH_LIST="7.5;8.0;8.6;9.0;10.0" ### Build script: this CUDA build's architecture line > 13.0) TORCH_CUDA_ARCH_LIST="${TORCH_CUDA_ARCH_LIST};$([[ "$ARCH" == "aarch64" ]] && echo "11.0;" || echo "")12.0" ### GPU architectures compiled in, Windows wheel > ) else if "%CUDA_VER%"=="130" ( set "CUDA_DOTTED_VERSION=13.0" set "CUDA_ARCH_LIST=7.5;8.0;8.6;9.0;10.0;12.0" ### Minimum driver (minor version compatibility) > 13.x | >= 580 | N/A ## Source - https://raw.githubusercontent.com/pytorch/pytorch/main/RELEASE.md - https://raw.githubusercontent.com/pytorch/pytorch/release/2.11/.ci/manywheel/build_cuda.sh - https://raw.githubusercontent.com/pytorch/pytorch/release/2.11/.ci/pytorch/windows/internal/cuda_config.bat - https://docs.nvidia.com/cuda/cuda-toolkit-release-notes/index.html Last verified: 2026-09-16. Review by: 2026-12-15. Part of [PyTorch release, CUDA build and NVIDIA driver pairings](https://referencesource.org/gpu-cuda-pytorch-compatibility/).