diff --git a/.github/workflows/cuda.yml b/.github/workflows/cuda.yml index 948e58d389e..40f4195744b 100644 --- a/.github/workflows/cuda.yml +++ b/.github/workflows/cuda.yml @@ -2,6 +2,8 @@ # This workflow tests whether ExecuTorch can be successfully built with CUDA support # across different CUDA versions (12.6, 13.0) using the command: # ./install_executorch.sh +# +# Intentionally skipped CUDA version 13.2 check due to ci image unsupported. # # Note: ExecuTorch automatically detects the system CUDA version using nvcc and # installs the appropriate PyTorch wheel. No manual CUDA/PyTorch installation needed. diff --git a/install_utils.py b/install_utils.py index 9ffaf8c33ff..6f333412765 100644 --- a/install_utils.py +++ b/install_utils.py @@ -16,9 +16,8 @@ # Format: tuple of (major, minor) version numbers SUPPORTED_CUDA_VERSIONS = ( (12, 6), - (12, 8), - (12, 9), (13, 0), + (13, 2), )