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.
|
12
|
|
|
|
|
|
A famous quote come to mind: "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.) But maybe you should not pass large data structures by value anyway... :-) Edit: And maybe also avoid O(N^2) or more complex algorithms... |
||||||||||
|
|
|
Select best performing algorithms, use less memory, use less branching, use fast operations, use small number of iterations. |
||
|
|
|
|
Hi!, 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; while defining constructors..initialize the other constructors also; some thing like; class x { x::x(char *str):m_x(str) {} // and not as x::x(char *str) { m_str(str); } private: std::string m_x; }; 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. -thanks Harish |
||
|
|
|
|
||
|
|
|
|
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:
|
|||
|
|
|
though not addressing the exact issue, some advice is : always code for interfaces ( when it comes to algorithms ) so that u can smoothly replace them by efficient one (by any req means ). |
||
|
|
|
|
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. |
||
|
|
|
|
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. 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. 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 depend on your use of a 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. |
||
|
|
|
|
Make sure the first version of your code is the simplest thing that works. 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. Exceptions include:
The following are not exceptions in the first cut of your code, although they might (might) become candidates later:
|
|||
|
|
|
|
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. Pretty much everything else is minor, compared to these. |
||
|
|
|
|
|
|||
|
|
|
|
Another point: The fastest code is code that doesn't exist. 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. |
||
|
|
|
|
Two of the best tips for C++: Purchase Effective C++, by Scott Meyers. Then purchase More Effective C++, by Scott Meyers. |
||
|
|
|
|
Consider using a memory pool. |
||
|
|
|
|
Someone mentioned function pointers (and why you should rather use
These can be used almost in every context where an ordinary function or function pointer could be used. They usually derive from either EDIT The explicit
Someone mentioned in the comments that functors are sometimes called “functionoids”. Yesish – 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):
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. The C++ FAQ has more to say on this subject. |
||||||||||
|
|
|
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. |
||
|
|
|
|
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 |
||
|
|
|
|
Use existing, reviewed code that's been used and re-used. (Example: STL, boost vs rolling your own containers and algos) Updating due to comments: CORRECTLY use existing, reviewed code that's been used and re-used. |
||||
|
|
|
And indeed, i almost forgot it: Premature optimization is the root of all evil |
||||||||||||
|
|
|
Here are a few:
Also, avoid virtual functions and only create objects when you need to use them. If you're in the mood, check out Efficient C++. I've got a copy at home from back when I was in school. |
||||||||||
|
|
|
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.) 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. |
||||
|
|
|
Keep your code as clean as possible. Compilers are MARVELOUS nowadays. Then, if you do have a perf problem, profile. All of this is after having chosen the best algorithms available for your problem. |
||
|
|
|
|
one simple sugestion is to get into the habit of doing ++i, rather than i++. i++ makes a copy and this can be expensive. |
||||
|
|
|
Don't bother optimizing until it's needed. To find out if it's needed, profile. Don't guess; have proof. 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. |
|||
|
|
|
|
"premature optimization is the root of all evil" (Knuth, Donald) It really depends on the type of code you write and it's typical usage. |
||
|
|
|
|
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 ...)? 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. EDIT: 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. 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. 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. |
||||||||||
|
