Skip to content

Commit 172c182

Browse files
Breakthroughclaude
andcommitted
[build] Update CUDA arch for CUDA 13.x compatibility
CUDA 13.x dropped support for compute capability < 7.0. Updated to support Volta (7.0) through Hopper (9.0). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 5bdb5ff commit 172c182

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ def main():
3333
# lovelace = "8.9"
3434
# hopper = "9.0"
3535
# blackwell = "10.0;12.0"
36-
cuda_arch_bin = "5.0;5.2;6.0;6.1;7.0;7.5,8.0"
37-
cuda_arch_ptx = "8.0"
36+
# CUDA 13.x dropped support for compute capability < 7.0
37+
cuda_arch_bin = "7.0;7.5;8.0;8.6;8.9;9.0"
38+
cuda_arch_ptx = "9.0"
3839

3940
# NOTE: since 2.3.0 numpy upgraded from manylinux2014 to manylinux_2_28
4041
# see https://numpy.org/doc/stable/release/2.3.0-notes.html#numpy-2-3-0-release-notes

0 commit comments

Comments
 (0)