C++ performance tips and rules of thumb anyone? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T07:23:51Zhttp://stackoverflow.com/feeds/question/315378http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone6C++ performance tips and rules of thumb anyone?carleeto2008-11-24T20:37:18Z2009-06-17T07:25:38Z
<p>When coding, what is a good rule of thumb to keep in mind with respect to performance? There are endless ways to optimize for a specific platform and compiler, but I'm looking for answers that apply equally well (or almost) across compilers and platforms.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315390#31539011Answer by JaredPar for C++ performance tips and rules of thumb anyone?JaredPar2008-11-24T20:40:28Z2008-11-24T21:05:36Z<p>The number #1 performance tip is to profile your code early and often. There are a lot of general "don't do this" tips but it's really hard to guarantee this will impact the performance of your application. Why? Every application is different. It's easy to say that passing a vector by value is bad if you have a lot of elements but does your program even use a vector (you probably should but ...)? </p>
<p>Profiling is the only way to understand the performance of your application. I've been in way too many situations where people "optimized" the code but didn't ever profile. The "optimizations" turned out to introduce many bugs and not even be a hot spot in the code path. Waste of everyones time. </p>
<p>EDIT:</p>
<p>A couple of people have commented on the "early" part of my answer. I don't think you should be profiling from day 1. However you should also not be waiting till 1 month from ship either. </p>
<p>I usually first profile once I have a couple of definitive end to end scenarios, or in a larger project, a mostly functional component. I take a day or two (usually working with QA) to get together some large scenarios and throw it at the code. This is a great spot check to find obvious performance problems early. Fixing them at this point is a bit easier. </p>
<p>On a typical project I find that I have code meeting this criterias 30%-40% of the way through the project (100% being in customers hands). I loosely classify this time as early. </p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315397#3153970Answer by kshahar for C++ performance tips and rules of thumb anyone?kshahar2008-11-24T20:42:55Z2008-11-24T20:42:55Z<p>"premature optimization is the root of all evil" (Knuth, Donald)</p>
<p>It really depends on the type of code you write and it's typical usage.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315399#31539914Answer by divideandconquer.se for C++ performance tips and rules of thumb anyone?divideandconquer.se2008-11-24T20:43:37Z2008-11-24T21:56:09Z<p>A famous quote come to mind:</p>
<p>"We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil." (Knuth, Donald. Structured Programming with go to Statements, ACM Journal Computing Surveys, Vol 6, No. 4, Dec. 1974. p.268.)</p>
<p>But maybe you should not pass large data structures by value anyway... :-)</p>
<p>Edit: And maybe also avoid <em>O</em>(N^2) or more complex algorithms...</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315407#3154078Answer by strager for C++ performance tips and rules of thumb anyone?strager2008-11-24T20:45:47Z2008-11-24T21:16:11Z<p>Don't bother optimizing until it's needed. To find out if it's needed, profile. Don't guess; have proof.</p>
<p>Also, algorithmic optimizations usually have a greater impact than micro ones. Using A-star instead of brute force pathfinding will be faster, just like how Bresenham circles are better than using sin/cos. There are exceptions to these of course but they are very (very) rare (<0.1%). If you have a good design, changing the algorithm changes only one module in your code. Easy.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315408#3154081Answer by Ray Tayek for C++ performance tips and rules of thumb anyone?Ray Tayek2008-11-24T20:45:48Z2008-11-24T20:45:48Z<p>one simple sugestion is to get into the habit of doing ++i, rather than i++. i++ makes a copy and this can be expensive.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315409#3154092Answer by Gilles for C++ performance tips and rules of thumb anyone?Gilles2008-11-24T20:45:56Z2008-11-24T20:45:56Z<p>Keep your code as clean as possible. Compilers are MARVELOUS nowadays. Then, if you do have a perf problem, profile.</p>
<p>All of this is after having chosen the best algorithms available for your problem.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315413#3154134Answer by Marcin for C++ performance tips and rules of thumb anyone?Marcin2008-11-24T20:47:13Z2008-11-24T20:47:13Z<p>The best thing you can do as far as performance goes is to start with a solid architecture and threading model. Everything else will be built on this, so if your foundation is crummy, your finished product will only be as good as that. Profiling comes a little later, and even later than that come micro-optimizations (in general, these are insignificant, and complicate code more than anything.)</p>
<p>Moral of the story is: Start with an efficient base, build on top of that cognizant of not doing something downright silly and slow, and you should be alright.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315414#3154142Answer by Mat Nadrofsky for C++ performance tips and rules of thumb anyone?Mat Nadrofsky2008-11-24T20:47:21Z2008-11-24T20:53:16Z<p>Here are a few:</p>
<ul>
<li><p>Effectively leverage <a href="http://www.arm.com/support/faqdev/1220.html" rel="nofollow">Inlining</a> (depending on your platform).</p></li>
<li><p>Avoid using <a href="http://www.informit.com/guides/content.aspx?g=cplusplus&seqNum=198" rel="nofollow">temporaries</a> as much as possible (and know what they are)</p>
<p>x = y + z;</p>
<p>Would be better optimized if written as:</p>
<p>x=y;</p>
<p>x+=z;</p></li>
</ul>
<p>Also, avoid <a href="http://www.codersource.net/published/view/325/virtual_functions_in.aspx" rel="nofollow">virtual functions</a> and only create objects when you need to use them.</p>
<p>If you're in the mood, check out <a href="http://rads.stackoverflow.com/amzn/click/0201379503" rel="nofollow">Efficient C++</a>. I've got a copy at home from back when I was in school.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315415#3154158Answer by Johannes Schaub - litb for C++ performance tips and rules of thumb anyone?Johannes Schaub - litb2008-11-24T20:47:29Z2008-11-24T22:21:36Z<ul>
<li>When possible use <code>if</code> or <code>switch</code> instead of calls through function pointers. Clarification: <code>void doit(int m) { switch(m) { case 1: f1(); break; case 2: f2(); break; } }</code> instead of <code>void doit(void(*m)()) { m(); }</code> can inline the calls.</li>
<li>When possible and not harm causing, prefer CRTP to virtual functions</li>
<li>When possible, avoid C Strings and use a String class. It will be faster most often. (constant time length "measure", appending amortized constant time, ...)</li>
<li><em>Always</em> pass user defined typed values (apart from where it doesn't make sense. e.g iterators) by reference to const (T const&) instead of copying value.</li>
<li>For user defined types, always prefer <code>++t</code> instead of <code>t++</code></li>
<li>Use <code>const</code> early, often. Most important to improve readability.</li>
<li>Try keeping <code>new</code> to a minimum. Always prefer automatic variables (on the stack) if possible</li>
<li>Instead of filling arrays yourself, prefer initialization with an empty initializer list like <code>T t[N] = { };</code> if you want zeros.</li>
<li>Use the constructor initializer list as often as possible, especially when initializing user defined typed members.</li>
<li>Make use of functors (types with <code>operator()</code> overloaded). They inline better than calls through function pointers.</li>
<li>Don't use classes like <code>std::vector</code> or <code>std::string</code> if you have a fixed sized quantity not growing. Use <code>boost::array<T, Size></code> or a naked array and use it properly.</li>
</ul>
<p>And indeed, i almost forgot it:</p>
<p><strong>Premature optimization is the root of all evil</strong></p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315429#3154297Answer by Marcin for C++ performance tips and rules of thumb anyone?Marcin2008-11-24T20:50:03Z2008-11-24T21:17:54Z<p>Use existing, reviewed code that's been used and re-used. (Example: STL, boost vs rolling your own containers and algos)</p>
<p>Updating due to comments:
CORRECTLY use existing, reviewed code that's been used and re-used.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315439#3154392Answer by Demur Rumed for C++ performance tips and rules of thumb anyone?Demur Rumed2008-11-24T20:55:45Z2008-11-24T20:55:45Z<p><a href="http://en.wikibooks.org/wiki/Optimizing_C%2B%2B/Writing_efficient_code" rel="nofollow">Wikibooks has some things.</a></p>
<p>A good thing to do is know the efficiency of what you're using. How fast addition is to multiplication, how fast a vector is compared to a normal array or to the higher scales how certain algorithms compare. This allows you to choose the most efficient tool for a task</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315444#3154442Answer by coppro for C++ performance tips and rules of thumb anyone?coppro2008-11-24T20:58:46Z2008-11-24T20:58:46Z<p>Using generic algorithms is a great optimization tip - not in terms of runtime but of coding time. Knowing that you can sort(start, end) and expect the range - be it two pointers or iterators to a database - will be sorted (and what's more, the algorithm used will be runtime efficient too). Generic programming is what makes C++ unique and powerful, and you should always keep it in mind. You shouldn't have to write many algorithms because versions already exist (and are likely as fast or faster than anything you would write). If you have other considerations, then you can specialize algos.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315451#31545110Answer by Konrad Rudolph for C++ performance tips and rules of thumb anyone?Konrad Rudolph2008-11-24T21:01:18Z2008-11-24T22:06:58Z<p>Someone mentioned function pointers (and why you should rather use <code>if</code>). Well, even better: use functors instead, they get inlined and usually have <em>zero overhead</em>. A functor is a structure (or class, but usually the former) that overloads operator <code>()</code> and instances of which can be used just like an ordinary function:</p>
<pre><code>template <typename T>
struct add {
operator T ()(T const& a, T const& b) const { return a + b; }
};
int result = add<int>()(1, 2);
</code></pre>
<p>These can be used almost in every context where an ordinary function or function pointer could be used. They usually derive from either <code>std::unary_function</code> or <code>std::binary_function</code> but that's often not necessary (and actually only done to inherit some useful <code>typedef</code>s).</p>
<p><strong>EDIT</strong> The explicit <code><int></code> type qualification is necessary in the above code. Type inference only works for function calls, not for instance creation. However, it can often be omitted by employing a <code>make</code> helper function. This is done in the STL for <code>pair</code>s:</p>
<pre><code>template <typename T1, typename T2>
pair<T1, T2> make_pair(T1 const& first, T2 const& second) {
return pair<T1, T2>(first, second);
}
// Implied types:
pair<int, float> pif = make_pair(1, 1.0f);
</code></pre>
<p>Someone mentioned in the comments that functors are sometimes called “functionoids”. Yes<em>ish</em> – but not quite. In fact, “functor” is a (somewhat weird) abbreviation for “function object”. A functionoid is conceptually similar but realized by employing virtual functions (although they are sometimes used synonymously). For example, a functionoid could look like this (along with its necessary interface definition):</p>
<pre><code>template <typename T, typename R>
struct UnaryFunctionoid {
virtual R invoke(T const& value) const = 0;
};
struct IsEvenFunction : UnaryFunctionoid<int, bool> {
bool invoke(int const& value) const { return value % 2 == 0; }
};
// call it, somewhat clumsily:
UnaryFunctionoid const& f = IsEvenFunction();
f.invoke(4); // true
</code></pre>
<p>Of course, this loses any performance advantage that a functor has because of its virtual function call. It is therefore used in a different context that actually requires a polymorphic (stateful) runtime function.</p>
<p>The C++ FAQ has <a href="http://www.parashift.com/c++-faq-lite/pointers-to-members.html#faq-33.10" rel="nofollow">more to say</a> on this subject.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315461#3154611Answer by Martin Cote for C++ performance tips and rules of thumb anyone?Martin Cote2008-11-24T21:03:33Z2008-11-24T21:03:33Z<p>Consider using a <a href="http://www.boost.org/doc/libs/1_37_0/libs/pool/doc/index.html" rel="nofollow">memory pool</a>.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315492#3154922Answer by Alan for C++ performance tips and rules of thumb anyone?Alan2008-11-24T21:14:21Z2008-11-24T21:14:21Z<p>Two of the best tips for C++:</p>
<p>Purchase Effective C++, by Scott Meyers.</p>
<p>Then purchase More Effective C++, by Scott Meyers.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315526#3155264Answer by Marcin for C++ performance tips and rules of thumb anyone?Marcin2008-11-24T21:24:07Z2008-11-24T21:24:07Z<p>Another point: <strong>The fastest code is code that doesn't exist.</strong> Which means the more robust and feature-full your project needs to be, the slower it will be. Bottom line: Skip the fluff whenever possible, while making sure you still meet the requirements.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315647#3156471Answer by Dror Helper for C++ performance tips and rules of thumb anyone?Dror Helper2008-11-24T21:56:00Z2008-11-24T22:09:41Z<ol>
<li><p>Always try to think on how your memory looks - for example an array is a consecutive line of memory of the size numOfObjects X <code>sizeof(object)</code>. a two dimensional array is n X m X <code>sizeof(object)</code> and each object is in the index of n + m X n and so</p>
<pre><code>for(int i = 0 ; i < n ; i++){
for(int j = 0 ; j < m ; j++){
arr[i,j] = f();
</code></pre>
<p>is much better then (on single process): </p>
<pre><code>for(int i = 0 ; i < n ; i++){
for(int j = 0 ; j < m ; j++){
arr[j,i] = f();
</code></pre>
<p>Because the array is brought into the cache in consecutive chunks the 1st snippet runs on all the cells that are in the cache before fetching the rest while the 2nd snippet would need to fetch new array cells into the cells over and over again</p></li>
<li><p>When your application starts to slow use performance benchmark to find the exact bottleneck
even a simple <code>GetTickCount</code> calls can be used to determine the time it takes your components to run.
On bigger projects use a proper profiler before you start to optimize so you will spend the most optimization effort where it matters.</p></li>
</ol>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/315776#3157761Answer by David Thornley for C++ performance tips and rules of thumb anyone?David Thornley2008-11-24T22:50:21Z2008-11-24T22:50:21Z<p>Don't use grossly inefficient algorithms, turn on the optimization in your compiler, don't optimize anything unless a profiler shows it to be a bottleneck, and when you try to improve things test to see if you've done good or bad. Remember also that library functions have usually been optimized by people better at it than you are.</p>
<p>Pretty much everything else is minor, compared to these.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/316117#3161171Answer by Steve Jessop for C++ performance tips and rules of thumb anyone?Steve Jessop2008-11-25T01:42:33Z2008-11-25T03:00:49Z<p>Make sure the first version of your code is the simplest thing that works.</p>
<p>This will give you maximum possible time under your deadline to optimize properly, by measuring for bottlenecks and low-hanging fruit. By optimizing too soon, you not only complicate your code, you spend half a day agonizing over whether you can reduce 12 memory accesses to 8 in a bit of code called one per graphics cycle, which you could have spend with the profiler identifying and doubling the speed of your app's most common operation. Or even down the pub, because the app was fast enough first time and shipped half a day early.</p>
<p>Exceptions include:</p>
<ul>
<li><p>When the obvious algorithm is obviously awful. Note that a linear search isn't necessarily in this category just because O(log n) searches exist for some data structures. A linear search of a billion items is in this category, as is a linear search of 1000 items performed more than, say, 10 000 times per second. As is anything with exponential complexity that will ever need to scale significantly.</p></li>
<li><p>When the obvious algorithm performs an operation which is obviously too slow for the circumstances (e.g. connecting to a server out on the internet somewhere in a redraw function).</p></li>
<li><p>When you've seen this before, and you know what happens and what the better alternative is. e.g. making copies of large objects like collections instead of passing by pointer or reference.</p></li>
</ul>
<p>The following are not exceptions in the first cut of your code, although they might (might) become candidates later:</p>
<ul>
<li><p>There's a bit-twiddling operation that's two instructions fewer on x86 than the obvious arithmetic. (yippee! A billion more optimizations like that, and we've gained a second! Except that we're looking at op count instead of cycle count, and the two are nigh-on unrelated on modern x86 processors. And the code is now unreadable.)</p></li>
<li><p>Fewer, longer, functions result in less call overhead. (and more programmer overhead).</p></li>
<li><p>32bit arithmetic is faster than 64bit (if all your app does is crunch numbers, then this could become your bottleneck, in which case you'll catch it later. Graphics optimization folks may count this as "seen before, know what happens", but relatively few apps are CPU bound, let alone bound by integer arithmetic. And as computers get bigger and faster, all your arithmetic will speed up, whereas that 2Gig limit on whatever you're counting might start to look cramped).</p></li>
</ul>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/316305#3163051Answer by Alastair for C++ performance tips and rules of thumb anyone?Alastair2008-11-25T03:39:02Z2008-11-25T03:39:02Z<p>Basically your biggest performance gains are to be had by algorithmic improvements. This means using the most efficient algorithms and, in turn, the most efficient containers for data items.</p>
<p>Sometimes it is hard to know what the best trade-offs are, but fortunately the designers of the STL had exactly this use case in mind and hence the STL containers are generally flexible enough to allow containers to be mixed and matched in accordance with the demands of the application.</p>
<p>To fully realise the benefit however you need to ensure that you don't expose an internal design choice as part of the interface of your class/module/whatever. None of your clients should <em>depend</em> on your use of a <code>std::vector</code>. At the very least provide a typedef that they (and you) can use, which should allow the vector to be changed to a list (or whatever) depending on your needs.</p>
<p>Similarly make sure that you've got the widest possible choice of debugged algorithms and containers at your disposal. Boost and/or TR1 are prettymuch necessities these days.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/316562#3165620Answer by Johann Gerell for C++ performance tips and rules of thumb anyone?Johann Gerell2008-11-25T07:12:23Z2008-11-25T07:12:23Z<p>Whatever action you take to save a few cycles, remember this: Don't try to be smarter than the compiler - measure to verify the gain.</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/316677#3166770Answer by FL4SOF for C++ performance tips and rules of thumb anyone?FL4SOF2008-11-25T08:19:48Z2008-11-25T08:19:48Z<p>though not addressing the exact issue, some advice is :</p>
<p>always code for interfaces ( when it comes to algorithms ) so that u can smoothly replace them by efficient one (by any req means ).</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/378569#3785690Answer by Mark Beckwith for C++ performance tips and rules of thumb anyone?Mark Beckwith2008-12-18T17:28:54Z2008-12-18T17:35:32Z<p>I agree with the advice on premature optimization. However, there are a few guidelines I like to follow during design because they may be difficult to optimize later:</p>
<ul>
<li>Try to allocate all your objects on start up, minimize the use of <code>new</code> during run time.</li>
<li>Design your data structures so that your algorithms have a good shot at being O(1).</li>
<li>And as usual, modularize so that you can rip out and replace later. This implies you have a comprehensive suite of unit tests that give you the confidence your new solution is correct.</li>
<li>Add performance tests to your unit test suite to make sure you don't inadvertently end up with some O(n*n) code :-)</li>
</ul>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/378591#3785910Answer by Roger Lipscombe for C++ performance tips and rules of thumb anyone?Roger Lipscombe2008-12-18T17:34:33Z2008-12-18T17:34:33Z<ul>
<li>Rule 1: Don't</li>
<li>Rule 2: Measure</li>
</ul>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/388593#3885931Answer by harishvk27 for C++ performance tips and rules of thumb anyone?harishvk272008-12-23T10:38:50Z2008-12-23T10:38:50Z<p>Hi!,</p>
<p>From one of the C++ books i referred (Efficient C++ performance Techniques by Bulka and Mayhew), which explicitly talked about C++ performance aspects. One of them was;</p>
<p>while defining constructors..initialize the other constructors also; some thing like;</p>
<p>class x {</p>
<p>x::x(char *str):m_x(str) {} // and not as x::x(char *str) { m_str(str); }</p>
<p>private:
std::string m_x;</p>
<p>};</p>
<p>The above is some thing which caught my attention and helped me to improve my coding style... this book has more to share on this interesting topic of performance.</p>
<p>-thanks
Harish</p>
http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone/1005583#10055830Answer by Vova for C++ performance tips and rules of thumb anyone?Vova2009-06-17T07:25:38Z2009-06-17T07:25:38Z<p>Select best performing algorithms, use less memory, use less branching, use fast operations, use small number of iterations.</p>