tkluck / StatProfilerHTML.jl

Show Julia profiling data in an explorable HTML page

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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;

About

Show Julia profiling data in an explorable HTML page

License:Other


Languages

Language:Julia 44.9%Language:HTML 29.9%Language:Haml 18.3%Language:CSS 6.2%Language:JavaScript 0.8%