OpenRAM/compiler/profile_stats.py

6 lines
106 B
Python
Raw Normal View History

2018-12-07 17:56:40 +01:00
import pstats
p = pstats.Stats('profile.dat')
p.strip_dirs()
p.sort_stats('cumulative')
p.print_stats(50)