You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
357 B
19 lines
357 B
4 years ago
|
"""
|
||
|
Timer context manager, only used in debug.
|
||
|
|
||
|
"""
|
||
|
|
||
|
from time import time
|
||
|
|
||
|
import contextlib
|
||
|
|
||
|
|
||
|
@contextlib.contextmanager
|
||
|
def timer(subject: str = "time"):
|
||
|
"""print the elapsed time. (only used in debugging)"""
|
||
|
start = time()
|
||
|
yield
|
||
|
elapsed = time() - start
|
||
|
elapsed_ms = elapsed * 1000
|
||
|
print(f"{subject} elapsed {elapsed_ms:.1f}ms")
|