mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
15 lines
396 B
Python
15 lines
396 B
Python
#!/usr/bin/python
|
|
################################################################################
|
|
# Dumps statistics from 'pymlac' run.
|
|
################################################################################
|
|
|
|
import pstats
|
|
|
|
p = pstats.Stats('profile.out')
|
|
|
|
#p.strip_dirs().sort_stats(-1).print_stats()
|
|
|
|
#p.sort_stats('cumulative').print_stats(20)
|
|
|
|
p.sort_stats('time').print_stats(20)
|