All Projects → tkluck → Statprofilerhtml.jl

tkluck / Statprofilerhtml.jl

Licence: other
Show Julia profiling data in an explorable HTML page

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to Statprofilerhtml.jl

Mongood
A MongoDB GUI with Fluent Design
Stars: ✭ 540 (+550.6%)
Mutual labels:  profiling
Py Spy
Sampling profiler for Python programs
Stars: ✭ 7,709 (+9187.95%)
Mutual labels:  profiling
Observer cli
Visualize Erlang/Elixir Nodes On The Command Line
Stars: ✭ 1,058 (+1174.7%)
Mutual labels:  profiling
Go Profiler Notes
felixge's notes on the various go profiling methods that are available.
Stars: ✭ 525 (+532.53%)
Mutual labels:  profiling
Viztracer
VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.
Stars: ✭ 874 (+953.01%)
Mutual labels:  profiling
Scalopus
A tracing framework for C++ and Python.
Stars: ✭ 41 (-50.6%)
Mutual labels:  profiling
Processhacker
A free, powerful, multi-purpose tool that helps you monitor system resources, debug software and detect malware.
Stars: ✭ 6,285 (+7472.29%)
Mutual labels:  profiling
Llvm Heat Printer
LLVM Profiling Visualization
Stars: ✭ 68 (-18.07%)
Mutual labels:  profiling
Java Debug Tool
Java dynamic debug tool
Stars: ✭ 26 (-68.67%)
Mutual labels:  profiling
Jsbench Me
jsbench.me - JavaScript performance benchmarking playground
Stars: ✭ 50 (-39.76%)
Mutual labels:  profiling
Wtrace
Command line tracing tool for Windows, based on ETW.
Stars: ✭ 563 (+578.31%)
Mutual labels:  profiling
Redis Memory Analyzer
Redis memory profiler to find the RAM bottlenecks throw scaning key space in real time and aggregate RAM usage statistic by patterns.
Stars: ✭ 591 (+612.05%)
Mutual labels:  profiling
Echo Pprof
echo-pprof is a wrapper for golang web framework echo to use net/http/pprof easily.
Stars: ✭ 40 (-51.81%)
Mutual labels:  profiling
Austin
Python frame stack sampler for CPython
Stars: ✭ 547 (+559.04%)
Mutual labels:  profiling
Importtime Waterfall
Generate waterfalls from `-Ximporttime` tracing.
Stars: ✭ 58 (-30.12%)
Mutual labels:  profiling
Pyheat
pprofile + matplotlib = Python program profiled as an awesome heatmap!
Stars: ✭ 491 (+491.57%)
Mutual labels:  profiling
Likwid
Performance monitoring and benchmarking suite
Stars: ✭ 957 (+1053.01%)
Mutual labels:  profiling
Test Prof
Ruby Tests Profiling Toolbox
Stars: ✭ 1,193 (+1337.35%)
Mutual labels:  profiling
Mthawkeye
Profiling / Debugging assist tools for iOS. (Memory Leak, OOM, ANR, Hard Stalling, Network, OpenGL, Time Profile ...)
Stars: ✭ 1,119 (+1248.19%)
Mutual labels:  profiling
Etrace
Emacs Lisp Latency Tracing for the Chromium Catapult Trace Event Format
Stars: ✭ 45 (-45.78%)
Mutual labels:  profiling

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;
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].