-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
move darray from base affect @parallel on master branch #10485
Comments
This was another way of creating DArrays (via a comprehension). It should be removed from Base and implemented in DistributedArrays. |
thanks, and julia/base/linalg/distributed.jl maybe also need remove? since there is no DArray anymore in base lib |
Yes, you are right. Have updated the PR. |
This has been added to the DistributedArray's package. The syntax is now |
julia> @Everywhere using DistributedArrays
julia> x= @parallel [sqrt(i) for i = 1:1e5]
ERROR: UndefVarError: DArray not defined
The text was updated successfully, but these errors were encountered: