cProfile——Python效能分析工具

來源:互聯網
上載者:User

標籤:

Python內建了幾個效能分析的模組:profile、cProfile和hotshot,使用方法基本都差不多,無非模組是純Python還是用C寫的。本文介紹cProfile。

 例子

import timedef func1():    sum = 0    for i in range(1000000):        sum += idef func2():    time.sleep(10)func1()func2()

運行

python -m cProfile del.py

運行結果

結果分析
    執行了6個函數,總共花費了10.138s,按著運行函數名字排序為結果輸出。

運行指令碼

python -m cProfile -o del.out del.py

這裡以模組方式直接儲存profile結果,可以進一步分析輸出結果,運行

python -c "import pstats; p=pstats.Stats(‘del.out‘); p.print_stats()"

結果(隨機)

可以設定排序方式,例如以花費時間多少排序

python -c "import pstats; p=pstats.Stats(‘del.out‘); p.sort_stats(‘time‘).print_stats()"

sort_stats支援以下參數:

calls, cumulative, file, line, module, name, nfl, pcalls, stdname, time

 

pstats模組還支援互動式

cProfile——Python效能分析工具

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.