I have some task to solve and the most important part at the moment is to make the script as time-efficient as possible. One of the elements I am trying to optimize is memoization within one of the functions.
So my question is: Which of the following 3-4 methods is the most efficient / fastest method of implementing memoization in Python?
I have provided code only as an example - if one of the methods is more efficient, but not in the case I mentioned, please share what you know.
Solution 1 - using mutable variable from outer scope
This solution is often shown as the example memoization, but I am not sure how efficient it is. I have heard that using global variables (in this case it is variable from outer, not global scope) is less efficient.
def main():
memo = {}
def power_div(n):
try:
return memo[n]
except (KeyError):
memo[n] = (n ** 2) % 4 # example expression, should not matter
return memo[n]
# extensive usage of power_div() here
Solution 2 - using default, mutable argument
I have found somewhere that using default mutable arguments has been used in the past to pass variables from outer scope, when Python searched the variable first in the local scope, then in the global scope, skipping the nonlocal scope (in this case the scope within function main()). Because default argument is initialized only at the time function is defined and is accessible only inside the inner function, maybe it is thus more efficient?
def main():
def power_div(n, memo={}):
try:
return memo[n]
except (KeyError):
memo[n] = (n ** 2) % 4 # example expression, should not matter
return memo[n]
# extensive usage of power_div() here
Or maybe the following version (being in fact a combination of solutions 1&2) is more efficient?
def main():
memo = {}
def power_div(n, memo=memo):
try:
return memo[n]
except (KeyError):
memo[n] = (n ** 2) % 4 # example expression, should not matter
return memo[n]
# extensive usage of power_div() here
Solution 3 - function's attribute
This is another quite common example of memoization in Python - the memoization object is stored as an attribute of the function itself.
def main():
def power_div(n):
memo = power_div.memo
try:
return memo[n]
except (KeyError):
memo[n] = (n ** 2) % 4 # example expression, should not matter
return memo[n]
# extensive usage of power_div() here
Summary
I am very interested in your opinions about the four above solutions for memoization. It is important also, that the function that uses memoization is within another function.
I know that there are also other solutions for memoization (such as Memoize decorator), but it is hard for me to believe that this is more efficient solution than these listed above. Correct me if I am wrong.
Thanks in advance.
timeitmodule provides a very good way to test things like this. – Amber Feb 2 '12 at 6:59timeit, because 1) I may be missing some other, more efficient solution. 2) My results may be biased because of the way I use memoization. I am trying to find the fastest way to use memoization to learn it and to let people know, not necessarily fix this one piece of code (such question would be too localized). – Tadeck Feb 2 '12 at 7:10get()method ofdictobjects would be faster than catchingKeyError. But it may be that the speed up would only affect the "cache miss" branch, in which case it's not worth it. But it's probably worth timing both ways. – Daniel Pryden Feb 2 '12 at 7:23get(), but since you need to calculate something if the key has not been found, it would look like that:memo.get(n, (n ** 2) % 4). In this case it would not make much sense, because(n ** 2) % 4would be executed every time function is called (thus memoization would be useless). – Tadeck Feb 2 '12 at 7:27