欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python中性能分析利器pyinstrument详细讲解

程序员文章站 2022-06-16 20:38:23
目录一、前言二、pyinstrument使用三、pyinstrument与cprofile(python自带性能分析器)的不同总结一、前言程序的性能也是非常关键的指标,很多时候你的代码跑的快,更能够体...

一、前言

程序的性能也是非常关键的指标,很多时候你的代码跑的快,更能够体现你的技术。最近发现很多小伙伴在性能分析的过程中都是手动打印运行时间的方式来统计代码耗时的:

import datetime
start=datetime.datetime.now()
b=[i for i in range(10000000)]  # 生成长度为一千万的列表
end=datetime.datetime.now()
print(end-start)

输出结果

0:00:00.377766

这种方法使用很快捷,但需要统计每行代码的执行时间,生成可视化的报告等更完善的性能分析时就有点力不从心了。这个时候可以使用python的第三方库pyinstrument来进行性能分析。

二、pyinstrument使用

pyinstrument 是一个 python 分析器。分析器是一种帮助您优化代码的工具 - 使其更快。要获得最大的速度提升。
pyinstrument 官方文档:pyinstrument

pyinstrument 安装:

pip install pyinstrument

1. 举例

对于最开始我们举的例子,使用pyinstrument实现的代码如下:

文末添加个人vx,获取资料和免费答疑

from pyinstrument import profiler
profiler=profiler()
profiler.start()
b=[i for i in range(10000000)]# 生成长度为一千万的列表
profiler.stop()
profiler.print()

输出结果

  _     ._   __/__   _ _  _  _ _/_   recorded: 10:39:54  samples:  1
 /_//_/// /_\ / //_// / //_'/ //     duration: 0.385     cpu time: 0.391
/   _/                      v4.1.1

program: d:/code/server/aitestdemo/test2.py

0.385 <module>  test2.py:2  #执行总耗时
└─ 0.385 <listcomp>  test2.py:7 #单行代码耗时

打印的信息包含了记录时间、线程数、总耗时、单行代码耗时、cpu执行时间等信息。

在多行代码分析的情况下的使用效果(分别统计生成一千万长度、一亿长度、两亿长度的列表耗时):

from pyinstrument import profiler

profiler = profiler()
profiler.start()
a = [i for i in range(10000000)]  # 生成长度为一千万的列表
b = [i for i in range(100000000)]  # 生成长度为一亿的列表
c = [i for i in range(200000000)]  # 生成长度为十亿的列表
profiler.stop()
profiler.print()

输出结果

program: d:/code/server/aitestdemo/test2.py

16.686 <module>  test2.py:1
├─ 12.178 <listcomp>  test2.py:9
├─ 4.147 <listcomp>  test2.py:8
└─ 0.358 <listcomp>  test2.py:7

2. pyinstrument分析django代码

使用pyinstrument分析 django 代码非常简单,只需要在 django 的配置文件settings.pymiddleware 中添加如下配置:

middleware = [
	...
    'pyinstrument.middleware.profilermiddleware',
	...
]

然后就可以在 url 上加一个参数 profile 就可以:

Python中性能分析利器pyinstrument详细讲解

pyinstrument还支持flask、异步代码的性能分析,具体可以查看官方文档进行学习。
pyinstrument也提供了丰富的api供我们使用,官网文档有详细的介绍:https://pyinstrument.readthedocs.io/en/latest/reference.html

三、pyinstrument与cprofile(python自带性能分析器)的不同

根据官方文档的描述来看,pyinstrument的系统开销会比cprofile 这类跟踪分析器小很多,cprofile由于大量调用探查器,可能会扭曲测试结果:

Python中性能分析利器pyinstrument详细讲解

总结

到此这篇关于python中性能分析利器pyinstrument详细讲解的文章就介绍到这了,更多相关python性能分析利器pyinstrument内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: Python pyinstrument