Za pomocą małej klasy wygody możesz zmierzyć czas spędzony w wierszach z wcięciem w następujący sposób:
with CodeTimer():
line_to_measure()
another_line()
Który pokaże co następuje po zakończeniu wykonywania wciętej linii (wierszy):
Code block took: x.xxx ms
AKTUALIZACJA: Możesz teraz uzyskać zajęcia za pomocą, pip install linetimer
a następnie from linetimer import CodeTimer
. Zobacz ten projekt GitHub .
Kod dla powyższej klasy:
import timeit
class CodeTimer:
def __init__(self, name=None):
self.name = " '" + name + "'" if name else ''
def __enter__(self):
self.start = timeit.default_timer()
def __exit__(self, exc_type, exc_value, traceback):
self.took = (timeit.default_timer() - self.start) * 1000.0
print('Code block' + self.name + ' took: ' + str(self.took) + ' ms')
Następnie możesz nazwać bloki kodu, które chcesz zmierzyć:
with CodeTimer('loop 1'):
for i in range(100000):
pass
with CodeTimer('loop 2'):
for i in range(100000):
pass
Code block 'loop 1' took: 4.991 ms
Code block 'loop 2' took: 3.666 ms
I zagnieździć je:
with CodeTimer('Outer'):
for i in range(100000):
pass
with CodeTimer('Inner'):
for i in range(100000):
pass
for i in range(100000):
pass
Code block 'Inner' took: 2.382 ms
Code block 'Outer' took: 10.466 ms
Odnośnie timeit.default_timer()
, używa najlepszego timera opartego na wersji systemu operacyjnego i Pythona, zobacz tę odpowiedź .
time.clock()
itime.clock()
mierzy czas procesora w systemie Unix, ale czas ściany w systemie Windows. Lepiej jest używać, gdytime.time()
zachowanie nie różni się w zależności od systemu operacyjnego. stackoverflow.com/questions/85451/…