diff --git a/src/Python/utils.py b/src/Python/utils.py index 98d19ab..2188079 100644 --- a/src/Python/utils.py +++ b/src/Python/utils.py @@ -10,7 +10,7 @@ def timeit(name): t0 = time.perf_counter() result = original(*args, **kwargs) t1 = time.perf_counter() - print(f"Time to evaluate {name}: {t1 - t0:.3f} s\n") + print(f"Time to evaluate {name}: {(t1 - t0)*1000:.3f} ms\n") return result return wrapper return profile