blob: 1ae59e0cccdb1ee4b78d52653d840e131b40645a [file] [log] [blame]
Benjamin Peterson90f5ba52010-03-11 22:53:45 +00001#! /usr/bin/env python3
Skip Montanarocfd55502003-04-08 19:49:40 +00002
Guido van Rossum6e31aad2003-03-07 01:33:18 +00003"""Tool for measuring execution time of small code snippets.
Guido van Rossumb3f09d42003-03-05 23:31:58 +00004
Guido van Rossumb7ab6002003-03-06 02:32:19 +00005This module avoids a number of common traps for measuring execution
6times. See also Tim Peters' introduction to the Algorithms chapter in
7the Python Cookbook, published by O'Reilly.
Guido van Rossumb3f09d42003-03-05 23:31:58 +00008
Guido van Rossumb7ab6002003-03-06 02:32:19 +00009Library usage: see the Timer class.
Guido van Rossumb3f09d42003-03-05 23:31:58 +000010
11Command line usage:
Georg Brandl794f5b32010-08-01 08:52:32 +000012 python timeit.py [-n N] [-r N] [-s S] [-t] [-c] [-h] [--] [statement]
Guido van Rossumb3f09d42003-03-05 23:31:58 +000013
14Options:
Guido van Rossumb7ab6002003-03-06 02:32:19 +000015 -n/--number N: how many times to execute 'statement' (default: see below)
Guido van Rossum0070f002003-03-15 12:25:00 +000016 -r/--repeat N: how many times to repeat the timer (default 3)
Guido van Rossum6e31aad2003-03-07 01:33:18 +000017 -s/--setup S: statement to be executed once initially (default 'pass')
Guido van Rossumb3f09d42003-03-05 23:31:58 +000018 -t/--time: use time.time() (default on Unix)
19 -c/--clock: use time.clock() (default on Windows)
Guido van Rossum0070f002003-03-15 12:25:00 +000020 -v/--verbose: print raw timing results; repeat for more digits precision
Guido van Rossume8577b72003-03-06 03:02:10 +000021 -h/--help: print this usage message and exit
Georg Brandl794f5b32010-08-01 08:52:32 +000022 --: separate options from statement, use when statement starts with -
Guido van Rossumb3f09d42003-03-05 23:31:58 +000023 statement: statement to be timed (default 'pass')
Guido van Rossumb7ab6002003-03-06 02:32:19 +000024
25A multi-line statement may be given by specifying each line as a
26separate argument; indented lines are possible by enclosing an
Guido van Rossum6e31aad2003-03-07 01:33:18 +000027argument in quotes and using leading spaces. Multiple -s options are
28treated similarly.
Guido van Rossumb7ab6002003-03-06 02:32:19 +000029
30If -n is not given, a suitable number of loops is calculated by trying
31successive powers of 10 until the total time is at least 0.2 seconds.
32
33The difference in default timer function is because on Windows,
34clock() has microsecond granularity but time()'s granularity is 1/60th
35of a second; on Unix, clock() has 1/100th of a second granularity and
36time() is much more precise. On either platform, the default timer
Martin v. Löwis7bdc4842003-09-20 11:09:28 +000037functions measure wall clock time, not the CPU time. This means that
Guido van Rossumb7ab6002003-03-06 02:32:19 +000038other processes running on the same computer may interfere with the
39timing. The best thing to do when accurate timing is necessary is to
Guido van Rossum0070f002003-03-15 12:25:00 +000040repeat the timing a few times and use the best time. The -r option is
41good for this; the default of 3 repetitions is probably enough in most
42cases. On Unix, you can use clock() to measure CPU time.
Guido van Rossume8577b72003-03-06 03:02:10 +000043
44Note: there is a certain baseline overhead associated with executing a
45pass statement. The code here doesn't try to hide it, but you should
Guido van Rossum6e31aad2003-03-07 01:33:18 +000046be aware of it. The baseline overhead can be measured by invoking the
47program without arguments.
48
49The baseline overhead differs between Python versions! Also, to
50fairly compare older Python versions to Python 2.3, you may want to
51use python -O for the older versions to avoid timing SET_LINENO
52instructions.
Guido van Rossumb3f09d42003-03-05 23:31:58 +000053"""
54
Raymond Hettinger816ed1b2004-01-04 03:47:51 +000055import gc
Guido van Rossumb3f09d42003-03-05 23:31:58 +000056import sys
Guido van Rossumb3f09d42003-03-05 23:31:58 +000057import time
Guido van Rossum6e31aad2003-03-07 01:33:18 +000058try:
59 import itertools
60except ImportError:
61 # Must be an older Python version (see timeit() below)
62 itertools = None
Guido van Rossumb3f09d42003-03-05 23:31:58 +000063
64__all__ = ["Timer"]
65
Guido van Rossum538f1d82003-03-14 17:21:00 +000066dummy_src_name = "<timeit-src>"
Guido van Rossumb3f09d42003-03-05 23:31:58 +000067default_number = 1000000
Guido van Rossum0070f002003-03-15 12:25:00 +000068default_repeat = 3
Guido van Rossumb3f09d42003-03-05 23:31:58 +000069
70if sys.platform == "win32":
71 # On Windows, the best timer is time.clock()
72 default_timer = time.clock
73else:
74 # On most other platforms the best timer is time.time()
75 default_timer = time.time
76
Guido van Rossumb7ab6002003-03-06 02:32:19 +000077# Don't change the indentation of the template; the reindent() calls
78# in Timer.__init__() depend on setup being indented 4 spaces and stmt
79# being indented 8 spaces.
Guido van Rossumb3f09d42003-03-05 23:31:58 +000080template = """
Guido van Rossumdd42edc2003-03-21 14:54:19 +000081def inner(_it, _timer):
Guido van Rossumb3f09d42003-03-05 23:31:58 +000082 %(setup)s
Guido van Rossum538f1d82003-03-14 17:21:00 +000083 _t0 = _timer()
Guido van Rossumdd42edc2003-03-21 14:54:19 +000084 for _i in _it:
Guido van Rossumb3f09d42003-03-05 23:31:58 +000085 %(stmt)s
Guido van Rossum538f1d82003-03-14 17:21:00 +000086 _t1 = _timer()
87 return _t1 - _t0
Guido van Rossumb3f09d42003-03-05 23:31:58 +000088"""
89
90def reindent(src, indent):
Guido van Rossumb7ab6002003-03-06 02:32:19 +000091 """Helper to reindent a multi-line statement."""
Guido van Rossume05dcce2003-03-06 13:09:09 +000092 return src.replace("\n", "\n" + " "*indent)
Guido van Rossumb3f09d42003-03-05 23:31:58 +000093
Guido van Rossumd8faa362007-04-27 19:54:29 +000094def _template_func(setup, func):
95 """Create a timer function. Used if the "statement" is a callable."""
Raymond Hettingerb646aa12009-04-03 02:45:36 +000096 def inner(_it, _timer, _func=func):
Guido van Rossumd8faa362007-04-27 19:54:29 +000097 setup()
98 _t0 = _timer()
99 for _i in _it:
Raymond Hettingerb646aa12009-04-03 02:45:36 +0000100 _func()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000101 _t1 = _timer()
102 return _t1 - _t0
103 return inner
104
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000105class Timer:
Guido van Rossumb7ab6002003-03-06 02:32:19 +0000106 """Class for timing execution speed of small code snippets.
107
108 The constructor takes a statement to be timed, an additional
109 statement used for setup, and a timer function. Both statements
110 default to 'pass'; the timer function is platform-dependent (see
111 module doc string).
112
113 To measure the execution time of the first statement, use the
114 timeit() method. The repeat() method is a convenience to call
115 timeit() multiple times and return a list of results.
116
117 The statements may contain newlines, as long as they don't contain
118 multi-line string literals.
119 """
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000120
121 def __init__(self, stmt="pass", setup="pass", timer=default_timer):
Guido van Rossumb7ab6002003-03-06 02:32:19 +0000122 """Constructor. See class doc string."""
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000123 self.timer = timer
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000124 ns = {}
Guido van Rossum3172c5d2007-10-16 18:12:55 +0000125 if isinstance(stmt, str):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000126 stmt = reindent(stmt, 8)
Guido van Rossum3172c5d2007-10-16 18:12:55 +0000127 if isinstance(setup, str):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000128 setup = reindent(setup, 4)
129 src = template % {'stmt': stmt, 'setup': setup}
Florent Xicluna5d1155c2011-10-28 14:45:05 +0200130 elif callable(setup):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000131 src = template % {'stmt': stmt, 'setup': '_setup()'}
132 ns['_setup'] = setup
133 else:
134 raise ValueError("setup is neither a string nor callable")
135 self.src = src # Save for traceback display
136 code = compile(src, dummy_src_name, "exec")
137 exec(code, globals(), ns)
138 self.inner = ns["inner"]
Florent Xicluna5d1155c2011-10-28 14:45:05 +0200139 elif callable(stmt):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000140 self.src = None
Guido van Rossum3172c5d2007-10-16 18:12:55 +0000141 if isinstance(setup, str):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000142 _setup = setup
143 def setup():
144 exec(_setup, globals(), ns)
Florent Xicluna5d1155c2011-10-28 14:45:05 +0200145 elif not callable(setup):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000146 raise ValueError("setup is neither a string nor callable")
147 self.inner = _template_func(setup, stmt)
148 else:
149 raise ValueError("stmt is neither a string nor callable")
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000150
Guido van Rossum538f1d82003-03-14 17:21:00 +0000151 def print_exc(self, file=None):
152 """Helper to print a traceback from the timed code.
153
154 Typical use:
155
156 t = Timer(...) # outside the try/except
157 try:
158 t.timeit(...) # or t.repeat(...)
159 except:
160 t.print_exc()
161
162 The advantage over the standard traceback is that source lines
163 in the compiled template will be displayed.
164
165 The optional file argument directs where the traceback is
166 sent; it defaults to sys.stderr.
167 """
168 import linecache, traceback
Guido van Rossumd8faa362007-04-27 19:54:29 +0000169 if self.src is not None:
170 linecache.cache[dummy_src_name] = (len(self.src),
171 None,
172 self.src.split("\n"),
173 dummy_src_name)
174 # else the source is already stored somewhere else
175
Guido van Rossum538f1d82003-03-14 17:21:00 +0000176 traceback.print_exc(file=file)
177
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000178 def timeit(self, number=default_number):
Guido van Rossumb7ab6002003-03-06 02:32:19 +0000179 """Time 'number' executions of the main statement.
180
181 To be precise, this executes the setup statement once, and
182 then returns the time it takes to execute the main statement
183 a number of times, as a float measured in seconds. The
184 argument is the number of times through the loop, defaulting
185 to one million. The main statement, the setup statement and
186 the timer function to be used are passed to the constructor.
187 """
Guido van Rossum6e31aad2003-03-07 01:33:18 +0000188 if itertools:
Guido van Rossumdd42edc2003-03-21 14:54:19 +0000189 it = itertools.repeat(None, number)
Guido van Rossum6e31aad2003-03-07 01:33:18 +0000190 else:
Guido van Rossumdd42edc2003-03-21 14:54:19 +0000191 it = [None] * number
Raymond Hettinger816ed1b2004-01-04 03:47:51 +0000192 gcold = gc.isenabled()
193 gc.disable()
Raymond Hettinger3a081f52011-07-29 00:02:04 -0700194 try:
195 timing = self.inner(it, self.timer)
196 finally:
197 if gcold:
198 gc.enable()
Raymond Hettinger816ed1b2004-01-04 03:47:51 +0000199 return timing
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000200
201 def repeat(self, repeat=default_repeat, number=default_number):
Skip Montanarofb2a6cc2003-04-08 19:40:19 +0000202 """Call timeit() a few times.
Guido van Rossumb7ab6002003-03-06 02:32:19 +0000203
Skip Montanarofb2a6cc2003-04-08 19:40:19 +0000204 This is a convenience function that calls the timeit()
Guido van Rossumb7ab6002003-03-06 02:32:19 +0000205 repeatedly, returning a list of results. The first argument
Skip Montanarofb2a6cc2003-04-08 19:40:19 +0000206 specifies how many times to call timeit(), defaulting to 3;
Guido van Rossumb7ab6002003-03-06 02:32:19 +0000207 the second argument specifies the timer argument, defaulting
208 to one million.
Guido van Rossum55735412003-03-06 16:11:17 +0000209
210 Note: it's tempting to calculate mean and standard deviation
211 from the result vector and report these. However, this is not
212 very useful. In a typical case, the lowest value gives a
213 lower bound for how fast your machine can run the given code
214 snippet; higher values in the result vector are typically not
215 caused by variability in Python's speed, but by other
216 processes interfering with your timing accuracy. So the min()
217 of the result is probably the only number you should be
218 interested in. After that, you should look at the entire
219 vector and apply common sense rather than statistics.
Guido van Rossumb7ab6002003-03-06 02:32:19 +0000220 """
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000221 r = []
222 for i in range(repeat):
223 t = self.timeit(number)
224 r.append(t)
225 return r
226
Guido van Rossumd8faa362007-04-27 19:54:29 +0000227def timeit(stmt="pass", setup="pass", timer=default_timer,
228 number=default_number):
229 """Convenience function to create Timer object and call timeit method."""
230 return Timer(stmt, setup, timer).timeit(number)
231
232def repeat(stmt="pass", setup="pass", timer=default_timer,
233 repeat=default_repeat, number=default_number):
234 """Convenience function to create Timer object and call repeat method."""
235 return Timer(stmt, setup, timer).repeat(repeat, number)
236
R David Murraya88da672011-03-16 17:32:27 -0400237def main(args=None, *, _wrap_timer=None):
Guido van Rossumb7ab6002003-03-06 02:32:19 +0000238 """Main program, used when run as a script.
239
R David Murraya88da672011-03-16 17:32:27 -0400240 The optional 'args' argument specifies the command line to be parsed,
Guido van Rossumb7ab6002003-03-06 02:32:19 +0000241 defaulting to sys.argv[1:].
242
243 The return value is an exit code to be passed to sys.exit(); it
244 may be None to indicate success.
Guido van Rossum538f1d82003-03-14 17:21:00 +0000245
246 When an exception happens during timing, a traceback is printed to
247 stderr and the return value is 1. Exceptions at other times
248 (including the template compilation) are not caught.
R David Murraya88da672011-03-16 17:32:27 -0400249
250 '_wrap_timer' is an internal interface used for unit testing. If it
251 is not None, it must be a callable that accepts a timer function
252 and returns another timer function (used for unit testing).
Guido van Rossumb7ab6002003-03-06 02:32:19 +0000253 """
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000254 if args is None:
255 args = sys.argv[1:]
256 import getopt
257 try:
Guido van Rossum0070f002003-03-15 12:25:00 +0000258 opts, args = getopt.getopt(args, "n:s:r:tcvh",
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000259 ["number=", "setup=", "repeat=",
Guido van Rossum0070f002003-03-15 12:25:00 +0000260 "time", "clock", "verbose", "help"])
Guido van Rossumb940e112007-01-10 16:19:56 +0000261 except getopt.error as err:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000262 print(err)
263 print("use -h/--help for command line help")
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000264 return 2
265 timer = default_timer
266 stmt = "\n".join(args) or "pass"
267 number = 0 # auto-determine
Guido van Rossum6e31aad2003-03-07 01:33:18 +0000268 setup = []
Guido van Rossum0070f002003-03-15 12:25:00 +0000269 repeat = default_repeat
270 verbose = 0
271 precision = 3
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000272 for o, a in opts:
273 if o in ("-n", "--number"):
274 number = int(a)
275 if o in ("-s", "--setup"):
Guido van Rossum6e31aad2003-03-07 01:33:18 +0000276 setup.append(a)
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000277 if o in ("-r", "--repeat"):
278 repeat = int(a)
279 if repeat <= 0:
280 repeat = 1
Guido van Rossume8577b72003-03-06 03:02:10 +0000281 if o in ("-t", "--time"):
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000282 timer = time.time
Guido van Rossume8577b72003-03-06 03:02:10 +0000283 if o in ("-c", "--clock"):
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000284 timer = time.clock
Guido van Rossum0070f002003-03-15 12:25:00 +0000285 if o in ("-v", "--verbose"):
286 if verbose:
287 precision += 1
288 verbose += 1
Guido van Rossume8577b72003-03-06 03:02:10 +0000289 if o in ("-h", "--help"):
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000290 print(__doc__, end=' ')
Guido van Rossume8577b72003-03-06 03:02:10 +0000291 return 0
Guido van Rossum6e31aad2003-03-07 01:33:18 +0000292 setup = "\n".join(setup) or "pass"
Raymond Hettinger22952a32003-05-20 04:59:56 +0000293 # Include the current directory, so that local imports work (sys.path
294 # contains the directory of this script, rather than the current
295 # directory)
296 import os
297 sys.path.insert(0, os.curdir)
R David Murraya88da672011-03-16 17:32:27 -0400298 if _wrap_timer is not None:
299 timer = _wrap_timer(timer)
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000300 t = Timer(stmt, setup, timer)
301 if number == 0:
302 # determine number so that 0.2 <= total time < 2.0
303 for i in range(1, 10):
304 number = 10**i
Guido van Rossum538f1d82003-03-14 17:21:00 +0000305 try:
306 x = t.timeit(number)
307 except:
308 t.print_exc()
309 return 1
Guido van Rossum0070f002003-03-15 12:25:00 +0000310 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000311 print("%d loops -> %.*g secs" % (number, precision, x))
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000312 if x >= 0.2:
313 break
Guido van Rossum538f1d82003-03-14 17:21:00 +0000314 try:
315 r = t.repeat(repeat, number)
316 except:
317 t.print_exc()
318 return 1
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000319 best = min(r)
Guido van Rossum0070f002003-03-15 12:25:00 +0000320 if verbose:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000321 print("raw times:", " ".join(["%.*g" % (precision, x) for x in r]))
322 print("%d loops," % number, end=' ')
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000323 usec = best * 1e6 / number
Guido van Rossum57172082003-10-20 23:38:28 +0000324 if usec < 1000:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000325 print("best of %d: %.*g usec per loop" % (repeat, precision, usec))
Guido van Rossum57172082003-10-20 23:38:28 +0000326 else:
327 msec = usec / 1000
328 if msec < 1000:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000329 print("best of %d: %.*g msec per loop" % (repeat, precision, msec))
Guido van Rossum57172082003-10-20 23:38:28 +0000330 else:
331 sec = msec / 1000
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000332 print("best of %d: %.*g sec per loop" % (repeat, precision, sec))
Guido van Rossumb7ab6002003-03-06 02:32:19 +0000333 return None
Guido van Rossumb3f09d42003-03-05 23:31:58 +0000334
335if __name__ == "__main__":
336 sys.exit(main())