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 128 129 130 131 132 133 134 135 136
|
#/*##########################################################################
#
# The PyMca X-Ray Fluorescence Toolkit
#
# Copyright (c) 2019 European Synchrotron Radiation Facility
#
# This file is part of the PyMca X-ray Fluorescence Toolkit developed at
# the ESRF by the Software group.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
#############################################################################*/
__author__ = "Wout De Nolf"
__contact__ = "wout.de_nolf@esrf.eu"
__license__ = "MIT"
__copyright__ = "European Synchrotron Radiation Facility, Grenoble, France"
try:
import tracemalloc
import linecache
except ImportError:
tracemalloc = None
import cProfile
import pstats
try:
from StringIO import StringIO
except ImportError:
from io import StringIO
import os
import logging
from contextlib import contextmanager
logger = logging.getLogger(__name__)
def print_malloc_snapshot(snapshot, key_type='lineno', limit=10, units='KB'):
"""
:param tracemalloc.Snapshot snapshot:
:param str key_type:
:param int limit: limit number of lines
:param str units: B, KB, MB, GB
"""
n = ['b', 'kb', 'mb', 'gb'].index(units.lower())
sunits, units = units, 1024**n
snapshot = snapshot.filter_traces((
tracemalloc.Filter(False, "<frozen importlib._bootstrap>"),
tracemalloc.Filter(False, "<unknown>"),
))
top_stats = snapshot.statistics(key_type)
total = sum(stat.size for stat in top_stats)
print('================Memory profile================')
for index, stat in enumerate(top_stats, 1):
frame = stat.traceback[0]
# replace "/path/to/module/file.py" with "module/file.py"
#filename = os.sep.join(frame.filename.split(os.sep)[-2:])
filename = frame.filename
print("#%s: %s:%s: %.1f %s"
% (index, filename, frame.lineno, stat.size / units, sunits))
line = linecache.getline(frame.filename, frame.lineno).strip()
if line:
print(' %s' % line)
if index >= limit:
break
other = top_stats[index:]
if other:
size = sum(stat.size for stat in other)
print("%s other: %.1f %s" % (len(other), size / units, sunits))
print("Total allocated size: %.1f %s" % (total / units, sunits))
print('============================================')
@contextmanager
def print_malloc_context(**kwargs):
"""
:param **kwargs: see print_malloc_snapshot
"""
if tracemalloc is None:
logger.error('tracemalloc required')
return
tracemalloc.start()
yield
snapshot = tracemalloc.take_snapshot()
print_malloc_snapshot(snapshot, **kwargs)
@contextmanager
def print_time_context(restrictions=None, sortby='cumtime'):
pr = cProfile.Profile()
pr.enable()
yield
pr.disable()
s = StringIO()
ps = pstats.Stats(pr, stream=s).sort_stats(sortby)
if restrictions is None:
restrictions = (0.1,)
ps.print_stats(*restrictions)
print('================Time profile================')
print(s.getvalue())
print('============================================')
@contextmanager
def profile(memory=True, time=True, memlimit=10,
restrictions=None, sortby='cumtime'):
if not memory and not time:
yield
elif memory and time:
with print_time_context(restrictions=restrictions, sortby=sortby):
with print_malloc_context(limit=memlimit):
yield
elif memory:
with print_malloc_context(limit=memlimit):
yield
else:
with print_time_context(restrictions=restrictions, sortby=sortby):
yield
|