StatProfilerHTML.jl

Show Julia profiling data in an explorable HTML page
Popularity
124 Stars
Updated Last
11 Months Ago
Started In
May 2017

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;

Used By Packages

No packages found.