We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5af0dcb commit 634a524Copy full SHA for 634a524
Project.toml
@@ -20,7 +20,7 @@ Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
20
21
[compat]
22
AMDGPU = "0.5.7, 0.6"
23
-CUDA = "3, 4"
+CUDA = "3, 4, 5"
24
DocStringExtensions = "0.8, 0.9"
25
MPIPreferences = "0.1.8"
26
PkgVersion = "0.3"
test/Project.toml
@@ -16,4 +16,4 @@ CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
16
17
18
AMDGPU = "0.6"
19
test/test_scatter.jl
@@ -26,7 +26,7 @@ for T in MPITestTypes
end
27
@test Array(B)[1] == T(rank+1)
28
29
- B = MPI.scatter(A, comm; root = root)
+ B = MPI.scatter(Array(A), comm; root = root)
30
@test B == T(rank+1)
31
32
# Test throwing
0 commit comments