Files
OpenRAM/compiler/view_profile.py
T

17 lines
446 B
Python
Raw Permalink Normal View History

2019-01-30 08:42:25 -08:00
#!/usr/bin/env python3
# See LICENSE for licensing information.
#
2023-01-28 22:56:27 -08:00
# Copyright (c) 2016-2023 Regents of the University of California and The Board
2019-06-14 08:43:41 -07: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 08:56:40 -08:00
import pstats
2019-01-30 08:42:25 -08:00
p = pstats.Stats("profile.dat")
2018-12-07 08:56:40 -08:00
p.strip_dirs()
2019-10-02 23:26:02 +00:00
# p.sort_stats("cumulative")
p.sort_stats("tottime")
2019-10-02 23:26:02 +00:00
# p.print_stats(50)
2019-01-30 08:42:25 -08:00
p.print_stats()
2018-12-07 08:56:40 -08:00