2 Jul 2012

profile你的python程序

收藏到CSDN网摘

一句话profile你的python程序


以前写过一个python模仿matlab的tic/toc代码,可以很方便的输出程序运行时间,但是有些小简单,具体见这里



这次提供一句话profile程序的python代码:(注意cProfile那个P大写是必须的)
python -m cProfile mytictoc.py 
程序输出可以看看

e:\codes\python\myModule>python -m cProfile mytictoc.py
2 function calls in 0.002 seconds

Ordered by: standard name

ncalls  tottime  percall  cumtime  percall filename:lineno(function)
1    0.002    0.002    0.002    0.002 mytictoc.py:1(<module>)
1    0.000    0.000    0.000    0.000 {method 'disable' of '_lsprof.Profiler' objects}

No comments :

Post a Comment