国产99久久精品_欧美日本韩国一区二区_激情小说综合网_欧美一级二级视频_午夜av电影_日本久久精品视频

最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

2款Python內(nèi)存檢測工具介紹和使用方法

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-27 14:38:28
文檔

2款Python內(nèi)存檢測工具介紹和使用方法

2款Python內(nèi)存檢測工具介紹和使用方法:去年自己寫過一個程序時,不太確定自己的內(nèi)存使用量,就想找寫工具來打印程序或函數(shù)的內(nèi)存使用量。這里將上次找到的2個內(nèi)存檢測工具的基本用法記錄一下,今后分析Python程序內(nèi)存使用量時也是需要的。 memory_profiler模塊(與psutil一起使用)注:psut
推薦度:
導(dǎo)讀2款Python內(nèi)存檢測工具介紹和使用方法:去年自己寫過一個程序時,不太確定自己的內(nèi)存使用量,就想找寫工具來打印程序或函數(shù)的內(nèi)存使用量。這里將上次找到的2個內(nèi)存檢測工具的基本用法記錄一下,今后分析Python程序內(nèi)存使用量時也是需要的。 memory_profiler模塊(與psutil一起使用)注:psut

去年自己寫過一個程序時,不太確定自己的內(nèi)存使用量,就想找寫工具來打印程序或函數(shù)的內(nèi)存使用量。
這里將上次找到的2個內(nèi)存檢測工具的基本用法記錄一下,今后分析Python程序內(nèi)存使用量時也是需要的。

memory_profiler模塊(與psutil一起使用)
注:psutil這模塊,我太喜歡了,它實現(xiàn)了很多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
@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)

運行上面的代碼,輸出結(jié)果為:

代碼如下:


jay@Jay-Air:~/workspace/python.git/py2014 $python mem_profile.py
Filename: mem_profile.py

Line # 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

@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用法。
運行上面的程序,輸出結(jié)果為:

代碼如下:


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的,不過沒怎么維護(hù)了。

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

2款Python內(nèi)存檢測工具介紹和使用方法

2款Python內(nèi)存檢測工具介紹和使用方法:去年自己寫過一個程序時,不太確定自己的內(nèi)存使用量,就想找寫工具來打印程序或函數(shù)的內(nèi)存使用量。這里將上次找到的2個內(nèi)存檢測工具的基本用法記錄一下,今后分析Python程序內(nèi)存使用量時也是需要的。 memory_profiler模塊(與psutil一起使用)注:psut
推薦度:
標(biāo)簽: 內(nèi)存使用 python py
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top
主站蜘蛛池模板: 91视频色 | 欧美色第一页 | 欧美亚洲免费 | 国产精品视频久久久久久 | 亚洲欧美另类色图 | 美国人禽交ooo | 国产精品久久二区三区色裕 | 日韩在线激情 | 欧美精品亚洲精品日韩专区va | 国产性做久久久久久 | 在线国产一区 | 91精品国产91久久综合 | 成人国产精品久久久免费 | 图片专区亚洲欧美另类 | 欧美日本一区 | 99久久精品国产一区二区三区 | 国产自产21区| 国产精品高清一区二区 | 国产成人精品一区 | 天码毛片一区二区三区入口 | 国产美女白丝袜精品_a不卡 | 大伊人网 | 国产h片在线观看 | 久久国产精品成人免费 | 亚洲色图欧美在线 | 精品国产一区二区三区麻豆小说 | 美国美女一级毛片免费全 | 日韩亚洲欧美综合 | 99999久久久久久亚洲 | 国产成人综合久久 | 亚洲国产成人精品一区91 | 亚洲最新 | 在线 | 一区二区三区 | 福利视频一区二区三区 | 国产一区二三区 | 毛片激情永久免费 | 国产夜夜操 | 国产视频二区 | 一区 在线播放 | 欧美日韩亚洲国产一区二区三区 | 亚洲欧美视频一区二区三区 |