I'm exploring the parallel computing of Julia and tried this:
a=dzeros(5);a[1]=5
but just got this error:
setindex! not defined for DArray{{Float64, 1, Array{Float64, 1}}
Well, I thought the manual said setindex!
is fully implemented by DArray
. What have I missed?
I was using v0.2.1 for Windows 32-bit.
I'm just an explorer too, but after reading Julia's Distributed Arrays Docs, I tried this which seemed to work.
It seems that distributed arrays aren't "local" until you make them "local".