If there are other processors, pmap doesn't use the head node by default:

julia> addprocs(2)
2-element Array{Any,1}:
 2
 3

julia> pmap(x->myid(), 1:10)
10-element Array{Any,1}:
 2
 3
 3
 2
 2
 3
 2
 3
 2
 3


On Sat, Feb 22, 2014 at 5:50 PM, Micah McClimans <[email protected]>wrote:

> I am working on distributing a compute intensive task over a cluster in
> Julia, using the pmap function. However, for several reasons I would like
> to avoid having the master node used in the computation- is there a way to
> accomplish this using the built in keyword, or will I need to rewrite pmap?
>

Reply via email to