We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42ee32d commit c0643f5Copy full SHA for c0643f5
2 files changed
.github/workflows/cuda.yml
@@ -2,6 +2,8 @@
2
# This workflow tests whether ExecuTorch can be successfully built with CUDA support
3
# across different CUDA versions (12.6, 13.0) using the command:
4
# ./install_executorch.sh
5
+#
6
+# Intentionally skipped CUDA version 13.2 check due to ci image unsupported.
7
#
8
# Note: ExecuTorch automatically detects the system CUDA version using nvcc and
9
# installs the appropriate PyTorch wheel. No manual CUDA/PyTorch installation needed.
install_utils.py
@@ -16,9 +16,8 @@
16
# Format: tuple of (major, minor) version numbers
17
SUPPORTED_CUDA_VERSIONS = (
18
(12, 6),
19
- (12, 8),
20
- (12, 9),
21
(13, 0),
+ (13, 2),
22
)
23
24
0 commit comments