Skip to content

Commit 634a524

Browse files
authored
Bump CUDA compat (#774)
* Bump CUDA compat * Update Project.toml * scatter doesn't work on CuArrays
1 parent 5af0dcb commit 634a524

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
2020

2121
[compat]
2222
AMDGPU = "0.5.7, 0.6"
23-
CUDA = "3, 4"
23+
CUDA = "3, 4, 5"
2424
DocStringExtensions = "0.8, 0.9"
2525
MPIPreferences = "0.1.8"
2626
PkgVersion = "0.3"

test/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
1616

1717
[compat]
1818
AMDGPU = "0.6"
19-
CUDA = "3, 4"
19+
CUDA = "3, 4, 5"

test/test_scatter.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ for T in MPITestTypes
2626
end
2727
@test Array(B)[1] == T(rank+1)
2828

29-
B = MPI.scatter(A, comm; root = root)
29+
B = MPI.scatter(Array(A), comm; root = root)
3030
@test B == T(rank+1)
3131

3232
# Test throwing

0 commit comments

Comments
 (0)