Skip to main content

Help visualize profiling data from cProfile with kcachegrind

Project description

Overview

Script to help visualize profiling data collected with the cProfile python module with the kcachegrind (screenshots) graphical calltree analyser.

This is a rebranding of the venerable http://www.gnome.org/~johan/lsprofcalltree.py script by David Allouche et Al. It aims at making it easier to distribute (e.g. through pypi) and behave more like the scripts of the debian kcachegrind-converters package. The final goal is to make it part of the official upstream kdesdk package.

Authors

  • David Allouche (original author)

  • Jp Calderone

  • Itamar Shtull-Trauring

  • Johan Dahlin

  • Olivier Grisel (repackaging and pstats support)

Command line usage

Upon installation you shoould have a pyprof2calltree script in your path:

$ pyprof2calltree --help
Usage: /usr/bin/pyprof2calltree [-k] [-o output_file_path] [-i input_file_path] [-r scriptfile [args]]

Options:
  -h, --help            show this help message and exit
  -o OUTFILE, --outfile=OUTFILE
                        Save calltree stats to <outfile>
  -i INFILE, --infile=INFILE
                        Read python stats from <infile>
  -r SCRIPT, --run-script=SCRIPT
                        Name of the python script to run to collect profiling
                        data
  -k, --kcachegrind     Run the kcachegrind tool on the converted data

Python shell usage

pyprof2calltree is also best used from an interactive python shell such as the defaulft shell. For instance let us profile XML parsing:

>>> from xml.etree import ElementTree
>>> from cProfile import Profile
>>> xml_content = '<a>\n' + '\t<b/><c><d>text</d></c>\n' * 100 + '</a>'
>>> profiler = Profile()
>>> profiler.runctx(
...     "ElementTree.fromstring(xml_content)",
...     locals(), globals())

>>> from pyprof2calltree import convert, visualize
>>> visualize(profiler.getstats())                            # run kcachegrind
>>> convert(profiler.getstats(), 'profiling_results.kgrind')  # save for later

or with the ipython:

In [1]: %doctest_mode
Exception reporting mode: Plain
Doctest mode is: ON

>>> from xml.etree import ElementTree
>>> xml_content = '<a>\n' + '\t<b/><c><d>text</d></c>\n' * 100 + '</a>'
>>> %prun -D out.stats ElementTree.fromstring(xml_content)

*** Profile stats marshalled to file 'out.stats'

>>> from pyprof2calltree import convert, visualize
>>> visualize('out.stats')
>>> convert('out.stats', 'out.kgrind')

>>> results = %prun -r ElementTree.fromstring(xml_content)
>>> visualize(results)

Change log

  • 1.0.3 - 2008-10-16: fix typos in 1.0 release

  • 1.0 - 2008-10-16: initial release under the pyprof2calltree name

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyprof2calltree-1.0.3.tar.gz (6.0 kB view details)

Uploaded Source

Built Distribution

pyprof2calltree-1.0.3-py2.5.egg (9.8 kB view details)

Uploaded Source

File details

Details for the file pyprof2calltree-1.0.3.tar.gz.

File metadata

File hashes

Hashes for pyprof2calltree-1.0.3.tar.gz
Algorithm Hash digest
SHA256 c0eb0cacbf86befb8ad2dd2174ec84cd11ae9b9453ec6fd3e71905b019d5a0e3
MD5 7715cc81abd3e7d1e59a7f84dcb10c32
BLAKE2b-256 7c5ae2acb32a1a545c8e385fa063a023935707016af50d30ae528f53b127a441

See more details on using hashes here.

File details

Details for the file pyprof2calltree-1.0.3-py2.5.egg.

File metadata

File hashes

Hashes for pyprof2calltree-1.0.3-py2.5.egg
Algorithm Hash digest
SHA256 59b24b01f4aa9299be5a12e4f42fda0400e4e51c20a165f2369b13714d4ff07a
MD5 1f0cb981d495b5461fd701ec1136b8db
BLAKE2b-256 34ad2b4324a97538c7d42bcbb167bfc9b62423a28ba9e85fa26603d3e70d23e4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page