Re: [julia-users] Dealing with memory accumulation on worker processes

2015-03-31 Thread Ben Arthur
also https://github.com/JuliaLang/julia/issues/6567

Re: [julia-users] Dealing with memory accumulation on worker processes

2015-03-31 Thread Isaiah Norton
Not sure if this applies to your case, but there are some known issues with memory management of parallel constructs. See e.g. https://github.com/JuliaLang/julia/issues/8912 and others linked from there. On Mon, Mar 30, 2015 at 3:38 PM, Gregory Plumb wrote: > Hello, > > I have a function that pu

[julia-users] Dealing with memory accumulation on worker processes

2015-03-30 Thread Gregory Plumb
Hello, I have a function that pushes some data onto other processes. It does this by constructing a RemoteRef on each worker process and then using put!() to put the data onto each process. These RemoteRef's are stored in an array. The main function then calls some other functions on the wor