[julia-users] Re: Importing Functions on Different Workers

2016-06-01 Thread ABB
That does work. Thank you very much. Is it possible that a difference is made by using addprocs() after I have the REPL running vs. starting the program as "julia -p N" for some N? I ask because I am (nearly) sure my module was defined the way you suggest earlier today and it was giving me

[julia-users] Re: Importing Functions on Different Workers

2016-06-01 Thread 'Greg Plowman' via julia-users
I find that putting everything required on workers into a module is the way to go. Then just use using Module (after adding workers) This works for me (v0.4.5): ProjectModule.jl: module ProjectModule using DataFrames include("function1.jl") export function1 end function1.jl: