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
Calculation time is currently reported using differences of calls to time.time(). This is not the intended use of that function (the intended use is to report the current time, not time differences).
This issue is thus to replace calls to time.time() by calls to time.perf_counter() which is intended to measure time differences.
The text was updated successfully, but these errors were encountered:
Calculation time is currently reported using differences of calls to
time.time()
. This is not the intended use of that function (the intended use is to report the current time, not time differences).This issue is thus to replace calls to
time.time()
by calls totime.perf_counter()
which is intended to measure time differences.The text was updated successfully, but these errors were encountered: