Luke Stanley
Luke Stanley

Reputation: 1294

Treemap visualisation view for Python profiler output?

Is there a profiler for Python that can render something like Kcachegrind's Callee map view?

kcachegrind Callee Map View

Upvotes: 7

Views: 1693

Answers (2)

bear24rw
bear24rw

Reputation: 4617

This looks like it might do what you want

http://www.vrplumber.com/programming/runsnakerun/

Upvotes: 4

samplebias
samplebias

Reputation: 37909

If you are on Ubuntu (or have access to a host) you can convert the Python hotshot profiler's output into a form that KCachegrind can read. Check out the kcachegrind-converters package hotshot2calltree command.

Here are some pages which reference using it for Python profiling:

Upvotes: 2

Related Questions