2款Python内存检测工具介绍和使用方法


Posted in Python onJune 01, 2014

去年自己写过一个程序时,不太确定自己的内存使用量,就想找写工具来打印程序或函数的内存使用量。
这里将上次找到的2个内存检测工具的基本用法记录一下,今后分析Python程序内存使用量时也是需要的。

memory_profiler模块(与psutil一起使用)
注:psutil这模块,我太喜欢了,它实现了很多Linux命令的主要功能,如:ps, top, lsof, netstat, ifconfig, who, df, kill, free 等等。
示例代码(https://github.com/smilejay/python/blob/master/py2014/mem_profile.py):

#!/usr/bin/env python'''
Created on May 31, 2014
@author: Jay <smile665@gmail.com>
@description: use memory_profiler module for profiling programs/functions.
'''
from memory_profiler import profile
from memory_profiler import memory_usage
import time
 
@profile
def my_func():
    a = [1] * (10 ** 6)
    b = [2] * (2 * 10 ** 7)
    del b
    return a
 
def cur_python_mem():
    mem_usage = memory_usage(-1, interval=0.2, timeout=1)
    return mem_usage
 
def f(a, n=100):
    time.sleep(1)
    b = [a] * n
    time.sleep(1)
    return b
if __name__ == '__main__':
    a = my_func()
    print cur_python_mem()
    print ""
    print memory_usage((f, (1,), {'n': int(1e6)}), interval=0.5)

运行上面的代码,输出结果为:

jay@Jay-Air:~/workspace/python.git/py2014 $python mem_profile.py
Filename: mem_profile.pyLine #    Mem usage    Increment   Line Contents
================================================
    15      8.0 MiB      0.0 MiB   @profile
    16                             def my_func():
    17     15.6 MiB      7.6 MiB       a = [1] * (10 ** 6)
    18    168.2 MiB    152.6 MiB       b = [2] * (2 * 10 ** 7)
    19     15.6 MiB   -152.6 MiB       del b
    20     15.6 MiB      0.0 MiB       return a
 
[15.61328125, 15.6171875, 15.6171875, 15.6171875, 15.6171875]
[15.97265625, 16.00390625, 16.00390625, 17.0546875, 23.63671875, 23.63671875, 23.640625]

Guppy (使用了Heapy)
Guppy is an umbrella package combining Heapy and GSL with support utilities such as the Glue module that keeps things together.
示例代码(https://github.com/smilejay/python/blob/master/py2014/try_guppy.py):

#!/usr/bin/env python'''
Created on May 31, 2014
@author: Jay <smile665@gmail.com>
@description: just try to use Guppy-PE (useing Heapy) for memory profiling.
'''
 
from guppy import hpy
a = [8] * (10 ** 6)
h = hpy()
print h.heap()
print h.heap().more
print h.heap().more.more

注意其中,要输出更多信息的.more用法。
运行上面的程序,输出结果为:

jay@Jay-Air:~/workspace/python.git/py2014 $python try_guppy.py
Partition of a set of 26963 objects. Total size = 11557848 bytes.
 Index  Count   %     Size   % Cumulative  % Kind (class / dict of class)
     0    177   1  8151560  71   8151560  71 list
     1  12056  45   996840   9   9148400  79 str
     2   5999  22   488232   4   9636632  83 tuple
     3    324   1   283104   2   9919736  86 dict (no owner)
     4     68   0   216416   2  10136152  88 dict of module
     5    199   1   210856   2  10347008  90 dict of type
     6   1646   6   210688   2  10557696  91 types.CodeType
     7   1610   6   193200   2  10750896  93 function
     8    199   1   177008   2  10927904  95 type
     9    124   0   135328   1  11063232  96 dict of class
<91 more rows. Type e.g. '_.more' to view.>
 Index  Count   %     Size   % Cumulative  % Kind (class / dict of class)
    10   1045   4    83600   1  11148456  96 __builtin__.wrapper_descriptor
    11    109   0    69688   1  11218144  97 dict of guppy.etc.Glue.Interface
    12    389   1    34232   0  11252376  97 __builtin__.weakref
    13    427   2    30744   0  11283120  97 types.BuiltinFunctionType
    14    411   2    29592   0  11312712  98 __builtin__.method_descriptor
    15     25   0    26200   0  11338912  98 dict of guppy.etc.Glue.Share
    16    108   0    25056   0  11363968  98 __builtin__.set
    17    818   3    19632   0  11383600  98 int
    18     66   0    18480   0  11402080  98 dict of guppy.etc.Glue.Owner
    19     16   0    17536   0  11419616  99 dict of abc.ABCMeta
<81 more rows. Type e.g. '_.more' to view.>
(后面省略了部分输出)

另外,还有一个叫“PySizer”的也是做memory profiling的,不过没怎么维护了。

Python 相关文章推荐
Python爬虫框架Scrapy安装使用步骤
Apr 01 Python
Python使用matplotlib实现在坐标系中画一个矩形的方法
May 20 Python
Python中的ctime()方法使用教程
May 22 Python
深入理解Django的自定义过滤器
Oct 17 Python
Python输入二维数组方法
Apr 13 Python
python 平衡二叉树实现代码示例
Jul 07 Python
Win10下python 2.7.13 安装配置方法图文教程
Sep 18 Python
Python3 修改默认环境的方法
Feb 16 Python
Django框架用户注销功能实现方法分析
May 28 Python
Python的赋值、深拷贝与浅拷贝的区别详解
Feb 12 Python
keras实现多GPU或指定GPU的使用介绍
Jun 17 Python
pyspark对Mysql数据库进行读写的实现
Dec 30 Python
使用Python的Supervisor进行进程监控以及自动启动
May 29 #Python
python应用程序在windows下不出现cmd窗口的办法
May 29 #Python
python正则表达式re模块详细介绍
May 29 #Python
在python中的socket模块使用代理实例
May 29 #Python
python中stdout输出不缓存的设置方法
May 29 #Python
python两种遍历字典(dict)的方法比较
May 29 #Python
python中常用的各种数据库操作模块和连接实例
May 29 #Python
You might like
用Zend Encode编写开发PHP程序
2010/02/21 PHP
ThinkPHP中调用PHPExcel的实现代码
2017/04/08 PHP
PHP的mysqli_stmt_init()函数讲解
2019/01/24 PHP
Firefox 无法获取cssRules 的解决办法
2006/10/11 Javascript
PJBlog插件 防刷新的在线播放器
2006/10/25 Javascript
给jqGrid数据行添加修改和删除操作链接(之一)
2011/11/04 Javascript
全面解析Bootstrap中nav、collapse的使用方法
2016/05/22 Javascript
jQuery多个版本和其他js库冲突的解决方法
2016/08/11 Javascript
Node.js中如何合并两个复杂对象详解
2016/12/31 Javascript
VUE元素的隐藏和显示(v-show指令)
2017/06/23 Javascript
详解从新建vue项目到引入组件Element的方法
2017/08/29 Javascript
Node.js dgram模块实现UDP通信示例代码
2017/09/26 Javascript
微信小程序简单实现form表单获取输入数据功能示例
2017/11/30 Javascript
浅谈在node.js进入文件目录的问题
2018/05/13 Javascript
使用Vue-cli 3.0搭建Vue项目的方法
2018/06/07 Javascript
微信小程序canvas绘制圆角base64图片的实现
2019/08/18 Javascript
基于JavaScript实现十五拼图代码实例
2020/04/26 Javascript
基于Vue+Webpack拆分路由文件实现管理
2020/11/16 Javascript
基于element-ui封装表单金额输入框的方法示例
2021/01/06 Javascript
python使用urllib2模块获取gravatar头像实例
2013/12/18 Python
python中将函数赋值给变量时需要注意的一些问题
2017/08/18 Python
详解python中的json和字典dict
2018/06/22 Python
一行Python代码制作动态二维码的实现
2019/09/09 Python
python tkinter控件布局项目实例
2019/11/04 Python
pycharm开发一个简单界面和通用mvc模板(操作方法图解)
2020/05/27 Python
Python 用__new__方法实现单例的操作
2020/12/11 Python
西班牙最大的在线滑板和街头服饰商店:Fillow.net
2019/04/15 全球购物
优秀护士先进事迹
2014/05/08 职场文书
教师考察材料范文
2014/06/03 职场文书
市政工程技术专业自荐书
2014/07/06 职场文书
农业项目建议书
2014/08/25 职场文书
同意离婚答辩状
2015/05/22 职场文书
运动会开幕式通讯稿
2015/07/18 职场文书
2016应届毕业生实习评语
2015/12/01 职场文书
Pytorch 如何加速Dataloader提升数据读取速度
2021/05/28 Python
Android中的Launch Mode详情
2022/06/05 Java/Android