I would like to perform computations on the workers independently only the 
task assignment is scheduled from the main thread. Instead of passing each 
result as they come to the main thread I would like to store them on each 
worker on a local array. When all computations have finished I would like 
fetch these arrays and combine them then.


I can create shared variables using 
@everywhere i=1

The only possibility that came to my mind is to use take and put using 
appropriate RemoteRefs, but this seems overly complicated.

Thank you,

Sebastian

Reply via email to