Python的7种性能测试工具:timeit、profile、cProfile、line_profiler、memory_profiler、PyCharm图形化性能测试工具、objgraph

本文介绍并演示了Python的七种性能测试工具:timeit、profile、cProfile、line_profiler、memory_profiler、PyCharm图形化性能测试工具和objgraph。通过这些工具,开发者可以详细了解代码的运行效率和内存使用情况,包括函数调用次数、运行时间、每行代码的执行次数和时间,以及内存占用。

Python的7种性能测试工具:timeit、profile、cProfile、line_profiler、memory_profiler、PyCharm图形化性能测试工具、objgraph

转自:https://www.cnblogs.com/yaoyao9446/p/9242077.html

1.timeit:

>>> import timeit
>>> def fun():
    for i in range(100000):
        a = i * i

>>> timeit.timeit('fun()', 'from __main__ import fun', number=1)
0.02922706632834235
>>>  

timeit只输出被测试代码的总运行时间,单位为秒,没有详细的统计。

2.profile

profile:纯Python实现的性能测试模块,接口和cProfile一样。

>>> import profile
>>> def fun():
   for i in range(100000):
      a = i * i

      

>>> profile.run('fun()')
         5 function calls in 0.031 seconds

   Ordered by: standard name

   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
        1    0.000    0.000    0.016    0.016 :0(exec)
        1    0.016    0.016    0.016    0.016 :0(setprofile)
        1    0.016    0.016    0.016    0.016 <pyshell#13>:1(fun)
        1    0.000    0.000    0.016    0.016 <string>:1(<module>)
        1    0.000    0.000    0.031    0.031 profile:0(fun())
        0    0.000             0.000          profile:0(profiler)


>>> 

ncall:函数运行次数

tottime: 函数的总的运行时间,减去函数中调用子函数的运行时间

第一个percall:percall = tottime / nclall

cumtime:函数及其所有子函数调整的运行时间,也就是函数开始调用到结束的时间。

第二个percall:percall = cumtime / nclall

3.cProfile

profile:c语言实现的性能测试模块,接口和profile一样。

>>> import cProfile
>>> def fun():
   for i in range(100000):
      a = i * i

      
>>> cProfile.run('fun()')
         4 function calls in 0.024 seconds

   Ordered by: standard name

   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
        1    0.024    0.024    0.024    0.024 <pyshell#17>:1(fun)
        1    0.000    0.000    0.024    0.024 <string>:1(<module>)
        1    0.000    0.000    0.024    0.024 {built-in method exec}
        1    0.000    0.000    0.000    0.000 {method 'disable' of '_lsprof.Profiler' objects}


>>> 

ncalls、tottime、percall、cumtime含义同profile。

4.line_profiler

安装:

pip install line_profiler

安装之后kernprof.py会加到环境变量中。

line_profiler可以统计每行代码的执行次数和执行时间等,时间单位为微妙。

测试代码:

import time


@profile
def fun():
    a = 0
    b = 0
    for i in range(100000):
        a = a + i * i

    for i in range(3):
        b += 1
        time.sleep(0.1)

    return a + b


fun()

使用:

1.在需要测试的函数加上@profile装饰,这里我们把测试代码写在C:\Python34\test.py文件上.

2.运行命令行:kernprof -l -v C:\Python34\test.py
其中显示的结果中:
Total Time:测试代码的总运行时间
Hits:表示每行代码运行的次数
Time:每行代码运行的总时间
Per Hits:每行代码运行一次的时间
% Time:每行代码运行时间的百分比

5.memory_profiler:

memory_profiler工具可以统计每行代码占用的内存大小。

安装:

pip install memory_profiler

pip install psutil

测试代码:

同line_profiler。

使用:

1.在需要测试的函数加上@profile装饰

2.执行命令: python -m memory_profiler C:\Python34\test.py

6.PyCharm图形化性能测试工具:

PyCharm提供了图像化的性能分析工具,使用方法见利用PyCharm的Profile工具进行Python性能分析。

7.objgraph:

objgraph是一个实用模块,可以列出当前内存中存在的对象,可用于定位内存泄露。

objgraph需要安装:

pip install objgraph

使用方法这里不做描述,自行百度。

作为Python的一个高级编程语言,有许多性能测试工具来帮助开发人员增强Python应用程序的性能。以下是Python的一些性能测试工具的介绍: 1. cProfile cProfilePython的内置性能分析模块。它提供了比Python标准模块profile更准确的性能分析数据,它可以为每个函数提供准确的时间分析数据。使用方法如下:在需要测试的函数加上@profile装饰(即在函数前加上@profile)。运行命令如下: ```python python -m cProfile your_script.py ``` 2. memory_profiler memory_profilerPython的一个第三方模块,它可以分析Python应用程序的内存使用情况。使用方法如下: 在需要测试的函数加上@profile装饰执行命令: ```python python -m memory_profiler your_script.py ``` 3. line_profiler line_profilerPython的一个第三方模块,它可以分析Python应用程序的每行代码的执行时间。使用方法如下:在需要测试的函数加上@profile装饰运行命令如下: ```python kernprof -l -v your_script.py ``` 4. timeit timeitPython的内置模块,它可以用于度量小片段代码的执行时间。使用方法如下: ```python import timeit timeit.timeit('your_code_statement', number=10000) ``` 5. PyCharm profiler PyCharm是一个流行的Python集成开发环境,它包含一个性能分析工具,可以让你更好地了解你的代码。使用方法如下:运行 PyCharm,打开您的Python项目,单击 Run -> Profile,然后 PyCharm 将使用其性能分析器运行您的代码。 6. profile 该模块用于在 Python 中进行性能分析。它可以显示每个函数调用的执行时间,并为您提供有关应用程序性能瓶颈的详细信息。使用方法如下: ```python import profile profile.run('your_code_statement') ``` 7. unittest unittest是Python的内置模块之一,它用于Python应用程序的单元测试。单元测试可以帮助你确定Python应用程序中的错误和bug。 此模块还可以用于性能测试。 使用方法如下:编写一个测试用例类,在其中编写测试函数。运行命令如下: ```python python -m unittest test_module.py ```
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值