/usr/share/sagemath/bin/sage-startuptime.py is in sagemath-common 8.1-7ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | #!/usr/bin/env python
########################################################################
# Originally based on a script by Andrew Dalke:
# http://projects.scipy.org/pipermail/numpy-discussion/2008-July/035415.html
#
# 2012: Total rewrite by Volker Braun
########################################################################
########################################################################
# Copyright (C) 2012 Volker Braun <vbraun.name@gmail.com>
#
# Distributed under the terms of the GNU General Public License (GPL)
#
# http://www.gnu.org/licenses/
########################################################################
from __future__ import print_function
import sys
import time
import gc
cmdline_args = sys.argv[2:]
have_cmdline_args = (len(cmdline_args) > 0)
direct_children_time = 0
import_counter = 0
parent = None
index_to_parent = dict()
all_modules = dict()
def new_import(name, globals={}, locals={}, fromlist=[], level=-1):
""""
The new import function
Note that ``name`` is not unique, it can be `sage.foo.bar` or `bar`.
"""
global all_modules, import_counter, parent, direct_children_time
old_direct_children_time = direct_children_time
direct_children_time = 0
old_parent = parent
parent = this_import_counter = import_counter
import_counter += 1
t1 = time.time()
module = old_import(name, globals, locals, fromlist, level)
t2 = time.time()
parent = old_parent
elapsed_time = t2-t1
module_time = elapsed_time - direct_children_time
direct_children_time = old_direct_children_time + elapsed_time
index_to_parent[this_import_counter] = module
data = all_modules.get(module, None)
if data is not None:
data['parents'].append(parent)
data['import_names'].add(name)
data['cumulative_time'] += elapsed_time
data['time'] += module_time
return module
data = {
'cumulative_time': elapsed_time,
'time': module_time,
'import_names': set([name]),
'parents': [parent] }
all_modules[module] = data
return module
old_import = __builtins__.__import__
__builtins__.__import__ = new_import
gc.disable()
from sage.all import *
gc.enable()
__builtins__.__import__ = old_import
for data in all_modules.values():
data['parents'] = set( index_to_parent.get(i,None) for i in data['parents'] )
module_by_speed = sorted(( (data['time'], module, data)
for module,data in all_modules.items() ))
def print_separator():
print('='*72)
def print_headline(line):
print('=={0:=<68}=='.format(' '+line+' '))
width = 10
fmt_header = '{0:>'+str(width)+ '} {1:>'+str(width)+ '} {2:>'+str(width)+'} {3}'
fmt_number = '{0:>'+str(width)+'.3f} {1:>'+str(width)+'.3f} {2:>'+str(width)+'} {3}'
def print_table(module_list, limit):
global fmt_header, fmt_number
print(fmt_header.format('exclude/ms', 'include/ms', '#parents', 'module name'))
for t, module, data in module_list[-limit:]:
print(fmt_number.format(1000*t, 1000*data['cumulative_time'], len(data['parents']), module.__name__))
if not have_cmdline_args:
print('== Slowest module imports (excluding / including children) ==')
print_table(module_by_speed, 50)
print('Total time (sum over exclusive time): {:.3f}ms'.format(1000*sum(data[0] for data in module_by_speed)))
print('Use sage -startuptime <module_name> to get more details about <module_name>.')
else:
for module_arg in cmdline_args:
matching_modules = [m for m in all_modules if m.__name__ == module_arg]
if matching_modules == []:
matching_modules = [m for m in all_modules if m.__name__.endswith(module_arg)]
if len(matching_modules) != 1:
print(matching_modules)
raise ValueError('"'+module_arg+'" does not uniquely determine Sage module.')
module_arg = matching_modules[0]
parents = all_modules[module_arg]['parents']
print()
print_separator()
print_headline('Slowest modules importing {0}'.format(module_arg.__name__))
print_table([m for m in module_by_speed if m[1] in parents], 10)
print()
print_headline('Slowest modules imported by {0}'.format(module_arg.__name__))
print_table([m for m in module_by_speed if module_arg in m[2]['parents']], 10)
print()
data = all_modules[module_arg]
print_headline('module '+module_arg.__name__)
print('Time to import: {0:.3f}ms'.format(1000*data['time']))
print('Cumulative time: {0:.3f}ms'.format(1000*data['cumulative_time']))
print('Names: {0}'.format(', '.join(data['import_names'])))
print('File: {0}'.format(module_arg.__file__))
|