cProfile

1
2
python -m cProfile -o /tmp/epm.prof  manage.py reports build 7646
snakeviz /tmp/epm.prof
名前意味
ncalls呼び出し回数
tottime関数の処理時間の合計 (呼び出した関数の処理時間は除外)
percall ( tottime の隣)tottime を ncalls で割った値。一回の実行にかかる平均時間
cumtime関数の処理時間の合計 (呼び出した関数の処理時間も含める)
percall (sumtime の隣)cumtime を ncalls で割った値。一回の実行にかかる平均時間
filename:lineno(function)ファイル名、行番号、関数名