You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was wondering if using time.time() is correct compared to time.perf_coutner(). From a read here, the perf counter measures time at the most precision using CPU clock. On the other hand, time() is synced with UTC time and can be adjusted based on the OS being used.
Thanks a lot for this! I was comparing it to my own
Timer
class in OrbitI was wondering if using
time.time()
is correct compared totime.perf_coutner()
. From a read here, the perf counter measures time at the most precision using CPU clock. On the other hand,time()
is synced with UTC time and can be adjusted based on the OS being used.More info here: https://www.webucator.com/article/python-clocks-explained/
The text was updated successfully, but these errors were encountered: