C++ Performance – For Loop vs While Loop

c++for-loopperformancewhile-loop

In general (or from your experience), is there difference in performance between for and while loops?

What if they are doubly/triply nested?

Is vectorization (SSE) affected by loop variant in g++ or Intel compilers?

Thank you

Best Answer

Here is a nice paper on the subject.

Related Question