Skip to content

tkluck/StatProfilerHTML.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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;