Has there been any progress on this? I have tried using it in a manner similar the documentation (but for @threads) and couldn’t get this to work. I am currently using julia-1.2.0. A plain
@showprogress 1 "Computing..." Threads.@threads for i in 1:100
#do something
end
doesn’t seem to work but
@showprogress 1 "Computing..." @distributed () for i in 1:100
#do something
end