root/runstats
| Revision 192:dbf174bd156f, 266 bytes (checked in by Chris Freeze <cfreeze@…>, 15 months ago) | |
|---|---|
|
|
| Line | |
|---|---|
| 1 | #!/usr/bin/python |
| 2 | |
| 3 | import pstats |
| 4 | |
| 5 | pst = pstats.Stats('siren.stats') |
| 6 | |
| 7 | print "Function Time" |
| 8 | pst.strip_dirs().sort_stats('time').print_stats(10) |
| 9 | |
| 10 | print "Algorithm Time" |
| 11 | pst.strip_dirs().sort_stats('cumulative').print_stats(10) |
| 12 | |
| 13 | print "Callee List" |
| 14 | pst.print_callees() |
Note: See TracBrowser
for help on using the browser.
