美文网首页
监控python 占用内存和运行时间

监控python 占用内存和运行时间

作者: 王小鸟_wpcool | 来源:发表于2018-02-06 10:19 被阅读0次
    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