安裝 首先安裝memory_profiler和psutil 在需要分析的函數前面添加裝飾器@profile 運行call後的輸出: Line Mem usage Increment Line Contents ============================================= ...
安裝
首先安裝memory_profiler和psutil
pip install memory_profiler
pip install psutil
- 在需要分析的函數前面添加裝飾器@profile
@profile()
def call():
a = list()
for i in range(10000 * 100):
a .append(i)
運行call後的輸出:
Line # Mem usage Increment Line Contents
================================================
283 40.1 MiB 40.1 MiB @profile
284 def call():
285 40.1 MiB 0.0 MiB a = list()
286 44.1 MiB 0.0 MiB for i in range(10000 * 10):
287 44.1 MiB 0.3 MiB a .append(i)