We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c6aa0d commit 17cc50fCopy full SHA for 17cc50f
base/darray.jl
@@ -245,7 +245,13 @@ end
245
getindex(d::DArray) = d[1]
246
getindex(d::DArray, I::Union(Int,UnitRange{Int})...) = sub(d,I...)
247
248
-copy(d::SubOrDArray) = d
+function copy!(dest::SubOrDArray, src::SubOrDArray)
249
+ dest.dims == src.dims && dest.pmap == src.pmap && dest.indexes == src.indexes && dest.cuts == src.cuts || throw(ArgumentError("destination array doesn't fit to source array"))
250
+ for p in dest.pmap
251
+ @spawnat p copy!(localpart(dest), localpart(src))
252
+ end
253
+ dest
254
+end
255
256
# local copies are obtained by convert(Array, ) or assigning from
257
# a SubDArray to a local Array.
0 commit comments