[julia-users] Re: Progress meter for parallel workers

2015-11-18 Thread Jason Eckstein
Interesting, thanks for the help. On Tuesday, November 17, 2015 at 8:09:44 PM UTC-7, Benjamin Deonovic wrote: > > I made a progress meter for parallel runners once in julia about a year > ago. I've since stopped using the code but it might inspire you to make > something similar: > >

[julia-users] Re: Progress meter for parallel workers

2015-11-17 Thread Benjamin Deonovic
I made progress meters for parllel runners about a year ago in Julia using Tk.jl. I've seen stopped using that bit of acode but here is what I have unearthed from the depths: Progress Types type ProgressFrame trace::Bool widget::Tk_Widget

[julia-users] Re: Progress meter for parallel workers

2015-11-17 Thread Benjamin Deonovic
I made a progress meter for parallel runners once in julia about a year ago. I've since stopped using the code but it might inspire you to make something similar: http://pastebin.com/yy1a9RCv On Monday, November 16, 2015 at 10:06:13 AM UTC-6, Tomas Lycken wrote: > > There has been some

[julia-users] Re: Progress meter for parallel workers

2015-11-16 Thread bernhard
related to this I would welcome if it were possible to show the progress of a pmap() statement. It is easy, to have each worker display the instance number which is being processed (say if pmap goes over a range 1:n). But I do not know how to show progress and estimated time left Am

[julia-users] Re: Progress meter for parallel workers

2015-11-16 Thread Tomas Lycken
There has been some discussion about this, see https://github.com/timholy/ProgressMeter.jl/issues/9 and https://github.com/timholy/ProgressMeter.jl/issues/32 // T On Monday, November 16, 2015 at 1:53:22 PM UTC+1, bernhard wrote: > > related to this I would welcome if it were possible to show