renamed time from time package to pytime

This commit is contained in:
Sebastian Kloth 2023-12-09 15:52:15 +01:00
parent c40ea052b8
commit 43ac510e7d

View File

@ -2,7 +2,7 @@
Collection of utility functions.
"""
import functools
from time import time
from time import time as pytime
from types import FunctionType
import numpy as np
@ -492,9 +492,9 @@ def fibonacci_sphere(samples=1000):
def timing(function):
@functools.wraps(function)
def wrap(*args, **kw):
start_time = time()
start_time = pytime()
result = function(*args, **kw)
end_time = time()
end_time = pytime()
time_needed = end_time - start_time
print(f"Finished in {int(time_needed // 60)} min " f"{int(time_needed % 60)} s")
return result