Skip to content

Commit c0643f5

Browse files
authored
Add CUDA 13.2 support and drop unsupported 12.8/12.9 (#20440)
Add (13, 2) to SUPPORTED_CUDA_VERSIONS in install_utils.py and to the cuda.yml build matrix. Remove 12.8 and 12.9, which are no longer supported.
1 parent 42ee32d commit c0643f5

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/cuda.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
# This workflow tests whether ExecuTorch can be successfully built with CUDA support
33
# across different CUDA versions (12.6, 13.0) using the command:
44
# ./install_executorch.sh
5+
#
6+
# Intentionally skipped CUDA version 13.2 check due to ci image unsupported.
57
#
68
# Note: ExecuTorch automatically detects the system CUDA version using nvcc and
79
# installs the appropriate PyTorch wheel. No manual CUDA/PyTorch installation needed.

install_utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@
1616
# Format: tuple of (major, minor) version numbers
1717
SUPPORTED_CUDA_VERSIONS = (
1818
(12, 6),
19-
(12, 8),
20-
(12, 9),
2119
(13, 0),
20+
(13, 2),
2221
)
2322

2423

0 commit comments

Comments
 (0)