Skip to content

Commit

Permalink
[build] support cuda-11.5 (#1558)
Browse files Browse the repository at this point in the history
  • Loading branch information
stas00 authored Nov 15, 2021
1 parent 7567c76 commit fa8d6c0
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions op_builder/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,19 @@ def get_default_compute_capabilities():
# list compatible minor CUDA versions - so that for example pytorch built with cuda-11.0 can be used
# to build deepspeed and system-wide installed cuda 11.2
cuda_minor_mismatch_ok = {
10: ["10.0",
"10.1",
"10.2"],
11: ["11.0",
"11.1",
"11.2",
"11.3",
"11.4"],
10: [
"10.0",
"10.1",
"10.2",
],
11: [
"11.0",
"11.1",
"11.2",
"11.3",
"11.4",
"11.5",
],
}


Expand Down

0 comments on commit fa8d6c0

Please sign in to comment.