lenskit.logging.stopwatch#

Timing support

Classes

Stopwatch([start])

Timer class for recording elapsed wall time in operations.

class lenskit.logging.stopwatch.Stopwatch(start=True)#

Bases: object

Timer class for recording elapsed wall time in operations.

elapsed(*, accumulated=True)#

Get the elapsed time.

Return type:

float

measure(accumulate=False)#

Context manager to measure an item, optionally accumulating its time.

Parameters:

accumulate (bool)