Installez les modules suivants avec pip
pip install psutil
pip install memory_profiler
Réécrivez la partie suivante pour éviter une erreur de code de caractère
Python 3.4.3
/home/vagrant/.pyenv/versions/3.4.3/lib/python3.4/site-packages/memory_profiler.py
Ligne 890
xec(compile(open(__file__, encoding="utf-8").read(), __file__, 'exec'), ns, ns)
Comment utiliser
Écrivez @ profile
au-dessus de la méthode pour laquelle vous voulez voir la consommation de mémoire
Exemple
#!/usr/bin/env python
# -*- coding: utf-8 -*-
@profile
def main():
a = [1] * (10 ** 6)
b = [2] * (2 * 10 ** 7)
del b
return a
if __name__ == '__main__':
main()
Courez ci-dessous
python -m memory_nom de fichier Python du profiler
memory_profiler
http://www.sakito.com/2012/09/python-memoryprofiler.html
Erreur de code de caractère
http://chidipy.jpn.com/topics/?p=309
Recommended Posts