in reply to Re: how apply large memory with perl?
in thread how apply large memory with perl?
++!!
BTW. I don't know internal details of .. op and $#, but what makes so big difference?
I am trying to improve my English skills, if you see a mistake please feel free to reply or /msg me a correction
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: how apply large memory with perl?
by BrowserUk (Patriarch) on Aug 09, 2012 at 11:02 UTC | |
I don't know internal details of .. op and $#, but what makes so big difference? When you use the range operator outside of a for loop, Perl creates that list on one of its internal stacks first. This requires ~650MB, and is best illustrated by creating that mythically non-existant "list in a scalar context":
Now we've got the list, it need to be copied to the array, which takes the other ~300MB:
When you use the range operator in the context of a for statement; it acts as an iterator, thus completely avoiding the creation of the stack-based list:
If we just assigned the values to the array one at a time, the array would have to keep doubling in size each time it filled; in order to accommodate new values, resulting in the memory from previous resizings freed to the heap, but still needed at one instance in time and an overall memory usage of 400MB:
By pre-sizing the array to its final size we save those intermediate resizings and another 100+MB:
Simple steps with big gains. With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
| [reply] [d/l] [select] |
by aaron_baugher (Curate) on Aug 09, 2012 at 13:35 UTC | |
Thank you, that cleared things up perfectly. I was familiar with the bit from perldata about pre-sizing large arrays for efficiency (although it describes the gain as "miniscule," which is clearly not the case here), but I assumed that meant the CPU efficiency of not requiring repeated re-allocations of memory -- the doubling you speak of. I didn't realize that those doublings were done in new memory rather than appending to what was already allocated, causing inefficiency memory-wise too. And I hadn't thought about the fact that two arrays exist at once in the first method, but it makes perfect sense. Aaron B. | [reply] |
by BrowserUk (Patriarch) on Aug 09, 2012 at 14:41 UTC | |
I didn't realize that those doublings were done in new memory rather than appending to what was already allocated If the process already has sufficient memory for the doubling, and the memory immediately above the existing allocation is free, then the C-style array of pointers that forms the backbone of a Perl array may be realloc()able in-place, thereby alleviating the necessity for the previous and next sized generations to coexist. It also avoids the necessity to copy the pointers. But that's a pretty big if. That said, by far the biggest save comes from avoiding building big lists on the stack. For example, compare iterating an array using: When you routinely work with very large volumes of data and cpu-bound processes, rather than (typically cgi-based) IO-bound processes where 1 MB is often considered "big data"; you shall count yourself lucky the preponderance of programmers and pundits that fall into the latter camp have not yet exercised much influence on the nature of Perl. I revel in Perl's TIMTOWTDI, that allows me to tailor my usage to the needs of my applications; rather than being forced into the straight-jacket of the theoretical "best way" as defined by someone(s) working in unrelated fields with entirely different criteria. If I wanted the world of "only one good way", I'd use python. With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
| [reply] [d/l] [select] |