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 2419648 commit 72fbbf4Copy full SHA for 72fbbf4
test/gpu/arraypartition_gpu.jl
@@ -17,3 +17,7 @@ RecursiveArrayTools.recursivefill!(pA, true)
17
# Test that regular filling is done using GPU kernels and not scalar indexing
18
fill!(pA, false)
19
@test all(pA .== false)
20
+
21
+a = ArrayPartition(([1.0f0] |> cu, [2.0f0] |> cu, [3.0f0] |> cu))
22
+b = ArrayPartition(([0.0f0] |> cu, [0.0f0] |> cu, [0.0f0] |> cu))
23
+@. a + b
0 commit comments