StatProfilerHTML.jl

Show Julia profiling data in an explorable HTML page

OTHER License

Stars
139
Committers
12

StatProfilerHTML

Build Status Test coverage
Coverage Status

This module formats the output from Julia's Profile module into an html rendering of the source function lines and functions, allowing for interactive exploration of any bottlenecks that may exist in your code.

There's two ways of using this:

  • call statprofilehtml() after running the julia profiler in the normal way; or
  • use the @profilehtml macro.

Have a look at this example output, which is the result of profiling

using StatProfilerHTML
using TypedPolynomials
@polyvar x y z
@profilehtml (x + y + z)^120;