vote up 17 vote down star
21

What are the best books on how to optimize C++ code?

flag

7  
Good question and good answers as well. It's a pity, that the most popular optimization answer on SO is "don't do it, its premature!" =) – SadSido Oct 22 at 6:50
5  
This is just semi-useless pedantry, but... C++ books cannot, in and of themselves, optimize C++ code. I think the language you're looking for is "What are the best books on how to optimize C++ code?". – Omnifarious Oct 22 at 6:56
3  
@SadSido: That's not a pity, that's just good advice... – Jesper Oct 22 at 7:44
3  
@SadSido If you don't want to be suspected of premature optimization it would help to state a valid reason to optimize and not pose questions like this one, which doesn't even say what to optimize for (for speed I suppose). – starblue Oct 22 at 8:21
4  
@Jesper, starblue and jalf: Most applications would benefit from optimization. Name one that wouldn't! Premature optimization is when you decide to optimize an unimportant bit first. Nobody is suggesting that. – Andrew Bainbridge Oct 26 at 14:36
show 11 more comments

18 Answers

vote up 19 vote down check

Optimizing software in C++: An optimization guide for Windows, Linux and Mac platforms

Optimizing C++ - the WWW version

link|flag
3  
+1: Agner Fog's work is amazing. – RaphaelSP Oct 23 at 17:35
1  
@RaphaelSP: Yes, assuming you want maximum performance, potentially at the cost of other things. Good stuff, but don't apply it blindly. – David Thornley Oct 30 at 15:56
vote up 11 vote down

Depends on the scale/granularity you have in mind -- for large scale, where it matters most, my favorite is still Lakos' grand old book, dated tho it may be I don't think it's been surpassed.

link|flag
Yes, too bad there isn't anything new to replace it. – sbi Oct 22 at 7:34
Lakos was supposed to be writing a new version of it but the 2007 deadline has long passed - looks like it is now 2011: amazon.co.uk/Large-Scale-C-Software-Development-C… – graham.reeds Oct 22 at 13:17
graham - doesn't seem fair that you guys in the UK have to wait 2 years longer than the folks in the US - amazon.com/gp/product/0201717069 (Dec. 2009) Of course, all these dates are ephemeral anyway.... – Dan Oct 22 at 13:29
That's a great book... but I don't remember anything about optimization. I suppose you can consider it to be optimizing the maintenance complexity, but Lako's book is more about sanity in a large project, not efficiency. – Tom Oct 25 at 15:57
vote up 7 vote down

Depending on what you're trying to optimise, an algorithms book may be a good investment. Plenty of them around (search for algorithms on Amazon), but Sedgewick is a classic.

link|flag
vote up 5 vote down

Michael Abrash's Graphics Programming black book can be downloaded, legitimately, from here ... for free!. A brilliant in depth description of assembler optimisation even if it is pretty graphics-centric

link|flag
Thank you! Brings back fond memories! – hapalibashi Oct 29 at 18:39
vote up 4 vote down

My favorite low-level source is actually a website: http://www.agner.org/optimize/

link|flag
vote up 4 vote down

I'm going to give you a generalized answer:

  • Make sure the program is working correctly.
  • Consider changing your algorithms with faster ones.
  • Consider the impact of your data structures. Memory locality, CPU cache hits and the like will give you performance gains.
  • If you can't find candidates for the two above, can you change the original problem? E.g., instead of solving something with an exact solution, is an approximation good enough?
  • Improve your code; make it clearer, remove redundant stuff.
  • Perform micro-optimizations

And remember to always time and profile your code.

Some very good books for improving your code are the Effective C++ series by Scott Meyers. Couple those with the ones other people are suggesting, and you should be well on your way.

As for micro-optimizations, some common techniques are increasing CPU cache hits, improving branch prediction, unrolling loops, consider CPU vector operations and so on.

These are general techniques, but to get the last drop of performance you will have to tie everything closely to the CPU architecture you're working on.

link|flag
1  
+1 for Effective C++ – hapalibashi Oct 29 at 18:38
3  
+1 for "Make sure the program is working correctly" - the most important optimization. Incorrect code is as unoptimized as you can get. – Michael Burr Oct 30 at 8:54
1  
@Michael Burr: Excellent point. For any given problem, I can give you an incorrect solution in approximately zero time, so any program that runs for a noticeable amount of time to get the wrong answer cannot be said to be optimized. – David Thornley Oct 30 at 15:57
vote up 3 vote down

Pick up some readings on Compilers. It will help.

link|flag
vote up 3 vote down

Optimizing software in C++ (PDF)

link|flag
vote up 3 vote down

This isn't exactly specific to C++ but personally I think the best optimizations are done on an algorithm/data structure level and thus I'd strongly recommend Programming Pearls: http://www.cs.bell-labs.com/cm/cs/pearls/

link|flag
1  
+1 for preferring improving algorithms over obscure teaks and tricks – sbi Oct 22 at 7:35
4  
@sbi - you are creating a false dichotomy between algorithmic improvements and everything else. Don't forget that algorithmic performance is typically measured in O(f(n)), ignoring constant factors. Paying attention to those constant factors is not "obscure t[weaks and tricks", it's proper engineering. – Tom Oct 25 at 15:51
vote up 2 vote down

I really liked Bulka & Mayhew's "Efficient C++: Performance Programming Techniques".

link|flag
vote up 2 vote down

Michael Abrash has written some books on optimization. His focus will be on using x86 assembly code, but the underlying concepts/reasons/techniques for optimization will apply to many programming languages, especially C++. And when not using assembly code, he will use C or C++ so it might be relevent.

For anyone trying to optimize their code, his books will be more of an inspiration than actual reference.

Graphics Programming Black Book

Zen of Assembly Language

link|flag
vote up 2 vote down

You can find books on algorithms and compiler (low-level) optimization. Those are fine, as far as they go, but large real software has a completely different problem.

Large real software is dominated, in my experience, by slowness due to "galloping generality", and it requires a different approach to optimization, as in this example. I have yet to see a book about this.*

*Except for my own (modest cough), which is long out of print.

link|flag
vote up 1 vote down

Probably starting using an profiler to point you to the location that really needs speedup. I think a lot of people spend a lot of time in optimizing their code by guessing what eats up the time while normally the C++ optimizer of the compiler does a quiet well job.

So first identitify the bottleneck by use of a profiler. Then think about speeding up your code.

link|flag
Not helpful, does not answer the question. – Justicle Oct 22 at 7:48
If you think so. I already spend some time with code that was "optimized" because of no need. Make the design and if its really a bottleneck think about code optimization. I do not think that the one who asked wanted to write an C++ optimizer. – Totonga Oct 22 at 8:51
@Totonga, Justicle may be a bit terse (and comes off as rude), but he's correct. Your advice is good advice, but still it is very basic when it comes to optimization techniques. The profiler will help identify the low hanging fruit. – Scottie T Oct 23 at 17:28
I completely agree that the profiler will somehow identify the low hanging fruits. So if your design and your complete setup is really bad fro performance the profiler will not help. But men, I am not sure if I could coun't the hours discussing on why this code is slow and when we did a little profiling, we determined that the time was eaten by something else. I still stay with my thoughts. Try to write good code and focus on a good design that is maintainable. If there is really a bottleneck. Go for it. – Totonga Oct 24 at 17:57
1  
This answer is basic, in the sense that pretty much everything else depends on it. If you aren't using a profiler, you aren't optimizing effectively. The "low hanging fruits" are the only ones worth bothering with. After all, if you spend 20% of the time in one routine, doubling its speed will reduce runtime by about 10%. If you spend 2% in another, making it instantaneous will reduce runtime by 2%. – David Thornley Oct 30 at 15:38
show 2 more comments
vote up 1 vote down

Code Optimization: Effective Memory Usage, Kris Kaspersky

Write Great Code Vol. I/II, Randall Hyde

link|flag
vote up 1 vote down

Some books that I've found very useful, and although they are not specific to the issues of optimization, they do touch on a lot of the issues, are Scott Meyers books: Effective C++, More Effective C++ and Effective STL.

link|flag
vote up 1 vote down

Ulrich Drepper's 114-page article "What Every Programmer Should Know About Memory" is essential reading, I think. It won't tell you much about how to speed up code using algorithmic optimizations or concurrency, but it will definitely help you get the most out of the memory and cache systems your code is running on.

link|flag
vote up 1 vote down

Really knowing your algorithms is a good way to optimize you code. Two kinds of book help me do this. Algorithmic books like

Donald E. Knuth, The Art of Computer Programming

and then the puzzle books like

Jon Bentley, Programming Pearls

I know that they aren't specific for C++ but a lot of optimizations can probably be applied independently of language.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.