Where I can find a complete guide to parallelize code with Julia 1.0

Hi, i want to parallelize my Game Of Life ancd I want a complete guide focused on how to parallelize the Julia code with the Distributed library.
Thanks for the answers.

PS The code that I would like to parallelize is the following (without graphical output in gtk).
https://github.com/dsHitman/juliaProj/blob/master/GOFseq.jl

1 Like

If you don’t mind adding a dependency, this may help:
https://juliaparallel.github.io/DistributedArrays.jl/latest/index.html#Distributed-Array-Operations-1

1 Like

Thanks for the answer. But I have a perplexity, when I, for example, call the function life_step, is this automatically called by every process that contains a portion of the array? Sorry if my question is a little silly but is the first time that I use parallelism and DistributedArray in Julia.