Вместо запуска профиля один раз:
import cProfile
def do_heavy_lifting():
for i in range(100):
print('hello')
profiller = cProfile.Profile()
profiller.enable()
do_heavy_lifting()
profiller.disable()
profiller.print_stats(sort='time')
Где результаты профиля такие:
502 function calls in 0.000 seconds
Ordered by: internal time
ncalls tottime percall cumtime percall filename:lineno(function)
100 0.000 0.000 0.000 0.000 {built-in method builtins.print}
200 0.000 0.000 0.000 0.000 cp1252.py:18(encode)
200 0.000 0.000 0.000 0.000 {built-in method _codecs.charmap_encode}
1 0.000 0.000 0.000 0.000 test.py:2(do_heavy_lifting)
1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
Я хотел бы запустить несколько раз и вывести средние результаты для большей точности.
Это начальный рецепт сценария, о котором я подумал:
import cProfile
def do_heavy_lifting():
for i in range(100):
print('hello')
def best_of_profillings(target_profile_function, count):
profile_results = []
for index in range(count):
profiller = cProfile.Profile()
profiller.enable()
target_profile_function()
profiller.disable()
profile_results.append(profiller)
profile_results /= count
return profile_results
heavy_lifting_result = best_of_profillings(do_heavy_lifting, 10)
heavy_lifting_result.print_stats(sort='time')
После запуска он должен отображать результаты, как это делала его первая версия, но отличие состоит в том, что они являются средними значениями для нескольких прогонов, а не запускаются один раз.
В черновом скрипте по-прежнему отсутствует часть profile_results /= count
, где после всех итераций я получаю все вычисленные результаты, создаю средние результаты и всегда отображаю их на экране:
502 function calls in 0.000 seconds
Ordered by: internal time
ncalls tottime percall cumtime percall filename:lineno(function)
100 0.000 0.000 0.000 0.000 {built-in method builtins.print}
200 0.000 0.000 0.000 0.000 cp1252.py:18(encode)
200 0.000 0.000 0.000 0.000 {built-in method _codecs.charmap_encode}
1 0.000 0.000 0.000 0.000 test.py:2(do_heavy_lifting)
1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}