ProgressLogging.jl icon indicating copy to clipboard operation
ProgressLogging.jl copied to clipboard

Results 19 ProgressLogging.jl issues
Sort by recently updated
recently updated
newest added

One of the nicest features of ProgressMeter.jl is the ability to show the ETA. Can this package also show ETA in Pluto cells?

It would be nice if `map`, `mapreduce`, and `reduce` were supported with `@progress`, for example ```julia squares = @progress map(i -> i^2, 1:10) prod = @progress map((x,y) -> x *...

Would be nice to support logging progress increments, so that e.g. something like ``` @withprogress name="threaded iteration" begin Threads.@threads for i in 1:12 sleep(2) @logprogress increment = 1/12 end end...

enhancement

`@progress` doesn't work when later iterables refer to previous iteration variables: ``` julia> x = [1:3, 1:2, 5:6]; julia> @progress for y in x, z in y @show z end...

Hi, I keep getting the following error when trying to call `@logprogress` in a function call to update a progress bar inside `@withprogress` wrapping my main execution loop, it works...

Fixes https://github.com/JunoLab/ProgressLogging.jl/issues/40.

The `Progress` type has a `fraction` field, and I am considering an alternative that stores two quantities e.g. completed and total, which conceptually are just the numerator and denominator of...

## Feature Request Being able to log progress without having a set number of iterations would be great. Currently `AbstractMCMC` is using ProgressLogging as a backend and they've just added...

It would be nice if the `@progress` macro were thread-safe and supported the `Threads.@threads` macro call. This would require a bit of a rewrite, since the current `_progress` function does...

Ok, this may look a bit weird, but makes sure we support arbitrary objects (with the right fields) instead of only this package's `Progress` object. The motivation for this is...