Memory Profiler:查看每一行代码内存
python -m memory_profiler test.py
line_profiler:查看每一行代码运行时间
kernprof -l -v test.py
以上两种情况在安装完成后不用在代码中引入任何包
在需要检测的函数上面添加“@profile”即可。
例如:
@profile
def test(show):
print (show)
Memory Profiler:查看每一行代码内存
python -m memory_profiler test.py
line_profiler:查看每一行代码运行时间
kernprof -l -v test.py
以上两种情况在安装完成后不用在代码中引入任何包
在需要检测的函数上面添加“@profile”即可。
例如:
@profile
def test(show):
print (show)
本文标题:监控python 占用内存和运行时间
本文链接:https://www.haomeiwen.com/subject/qtowzxtx.html
网友评论