Skip to content

Commit bd24c4b

Browse files
committed
make SUPPORTED_CUDA_VERSIONS as tuple for hashable
1 parent 6e7884f commit bd24c4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install_requirements.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818

1919
# Supported CUDA versions - modify this to add/remove supported versions
2020
# Format: tuple of (major, minor) version numbers
21-
SUPPORTED_CUDA_VERSIONS = [
21+
SUPPORTED_CUDA_VERSIONS = (
2222
(12, 6),
2323
(12, 8),
2424
(12, 9),
25-
]
25+
)
2626

2727
# Since ExecuTorch often uses main-branch features of pytorch, only the nightly
2828
# pip versions will have the required features.

0 commit comments

Comments
 (0)