Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/cuda.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Test ExecuTorch CUDA Build Compatibility
# This workflow tests whether ExecuTorch can be successfully built with CUDA support
# across different CUDA versions (12.6, 13.0) using the command:
# across different CUDA versions (12.6, 13.0, 13.2) using the command:
# ./install_executorch.sh
#
# Note: ExecuTorch automatically detects the system CUDA version using nvcc and
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
strategy:
fail-fast: false
matrix:
cuda-version: ["12.6", "13.0"]
cuda-version: ["12.6", "13.0", "13.2"]

name: test-executorch-cuda-build-${{ matrix.cuda-version }}
uses: pytorch/test-infra/.github/workflows/linux_job_v2.yml@main
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
echo "CUDA build results: ${{ needs.test-cuda-builds.result }}"
exit 1
else
echo "SUCCESS: All ExecuTorch CUDA builds (12.6, 13.0) completed successfully!"
echo "SUCCESS: All ExecuTorch CUDA builds (12.6, 13.0, 13.2) completed successfully!"
fi

test-models-cuda:
Expand Down
3 changes: 1 addition & 2 deletions install_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@
# Format: tuple of (major, minor) version numbers
SUPPORTED_CUDA_VERSIONS = (
(12, 6),
(12, 8),
(12, 9),
(13, 0),
(13, 2),
)


Expand Down
Loading