Hello I was wondering if there was a way to send dynamically generated code over the network?
This is the kind of thing I am imagining to get bar() loaded on worker processes: *workrs = addprocs(4)function foo(x) function bar(y) x*y end barendbar = foo(2)[@spawnat w bar for w in workrs] #raises error bar() not available* If *bar* were a data object then I understand (perhaps wrongly) from the docs it would have been transferred. Much appreciated Matthew
