StatProfilerHTML
Build Status | Test coverage |
---|---|
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;