OpenRAM/compiler/view_profile.py

17 lines
446 B
Python
Raw Normal View History

#!/usr/bin/env python3
# See LICENSE for licensing information.
#
2023-01-29 07:56:27 +01:00
# Copyright (c) 2016-2023 Regents of the University of California and The Board
2019-06-14 17:43:41 +02:00
# 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()
2019-10-03 01:26:02 +02:00
# p.sort_stats("cumulative")
p.sort_stats("tottime")
2019-10-03 01:26:02 +02:00
# p.print_stats(50)
p.print_stats()
2018-12-07 17:56:40 +01:00