Skip to content

Commit f58408c

Browse files
committed
Update compatibility database.
1 parent 9ffd1c2 commit f58408c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

deps/compatibility.jl

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ const cuda_cap_db = Dict(
5050
v"7.5" => v"10.0":highest,
5151
v"8.0" => v"11.0":highest,
5252
v"8.6" => v"11.1":highest,
53+
v"8.7" => v"11.4":highest,
5354
)
5455

5556
function cuda_cap_support(ver::VersionNumber)
@@ -95,6 +96,10 @@ const cuda_ptx_db = Dict(
9596
v"7.0" => v"11.0":highest,
9697
v"7.1" => v"11.1":highest,
9798
v"7.2" => v"11.2":highest,
99+
v"7.3" => v"11.3":highest,
100+
v"7.4" => v"11.4":highest,
101+
v"7.5" => v"11.5":highest,
102+
v"7.6" => v"11.6":highest,
98103
)
99104

100105
function cuda_ptx_support(ver::VersionNumber)
@@ -128,6 +133,7 @@ const llvm_cap_db = Dict(
128133
v"7.2" => v"7.0":highest,
129134
v"7.5" => v"8.0":highest,
130135
v"8.0" => v"11.0":highest,
136+
v"8.6" => v"13.0":highest,
131137
)
132138

133139
function llvm_cap_support(ver::VersionNumber)
@@ -159,6 +165,11 @@ const llvm_ptx_db = Dict(
159165
v"6.4" => v"9.0":highest,
160166
v"6.5" => v"11.0":highest,
161167
v"7.0" => v"11.0":highest,
168+
v"7.1" => v"13.0":highest,
169+
v"7.2" => v"13.0":highest,
170+
v"7.3" => v"14.0":highest,
171+
v"7.4" => v"14.0":highest,
172+
v"7.5" => v"14.0":highest,
162173
)
163174

164175
function llvm_ptx_support(ver::VersionNumber)

0 commit comments

Comments
 (0)