Are there memory efficiencies gained when code is wrapped in functions? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T10:46:10Z http://stackoverflow.com/feeds/question/919103 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/919103/are-there-memory-efficiencies-gained-when-code-is-wrapped-in-functions 3 Are there memory efficiencies gained when code is wrapped in functions? PyNEwbie 2009-05-28T03:52:02Z 2009-06-04T01:55:24Z <p>I have been working on some code. My usual approach is to first solve all of the pieces of the problem, creating the loops and other pieces of code I need as I work through the problem and then if I expect to reuse the code I go back through it and group the parts of code together that I think should be grouped to create functions. </p> <p>I have just noticed that creating functions and calling them seems to be much more efficient than writing lines of code and deleting containers as I am finished with them. </p> <p>for example:</p> <pre><code>def someFunction(aList): do things to aList that create a dictionary return aDict </code></pre> <p>seems to release more memory at the end than</p> <pre><code>&gt;&gt;do things to alist &gt;&gt;that create a dictionary &gt;&gt;del(aList) </code></pre> <p>Is this expected behavior? </p> <p>EDIT added example code</p> <p>When this function finishes running the PF Usage shows an increase of about 100 mb the filingsList has about 8 million lines.</p> <pre><code>def getAllCIKS(filingList): cikDICT=defaultdict(int) for filing in filingList: if filing.startswith('.'): del(filing) continue cik=filing.split('^')[0].strip() cikDICT[cik]+=1 del(filing) ciklist=cikDICT.keys() ciklist.sort() return ciklist allCIKS=getAllCIKS(open(r'c:\filinglist.txt').readlines()) </code></pre> <p>If I run this instead I show an increase of almost 400 mb</p> <pre><code>cikDICT=defaultdict(int) for filing in open(r'c:\filinglist.txt').readlines(): if filing.startswith('.'): del(filing) continue cik=filing.split('^')[0].strip() cikDICT[cik]+=1 del(filing) ciklist=cikDICT.keys() ciklist.sort() del(cikDICT) </code></pre> <p>EDIT I have been playing around with this some more today. My observation and question should be refined a bit since my focus has been on the PF Usage. Unfortunately I can only poke at this between my other tasks. However I am starting to wonder about references versus copies. If I create a dictionary from a list does the dictionary container hold a copy of the values that came from the list or do they hold references to the values in the list? My bet is that the values are copied instead of referenced. </p> <p>Another thing I noticed is that items in the GC list were items from containers that were deleted. Does that make sense? Soo I have a list and suppose each of the items in the list was [(aTuple),anInteger,[another list]]. When I started learning about how to manipulate the gc objects and inspect them I found those objects in the gc even though the list had been forcefully deleted and even though I passed the 0,1 &amp; 2 value to the method that I don't remember to try to still delete them. </p> <p>I appreciate the insights people have been sharing. Unfortunately I am always interested in figuring out how things work under the hood. </p> http://stackoverflow.com/questions/919103/are-there-memory-efficiencies-gained-when-code-is-wrapped-in-functions/919108#919108 0 Answer by Eclipse for Are there memory efficiencies gained when code is wrapped in functions? Eclipse 2009-05-28T03:54:34Z 2009-05-28T03:54:34Z <p>Some extra memory is freed when you return from a function, but that's exactly as much extra memory as was allocated to call the function in the first place. In any case - if you seeing a large amount of difference, that's likely an artifact of the state of the runtime, and is not something you should really be worrying about. If you are running low on memory, the way to solve the problem is to keep more data on disk using things like b-trees (or just use a database), or use algorithms that use less memory. Also, keep an eye out for making unnecessary copies of large data structures.</p> <p>The real memory savings in creating functions is in your short-term memory. By moving something into a function, you reduce the amount of detail you need to remember by encapsulating part of the minutia away.</p> http://stackoverflow.com/questions/919103/are-there-memory-efficiencies-gained-when-code-is-wrapped-in-functions/919134#919134 1 Answer by Joe for Are there memory efficiencies gained when code is wrapped in functions? Joe 2009-05-28T04:08:41Z 2009-05-28T12:32:06Z <p>You can use the <a href="http://docs.python.org/library/gc.html" rel="nofollow">Python garbage collector interface</a> provided to more closely examine what (if anything) is being left around in the second case. Specifically, you may want to check out <a href="http://docs.python.org/library/gc.html#gc.get%5Fobjects" rel="nofollow">gc.get_objects()</a> to see what is left uncollected, or <a href="http://docs.python.org/library/gc.html#gc.garbage" rel="nofollow">gc.garbage</a> to see if you have any reference cycles.</p> http://stackoverflow.com/questions/919103/are-there-memory-efficiencies-gained-when-code-is-wrapped-in-functions/919172#919172 3 Answer by J S for Are there memory efficiencies gained when code is wrapped in functions? J S 2009-05-28T04:22:40Z 2009-05-28T04:22:40Z <p>Maybe you used some local variables in your function, which are implicitly released by reference counting at the end of the function, while they are not released at the end of your code segment?</p> http://stackoverflow.com/questions/919103/are-there-memory-efficiencies-gained-when-code-is-wrapped-in-functions/920679#920679 0 Answer by fortran for Are there memory efficiencies gained when code is wrapped in functions? fortran 2009-05-28T12:53:26Z 2009-05-28T13:28:24Z <p>Maybe you should re-engineer your code to get rid of unnecessary variables (that may not be freed instantly)... how about the following snippet?</p> <pre><code>myfile = file(r"c:\fillinglist.txt") ciklist = sorted(set(x.split("^")[0].strip() for x in myfile if not x.startswith("."))) </code></pre> <p>EDIT: I don't know why this answer was voted negative... Maybe because it's short? Or maybe because the dude who voted was unable to understand how this one-liner does the same that the code in the question without creating unnecessary temporal containers?</p> <p>Sigh...</p> http://stackoverflow.com/questions/919103/are-there-memory-efficiencies-gained-when-code-is-wrapped-in-functions/948246#948246 0 Answer by PyNEwbie for Are there memory efficiencies gained when code is wrapped in functions? PyNEwbie 2009-06-04T01:55:24Z 2009-06-04T01:55:24Z <p>I asked another question about copying lists and the answers, particularly the answer directing me to look at deepcopy caused me to think about some dictionary behavior. The problem I was experiencing had to do with the fact that the original list is never garbage collected because the dictionary maintains references to the list. I need to use the information about weakref in the <a href="http://docs.python.org/library/weakref.html" rel="nofollow">Python Docs</a>.</p> <p>objects referenced by dictionaries seem to stay alive. I think (but am not sure) the process of pushing the dictionary out of the function forces the copy process and kills the object. This is not complete I need to do some more research.</p>