I can give it floating point numbers, such as
time.sleep(0.5)
but how accurate is it? If i give it
time.sleep(0.05)
will it really sleep about 50 ms?
|
|
|
|
|
|
|
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. 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. 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. |
||||
|
|
|
From the documentation:
And more specifically w.r.t.
|
|||
|
|
|
|
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. |
||||||
|
|
|
Why don't you find out:
For the record, I get around 0.1ms error on my HTPC and 2ms on my laptop, both linux machines. |
||||
|