We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa3ffc2 commit 28aff82Copy full SHA for 28aff82
test/gpu/arraypartition_gpu.jl
@@ -14,3 +14,7 @@ mask = pA .> 0
14
# Test recursive filling is done using GPU kernels and not scalar indexing
15
RecursiveArrayTools.recursivefill!(pA, true)
16
@test all(pA .== true)
17
+
18
+# Test that regular filling is done using GPU kernels and not scalar indexing
19
+fill!(pA, false)
20
+@test all(pA .== false)
0 commit comments