Hi I was wondering how pmap handles data transfer between processes:
pmap(i->foo(some_settings[i],bigDataFrameOrSo),1:800) Say I have a big array or DataFrame (or anything) which is used by each iteration. Will it only be "sent" to each process only once? If not, it may make sense to approach this differently (by invoking a process which runs from 1:100 and another process going from 101:200, ....). >From the timings I observed, I think that Julia realizes, that >bigDataFrameOrSo is the same for each iteration, but I though asking would not hurt. Thanks Bernhard
