How accurate is python's time.sleep()? - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T17:52:20Zhttp://stackoverflow.com/feeds/question/1133857http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1133857/how-accurate-is-pythons-time-sleep4How accurate is python's time.sleep()?Claudiuhttp://stackoverflow.com/users/150552009-07-15T20:33:42Z2009-07-15T22:26:44Z
<p>I can give it floating point numbers, such as</p>
<pre><code>time.sleep(0.5)
</code></pre>
<p>but how accurate is it? If i give it</p>
<pre><code>time.sleep(0.05)
</code></pre>
<p>will it really sleep about 50 ms?</p>
http://stackoverflow.com/questions/1133857/how-accurate-is-pythons-time-sleep/1133879#11338799Answer by Stephan202 for How accurate is python's time.sleep()?Stephan202http://stackoverflow.com/users/749392009-07-15T20:37:01Z2009-07-15T21:27:13Z<p>From the <a href="http://docs.python.org/3.0/library/time.html" rel="nofollow">documentation</a>:</p>
<blockquote>
<p>On the other hand, the precision of
<code>time()</code> and <code>sleep()</code> is better than
their Unix equivalents: times are
expressed as floating point numbers,
<code>time()</code> returns the most accurate time
available (using Unix <code>gettimeofday</code>
where available), and <code>sleep()</code> will
accept a time with a nonzero fraction
(Unix <code>select</code> is used to implement
this, where available).</p>
</blockquote>
<p>And <a href="http://docs.python.org/3.0/library/time.html#time.sleep" rel="nofollow">more specifically</a> w.r.t. <code>sleep()</code>:</p>
<blockquote>
<p>Suspend execution for the given number
of seconds. The argument may be a
floating point number to indicate a
more precise sleep time. The actual
suspension time <strong>may be less</strong> than that
requested because any caught signal
will terminate the <code>sleep()</code> following
execution of that signal’s catching
routine. Also, the suspension time <strong>may
be longer</strong> than requested by an
arbitrary amount because of the
scheduling of other activity in the
system.</p>
</blockquote>
http://stackoverflow.com/questions/1133857/how-accurate-is-pythons-time-sleep/1133888#11338888Answer by Joe for How accurate is python's time.sleep()?Joehttp://stackoverflow.com/users/1389482009-07-15T20:38:44Z2009-07-15T20:38:44Z<p>The accuracy of the time.sleep function depends on the accuracy of your underlying OS's sleep accuracy. For non-realtime OS's like a stock Linux Kernel or Windows the smallest interval you can sleep for is about 10-13ms. I have seen accurate sleeps with several milliseconds of that time when above the minimum 10-13ms.</p>
<p>Update:
Like mentioned in the docs sited below, its common to do the sleep in a loop that will make sure to go back to sleep if you have woken up the early.</p>
<p>I should also mention that if you are running Ubuntu you can try out a pseudo real-time kernel by install the rt kernel package.</p>
http://stackoverflow.com/questions/1133857/how-accurate-is-pythons-time-sleep/1133925#11339250Answer by Nick Bastin for How accurate is python's time.sleep()?Nick Bastinhttp://stackoverflow.com/users/147002009-07-15T20:45:43Z2009-07-15T22:26:44Z<p>You can't really guarantee anything about sleep(), except that it will at least make a best effort to sleep as long as you told it (signals can kill your sleep before the time is up, and lots more things can make it run long). For sure the minimum you can get on a standard desktop operating system is going to be around 16ms (timer granularity plus time to context switch), but chances are that the % deviation from the provided argument is going to be significant when you're trying to sleep for 10s of milliseconds. Signals, other threads holding the GIL, kernel scheduling fun, processor speed stepping, etc. can all play havoc with the duration your thread/process actually sleeps.</p>
http://stackoverflow.com/questions/1133857/how-accurate-is-pythons-time-sleep/1133984#11339840Answer by Ants Aasma for How accurate is python's time.sleep()?Ants Aasmahttp://stackoverflow.com/users/1073662009-07-15T20:52:09Z2009-07-15T20:52:09Z<p>Why don't you find out:</p>
<pre><code>from datetime import datetime
import time
def check_sleep(amount):
start = datetime.now()
time.sleep(amount)
end = datetime.now()
delta = end-start
return delta.seconds + delta.microseconds/1000000.
error = sum(abs(check_sleep(0.050)-0.050) for i in xrange(100))*10
print "Average error is %0.2fms" % error
</code></pre>
<p>For the record, I get around 0.1ms error on my HTPC and 2ms on my laptop, both linux machines.</p>