up vote 73 down vote favorite
28
share [g+] share [fb]

Which is better to use for timing in Python? time.clock() or time.time()? Which one provides more accuracy?

for example:

start = time.clock()
... do something
elapsed = (time.clock() - start)

vs.

start = time.time()
... do something
elapsed = (time.time() - start)
link|improve this question

80% accept rate
feedback

12 Answers

up vote 77 down vote accepted

Under unix, time.clock() measures CPU time used by the current process. os.system() will consume almost zero CPU while it waits for the command you ran to finish.

You probably want time.time(), eg

  >>> from time import clock, time
  >>> print clock(), time()
  0.01 1169573460.96
  >>> print clock(), time()
  0.01 1169573463.76
  >>> print clock(), time()
  0.01 1169573467.09
  >>> 

However running the same under windows you get a quite different result :-

  >>> from time import clock, time
  >>> print clock(), time()
  7.54285810068e-006 1169574534.84
  >>> print clock(), time()
  3.32073322168 1169574538.16
  >>> print clock(), time()
  7.32428004118 1169574542.15
  >>>

In windows clock() counts in real time and at much higher resolution than time().

Under windows time() counts in 1ms steps wheras it usually counts in 1us steps under linux.

source: http://mail.python.org/pipermail/python-list/2007-January/423575.html

link|improve this answer
5  
source link is busted – matt wilkie May 14 '10 at 21:09
Weird that only the numbers are different in the end, but here's another link: mail.python.org/pipermail/python-list/2007-January/1121263.html (The one in the answer is broken for me too. I have no idea how mailing list archives work, so maybe the url changes? In any case, my link works for me at the moment.) – 31eee384 Jul 21 '11 at 19:29
feedback

According to the time module docs:

clock()

On Unix, return the current processor time as a floating point number expressed in seconds. The precision, and in fact the very definition of the meaning of ``processor time'', depends on that of the C function of the same name, but in any case, this is the function to use for benchmarking Python or timing algorithms.

Additionally, there is the timeit module for benchmarking code snippets.

link|improve this answer
1  
"this is the function to use for benchmarking Python or timing algorithms."<br> The Python docs don't seem to be accurate based on the answers given here. time.clock() is not always what you want for benchmarking. especially with the existence of the timeit module – Corey Goldberg Sep 19 '08 at 19:44
feedback

Others have answered re: time.time() vs. time.clock().

However, if you're timing the execution of a block of code for benchmarking/profiling purposes, you should take a look at the timeit module.

link|improve this answer
feedback

The short answer is: most of the time time.clock() will be better. However, if you're timing some hardware (for example some algorithm you put in the GPU), then time.clock() will get rid of this time and time.time() is the only solution left.

Note: whatever the method used, the timing will depend on factors you cannot control (when will the process switch, how often, ...), this is worse with time.time() but exists also with time.clock(), so you should never run one timing test only, but always run a series of test and look at mean/variance of the times.

link|improve this answer
feedback

Depends on what you care about. If you mean WALL TIME (as in, the time on the clock on your wall), time.clock() provides NO accuracy because it may manage CPU time.

link|improve this answer
feedback

The difference is very platform-specific.

clock() is very different on Windows than on Linux, for example.

For the sort of examples you describe, you probably want the "timeit" module instead.

link|improve this answer
feedback

One thing to keep in mind: Changing the system time affects time.time() but not time.clock().

I needed to control some automatic tests executions. If one step of the test case took more than a given amount of time, that TC was aborted to go on with the next one.

But sometimes a step needed to change the system time (to check the scheduler module of the application under test), so after setting the system time a few hours in the future, the TC timeout expired and the test case was aborted. I had to switch from time.time() to time.clock() to handle this properly.

link|improve this answer
feedback

Use the time.time() is preferred. please refer to this post: http://www.techarticles.zeromu.net/programming/keeping-track-of-elapsed-time-in-python/

link|improve this answer
feedback
clock() -> floating point number

Return the CPU time or real time since the start of the process or since
the first call to clock().  This has as much precision as the system
records.

time() -> floating point number

Return the current time in seconds since the Epoch.
Fractions of a second may be present if the system clock provides them.

Usually time() is more precise, because operating systems do not store the process running time with the precision they store the system time (ie, actual time)

link|improve this answer
feedback

Short answer: use time.clock() for timing in Python.

On *nix systems, clock() returns the processor time as a floating point number, expressed in seconds. On Windows, it returns the seconds elapsed since the first call to this function, as a floating point number.

time() returns the the seconds since the epoch, in UTC, as a floating point number. There is no guarantee that you will get a better precision that 1 second (even though time() returns a floating point number). Also note that if the system clock has been set back between two calls to this function, the second function call will return a lower value.

link|improve this answer
feedback

On Unix time.clock() measures the amount of CPU time that has been used by the current process, so it's no good for measuring elapsed time from some point in the past. On Windows it will measure wall-clock seconds elapsed since the first call to the function. On either system time.time() will return seconds passed since the epoch.

If you're writing code that's meant only for Windows, either will work (though you'll use the two differently - no subtraction is necessary for time.clock()). If this is going to run on a Unix system or you want code that is guaranteed to be portable, you will want to use time.time().

link|improve this answer
feedback

To the best of my understanding, time.clock() has as much precision as your system will allow it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.