Back to basics; for-loops, arrays/vectors/lists, and optimization - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T14:16:52Zhttp://stackoverflow.com/feeds/question/335807http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/335807/back-to-basics-for-loops-arrays-vectors-lists-and-optimization3Back to basics; for-loops, arrays/vectors/lists, and optimizationAgent Worm2008-12-02T23:26:38Z2008-12-08T17:50:58Z
<p>I was working on some code recently and came across a method that had 3 for-loops that worked on 2 different arrays. </p>
<p>Basically, what was happening was a foreach loop would walk through a vector and convert a DateTime from an object, and then another foreach loop would convert a long value from an object. Each of these loops would store the converted value into lists.</p>
<p>The final loop would go through these two lists and store those values into yet another list because one final conversion needed to be done for the date. </p>
<p>Then after all that is said and done, The final two lists are converted to an array using ToArray().</p>
<p>Ok, bear with me, I'm finally getting to my question. </p>
<p>So, I decided to make a single for loop to replace the first two foreach loops and convert the values in one fell swoop (the third loop is quasi-necessary, although, I'm sure with some working I could also put it into the single loop). </p>
<p>But then I read the article "What your computer does while you wait" by Gustav Duarte and started thinking about memory management and what the data was doing while it's being accessed in the for-loop where two lists are being accessed simultaneously. </p>
<p>So my question is, what is the best approach for something like this? Try to condense the for-loops so it happens in as little loops as possible, causing multiple data access for the different lists. Or, allow the multiple loops and let the system bring in data it's anticipating. These lists and arrays can be potentially large and looping through 3 lists, perhaps 4 depending on how ToArray() is implemented, can get very costy (O(n^3) ??). But from what I understood in said article and from my CS classes, having to fetch data can be expensive too. </p>
<p>Would anyone like to provide any insight? Or have I completely gone off my rocker and need to relearn what I have unlearned?</p>
<p>Thank you</p>
http://stackoverflow.com/questions/335807/back-to-basics-for-loops-arrays-vectors-lists-and-optimization/335826#3358265Answer by Jon Skeet for Back to basics; for-loops, arrays/vectors/lists, and optimizationJon Skeet2008-12-02T23:33:15Z2008-12-02T23:33:15Z<p>The best approach? Write the most readable code, work out its complexity, and work out if that's actually a problem.</p>
<p>If each of your loops is O(n), then you've still only got an O(n) operation.</p>
<p>Having said that, it does sound like a LINQ approach would be more readable... and quite possibly more efficient as well. Admittedly we haven't seen the code, but I suspect it's the kind of thing which is <em>ideal</em> for LINQ.</p>
http://stackoverflow.com/questions/335807/back-to-basics-for-loops-arrays-vectors-lists-and-optimization/335859#3358593Answer by jalf for Back to basics; for-loops, arrays/vectors/lists, and optimizationjalf2008-12-02T23:53:24Z2008-12-02T23:53:24Z<p>Am I understanding you correctly in this?</p>
<p>You have these loops:</p>
<pre><code>for (...){
// Do A
}
for (...){
// Do B
}
for (...){
// Do C
}
</code></pre>
<p>And you converted it into </p>
<pre><code>for (...){
// Do A
// Do B
}
for (...){
// Do C
}
</code></pre>
<p>and you're wondering which is faster?</p>
<p>If not, some pseudocode would be nice, so we could see what you meant. :)
Impossible to say. It could go either way. You're right, fetching data is expensive, but locality is also important. The first version may be better for data locality, but on the other hand, the second has bigger blocks with no branches, allowing more efficient instruction scheduling.</p>
<p>If the extra performance really matters (as Jon Skeet says, it probably doesn't, and you should pick whatever is most readable), you really need to measure both options, to see which is fastest.</p>
<p>My gut feeling says the second, with more work being done between jump instructions, would be more efficient, but it's just a hunch, and it can easily be wrong.</p>
http://stackoverflow.com/questions/335807/back-to-basics-for-loops-arrays-vectors-lists-and-optimization/335900#3359004Answer by Robert Paulson for Back to basics; for-loops, arrays/vectors/lists, and optimizationRobert Paulson2008-12-03T00:23:45Z2008-12-03T00:23:45Z<p>For referemce, </p>
<p>the article is at
<a href="http://duartes.org/gustavo/blog/post/what-your-computer-does-while-you-wait" rel="nofollow">What your computer does while you wait</a> - Gustav Duarte</p>
<p>Also there's a guide to <a href="http://www.nist.gov/dads/HTML/bigOnotation.html" rel="nofollow">big-O notation</a>.</p>
<p><hr /></p>
<p>It's impossible to answer the question without being able to see code/pseudocode. The only reliable answer is "use a profiler". Assuming what your loops are doing is a disservice to you and anyone who reads this question.</p>
http://stackoverflow.com/questions/335807/back-to-basics-for-loops-arrays-vectors-lists-and-optimization/335944#3359441Answer by Ape-inago for Back to basics; for-loops, arrays/vectors/lists, and optimizationApe-inago2008-12-03T00:50:29Z2008-12-03T02:02:25Z<p>... working on one piece of data but with two functions can sometimes make it so that code to act on that data doesn't fit in the processor's low level caches.</p>
<pre><code>for(i=0, i<10, i++ ) {
myObject object = array[i];
myObject.functionreallybig1(); // pushes functionreallybig2 out of cache
myObject.functionreallybig2(); // pushes functionreallybig1 out of cache
}
</code></pre>
<p>vs</p>
<pre><code>for(i=0, i<10, i++ ) {
myObject object = array[i];
myObject.functionreallybig1(); // this stays in the cache next time through loop
}
for(i=0, i<10, i++ ) {
myObject object = array[i];
myObject.functionreallybig2(); // this stays in the cache next time through loop
}
</code></pre>
<p>But it was probably a mistake (usually this type of trick is commented)</p>
<p>When data is cycicly loaded and unloaded like this, it is called cache thrashing, btw.</p>
<p>This is a seperate issue from the data these functions are working on, as typically the processor caches that separately.</p>
http://stackoverflow.com/questions/335807/back-to-basics-for-loops-arrays-vectors-lists-and-optimization/335977#3359771Answer by Tom for Back to basics; for-loops, arrays/vectors/lists, and optimizationTom2008-12-03T01:17:59Z2008-12-03T01:17:59Z<p>Aside from cache thrashing on large functions, there may be benefits on tiny functions as well. This applies on any auto-vectorizing compiler (not sure if Java JIT will do this yet, but you can count on it eventually).</p>
<p>Suppose this is your code:</p>
<pre><code>// if this compiles down to a raw memory copy with a bitmask...
Date morningOf(Date d) { return Date(d.year, d.month, d.day, 0, 0, 0); }
Date timestamps[N];
Date mornings[N];
// ... then this can be parallelized using SSE or other SIMD instructions
for (int i = 0; i != N; ++i)
mornings[i] = morningOf(timestamps[i]);
// ... and this will just run like normal
for (int i = 0; i != N; ++i)
doOtherCrap(mornings[i]);
</code></pre>
<p>For large data sets, splitting the vectorizable code out into a separate loop can be a big win (provided caching doesn't become a problem). If it was all left as a single loop, no vectorization would occur.</p>
<p>This is something that Intel recommends in their C/C++ optimization manual, and it really can make a big difference.</p>
http://stackoverflow.com/questions/335807/back-to-basics-for-loops-arrays-vectors-lists-and-optimization/346937#3469371Answer by Agent Worm for Back to basics; for-loops, arrays/vectors/lists, and optimizationAgent Worm2008-12-06T22:51:16Z2008-12-06T22:51:16Z<p>I apologize for not responding sooner and providing any kind of code. I got sidetracked on my project and had to work on something else.</p>
<p>To answer anyone still monitoring this question;</p>
<p>Yes, like jalf said, the function is something like:</p>
<p><code><pre>
PrepareData(vectorA, VectorB, xArray, yArray):
listA
listB
foreach(value in vectorA)
convert values insert in listA
foreach(value in vectorB)
convert values insert in listB
listC
listD
for(int i = 0; i < listB.count; i++)
listC[i] = listB[i] converted to something
listD[i] = listA[i]
xArray = listC.ToArray()
yArray = listD.ToArray()</p>
<p></pre></code></p>
<p>I changed it to:</p>
<p><code><pre>
PrepareData(vectorA, vectorB, ref xArray, ref yArray):
listA
listB
for(int i = 0; i < vectorA.count && vectorB.count; i++)
convert values insert in listA
convert values insert in listB
listC
listD
for(int i = 0; i < listB.count; i++)
listC[i] = listB[i] converted to something
listD[i] = listA[i]
xArray = listC.ToArray()
yArray = listD.ToArray()
</pre></code> </p>
<p>Keeping in mind that the vectors can potentially have a large number of items. I figured the second one would be better, so that the program wouldnt't have to loop n times 2 or 3 different times. But then I started to wonder about the affects (effects?) of memory fetching, or prefetching, or what have you. </p>
<p>So, I hope this helps to clear up the question, although a good number of you have provided excellent answers.</p>
http://stackoverflow.com/questions/335807/back-to-basics-for-loops-arrays-vectors-lists-and-optimization/346942#3469422Answer by Marc Gravell for Back to basics; for-loops, arrays/vectors/lists, and optimizationMarc Gravell2008-12-06T22:57:37Z2008-12-06T22:57:37Z<p>Well, you've got complications if the two vectors are of different sizes. As has already been pointed out, this doesn't increase the overall complexity of the issue, so I'd stick with the simplest code - which is probably 2 loops, rather than 1 loop with complicated test conditions re the two different lengths.</p>
<p>Actually, these length tests could easily make the two loops <em>quicker</em> than a single loop. You might also get better memory fetch performance with 2 loops - i.e. you are looking at contiguous memory - i.e. A[0],A[1],A[2]... B[0],B[1],B[2]..., rather than A[0],B[0],A[1],B[1],A[2],B[2]...</p>
<p>So in every way, I'd go with 2 separate loops ;-p</p>
http://stackoverflow.com/questions/335807/back-to-basics-for-loops-arrays-vectors-lists-and-optimization/350295#3502950Answer by Agent Worm for Back to basics; for-loops, arrays/vectors/lists, and optimizationAgent Worm2008-12-08T17:50:58Z2008-12-08T17:50:58Z<p>Thank you every one for the information. Thinking in terms of Big-O and how to optimize has never been my strong point. I believe I am going to put the code back to the way it was, I should have trusted the way it was written before instead of jumping on my novice instincts. Also, in the future I will put more reference so everyone can understand what the heck I'm talking about (clarity is also not a strong point of mine :-/).</p>
<p>Thank you again.</p>