OpenRAM/compiler/view_profile.py

17 lines
444 B
Python
Raw Normal View History

#!/usr/bin/env python3
# See LICENSE for licensing information.
#
2019-06-14 17:43:41 +02:00
# Copyright (c) 2016-2019 Regents of the University of California and The Board
# of Regents for the Oklahoma Agricultural and Mechanical College
# (acting for and on behalf of Oklahoma State University)
# All rights reserved.
#
2018-12-07 17:56:40 +01:00
import pstats
p = pstats.Stats("profile.dat")
2018-12-07 17:56:40 +01:00
p.strip_dirs()
#p.sort_stats("cumulative")
p.sort_stats("tottime")
#p.print_stats(50)
p.print_stats()
2018-12-07 17:56:40 +01:00