mirror of https://github.com/VLSIDA/OpenRAM.git
17 lines
446 B
Python
Executable File
17 lines
446 B
Python
Executable File
#!/usr/bin/env python3
|
|
# See LICENSE for licensing information.
|
|
#
|
|
# Copyright (c) 2016-2023 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.
|
|
#
|
|
import pstats
|
|
p = pstats.Stats("profile.dat")
|
|
p.strip_dirs()
|
|
# p.sort_stats("cumulative")
|
|
p.sort_stats("tottime")
|
|
# p.print_stats(50)
|
|
p.print_stats()
|
|
|