ProgressView.jl

A Julia package for displaying categorical progress information
Author eschnett
Popularity
2 Stars
Updated Last
2 Years Ago
Started In
October 2020

ProgressView

A Julia package for displaying categorical progress information

  • GitHub: Source code repository
  • GitHub CI

ProgressView displays periodically which functions a program is currently executing with a stack-like view. This similar to a hierarchical version of ProgressMeter.

Example

function inner()
    return 2
end

function fun()
    x = @monitor "inner" inner()
    return nothing
end

function main()
    @monitor "fun" fun()
end

Sample snapshot of output:

1. fun
  2. inner