51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

查看: 598|回复: 0
打印 上一主题 下一主题

[python] 告诉你Python 内存使用情况和代码执行时间

[复制链接]
  • TA的每日心情
    无聊
    12 小时前
  • 签到天数: 939 天

    连续签到: 1 天

    [LV.10]测试总司令

    跳转到指定楼层
    1#
    发表于 2023-1-31 10:20:28 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
    我的代码的哪些部分运行时间最长、内存最多?我怎样才能找到需要改进的地方?
      在开发过程中,我很确定我们大多数人都会想知道这一点,在本文中总结了一些方法来监控 Python 代码的时间和内存使用情况。
      本文将介绍4种方法,前3种方法提供时间信息,第4个方法可以获得内存使用情况。
      time 模块
      这是计算代码运行所需时间的最简单、最直接(但需要手动开发)的方法。他的逻辑也很简单:记录代码运行之前和之后的时间,计算时间之间的差异。这可以实现如下:
    1. import time
    2.   
    3.    start_time = time.time()
    4.    result = 5+2
    5.    end_time = time.time()
    6.   
    7.    print('Time taken = {} sec'.format(end_time - start_time))
    复制代码


    下面的例子显示了for循环和列表推导式在时间上的差异:
    1. import time
    2.   
    3.    # for loop vs. list comp
    4.    list_comp_start_time = time.time()
    5.    result = [i for i in range(0,1000000)]
    6.    list_comp_end_time = time.time()
    7.    print('Time taken for list comp = {} sec'.format(list_comp_end_time - list_comp_start_time))
    8.   
    9.    result=[]
    10.    for_loop_start_time = time.time()
    11.    for i in range(0,1000000):
    12.        result.append(i)
    13.    for_loop_end_time = time.time()
    14.    print('Time taken for for-loop = {} sec'.format(for_loop_end_time - for_loop_start_time))
    15.   
    16.    list_comp_time = list_comp_end_time - list_comp_start_time
    17.    for_loop_time = for_loop_end_time - for_loop_start_time
    18.    print('Difference = {} %'.format((for_loop_time - list_comp_time)/list_comp_time * 100))
    复制代码


    我们都知道for会慢一些。
    1. Time taken for list comp = 0.05843973159790039 sec
    2.    Time taken for for-loop = 0.06774497032165527 sec
    3.    Difference = 15.922795107582594 %
    复制代码


    %%time 魔法命令
      魔法命令是IPython内核中内置的方便命令,可以方便地执行特定的任务。一般情况下都实在jupyter notebook种使用。
      在单元格的开头添加%%time ,单元格执行完成后,会输出单元格执行所花费的时间。
    1. %%time
    2.    def convert_cms(cm, unit='m'):
    3.        '''
    4.       Function to convert cm to m or feet
    5.       '''
    6.        if unit == 'm':
    7.            return cm/100
    8.        return cm/30.48
    9.   
    10.    convert_cms(1000)
    复制代码


    结果如下:
    1. CPU times: user 24 μs, sys: 1 μs, total: 25 μs
    2.    Wall time: 28.1 μs
    3.   
    4.    Out[8]: 10.0
    复制代码


    这里的CPU times是CPU处理代码所花费的实际时间,Wall time是事件经过的真实时间,在方法入口和方法出口之间的时间。
      line_profiler
      前两个方法只提供执行该方法所需的总时间。通过时间分析器我们可以获得函数中每一个代码的运行时间。
      这里我们需要使用line_profiler包。使用pip install line_profiler。
    1. import line_profiler
    2.   
    3.    def convert_cms(cm, unit='m'):
    4.        '''
    5.       Function to convert cm to m or feet
    6.       '''
    7.        if unit == 'm':
    8.            return cm/100
    9.        return cm/30.48
    10.   
    11.    # Load the profiler
    12.    %load_ext line_profiler
    13.   
    14.    # Use the profiler's magic to call the method
    15.    %lprun -f convert_cms convert_cms(1000, 'f')
    复制代码


    输出结果如下:
    1. Timer unit: 1e-06 s
    2.   
    3.    Total time: 4e-06 s
    4.    File: /var/folders/y_/ff7_m0c146ddrr_mctd4vpkh0000gn/T/ipykernel_22452/382784489.py
    5.    Function: convert_cms at line 1
    6.   
    7.    Line #     Hits         Time Per Hit   % Time Line Contents
    8.    ==============================================================
    9.         1                                           def convert_cms(cm, unit='m'):
    10.         2                                               '''
    11.         3                                               Function to convert cm to m or feet
    12.         4                                               '''
    13.         5         1         2.0     2.0     50.0     if unit == 'm':
    14.         6                                                   return cm/100
    15.         7         1         2.0     2.0     50.0     return cm/30.48
    复制代码


    可以看到line_profiler提供了每行代码所花费时间的详细信息。
      ·Line Contents :运行的代码
      · Hits:行被执行的次数
      · Time:所花费的总时间(即命中次数x每次命中次数)
      · Per Hit:一次执行花费的时间,也就是说 Time =  Hits X Per Hit
      · % Time:占总时间的比例
      可以看到,每一行代码都详细的分析了时间,这对于我们分析时间相当的有帮助。
      memory_profiler
      与line_profiler类似,memory_profiler提供代码的逐行内存使用情况。
      要安装它需要使用pip install memory_profiler。我们这里监视convert_cms_f函数的内存使用情况。
    1.  from conversions import convert_cms_f
    2.    import memory_profiler
    3.   
    4.    %load_ext memory_profiler
    5.   
    6.    %mprun -f convert_cms_f convert_cms_f(1000, 'f')
    复制代码


    convert_cms_f函数在单独的文件中定义,然后导入。结果如下:
    1. Line #   Mem usage   Increment Occurrences   Line Contents
    2.    =============================================================
    3.         1     63.7 MiB     63.7 MiB           1   def convert_cms_f(cm, unit='m'):
    4.         2                                             '''
    5.         3                                             Function to convert cm to m or feet
    6.         4                                             '''
    7.         5     63.7 MiB     0.0 MiB           1       if unit == 'm':
    8.         6                                                 return cm/100
    9.         7     63.7 MiB     0.0 MiB           1       return cm/30.48
    复制代码


    memory_profiler 提供对每行代码内存使用情况的详细了解。
      这里的1 MiB (MebiByte) 几乎等于 1MB。1 MiB  = 1.048576 1MB
      但是memory_profiler 也有一些缺点:它通过查询操作系统内存,所以结果可能与 python 解释器略有不同,如果在会话中多次运行 %mprun,可能会注意到增量列报告所有代码行为 0.0 MiB。这是因为魔法命令的限制导致的。
      虽然memory_profiler有一些问题,但是它就使我们能够清楚地了解内存使用情况,对于开发来说是一个非常好用的工具。
      总结
      虽然Python并不是一个以执行效率见长的语言,但是在某些特殊情况下这些命令对我们还是非常有帮助的。





    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    收藏收藏
    回复

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-4-28 21:42 , Processed in 0.072442 second(s), 23 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表