Running julia code on multiple machines

I parallelized my algorithm with pmap. Improving performance on a single machine using the option is -pexcellent. Now I would like to work on several machines.

I used the parameter --machinefileto start julia. It works, but it starts only one process on the remote machine. I would like to have several processes running on each machine. The option -pallows you to execute several processes only on the local machine. Is there a way to specify the number of processes on remote machines?

+4
source share
1 answer

Julia 0.3 , Julia.

Julia 0.4 (unreleased) , .

+3

All Articles