How accurate is python's time.sleep()? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T17:52:20Z http://stackoverflow.com/feeds/question/1133857 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1133857/how-accurate-is-pythons-time-sleep 4 How accurate is python's time.sleep()? Claudiu http://stackoverflow.com/users/15055 2009-07-15T20:33:42Z 2009-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#1133879 9 Answer by Stephan202 for How accurate is python's time.sleep()? Stephan202 http://stackoverflow.com/users/74939 2009-07-15T20:37:01Z 2009-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#1133888 8 Answer by Joe for How accurate is python's time.sleep()? Joe http://stackoverflow.com/users/138948 2009-07-15T20:38:44Z 2009-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#1133925 0 Answer by Nick Bastin for How accurate is python's time.sleep()? Nick Bastin http://stackoverflow.com/users/14700 2009-07-15T20:45:43Z 2009-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#1133984 0 Answer by Ants Aasma for How accurate is python's time.sleep()? Ants Aasma http://stackoverflow.com/users/107366 2009-07-15T20:52:09Z 2009-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>