You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new Julia 1.3 Threads.@threads macro does not work with @showprogress
MWE:
using ProgressMeter
a = []
@showprogress Threads.@threadsfor i in1:1000push!(a, rand())
end
Python's tqdm figured out a way to show progress on multiple processes by showing a stack of progress bars for each process. Perhaps a similar interface could work here?
The text was updated successfully, but these errors were encountered:
The non-macro Progress methods do work with threads (there are some examples in the readme) but it’s true that the macros haven’t been adapted for threads yet.
The new Julia 1.3
Threads.@threads
macro does not work with@showprogress
MWE:
Python's tqdm figured out a way to show progress on multiple processes by showing a stack of progress bars for each process. Perhaps a similar interface could work here?
The text was updated successfully, but these errors were encountered: