This is pretty bad micro-optimizing, but I'm just curious. It usually doesn't make a difference in the "real" world.
So I'm compiling a function (that does nothing) using compile() then calling exec on that code and getting a reference to the function I compiled. Then I'm executing it a couple million times and timing it. Then repeating it with a local function. Why is the dynamically compiled function around 15% slower (on python 2.7.2) for just the call?
import datetime
def getCompiledFunc():
cc = compile("def aa():pass", '<string>', 'exec')
dd = {}
exec cc in dd
return dd.get('aa')
compiledFunc = getCompiledFunc()
def localFunc():pass
def testCall(f):
st = datetime.datetime.now()
for x in xrange(10000000): f()
et = datetime.datetime.now()
return (et-st).total_seconds()
for x in xrange(10):
lt = testCall(localFunc)
ct = testCall(compiledFunc)
print "%s %s %s%% slower" % (lt, ct, int(100.0*(ct-lt)/lt))
The output I'm getting is something like:
1.139 1.319 15% slower
timeitto get unbiased measurements, and the results will be identical (I tried, they are). The two function objects are indistunguishable, and they have identical byte code. – Sven Marnach Nov 19 '11 at 2:28__globals__. If I insteadexecthe code object inglobals(), the local vs compiled run at the same speed (2.7.2, Windows). – eryksun Nov 19 '11 at 3:33