Groups 63 of 99+ julia-users › Embedding Julia - Multiple worker processes 3 posts by 2 authors Chris Cheetham Jul 27 Hi there, Is it possible to enable multiple worker processes when embedding Julia? I am just trying to get my head around Julia's Parallel Computing and from the docs it is possible to do this via a command argument when starting julia -p n http: docs.julialang.org en release-0.4 manual parallel-computing However, is this possible when creating a Julia instance from C?-jl_init does not take any relevant arguments and I have not managed to find anything in the docs that suggests a way to do so once Julia is initialized? What I am really after is running some Julia logic on a dedicated worker thread in parallel with our main Julia code. Many thanks, Chris Steven G. Johnson Jul 28 See the Julia addprocs function. Chris Cheetham Jul 28 Brilliant, thank you Steven On Thursday, July 28, 2016 at 2:39:43 PM UTC+1, Steven G. Johnson wrote: See the Julia addprocs function.