https://github.com/tpapp/walltimeprogress.jl
Report progress while processing an ex ante unknown number of items.
https://github.com/tpapp/walltimeprogress.jl
Last synced: 4 months ago
JSON representation
Report progress while processing an ex ante unknown number of items.
- Host: GitHub
- URL: https://github.com/tpapp/walltimeprogress.jl
- Owner: tpapp
- License: other
- Created: 2017-09-28T12:53:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-12-20T09:20:27.000Z (over 5 years ago)
- Last Synced: 2026-01-20T20:05:16.642Z (5 months ago)
- Language: Julia
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# WallTimeProgress

[](https://travis-ci.org/tpapp/WallTimeProgress.jl)
[](https://coveralls.io/github/tpapp/WallTimeProgress.jl?branch=master)
[](http://codecov.io/github/tpapp/WallTimeProgress.jl?branch=master)
Report progress while processing an ex ante unknown number of records.
## Usage
```julia
julia> using WallTimeProgress
julia> tracker = WallTimeTracker(10) # output every 10 periods
(no records yet)
julia> increment!(tracker)
julia> sleep(1)
julia> increment!(tracker, 9)
processed 10 records, 0.1019247994 s/record
julia> count(tracker)
10
```
See `?WallTimeTracker` for options.