What are the most highly regarded books on optimization / performance tuning of C/C++ code?
feedback
|
|
They are usually titled 'Algorithms', 'Data Structures' etc. Misleading, indeed ;-) | |||
|
feedback
|
|
Agner Fog has some PDFs on optimization you can download for free. | |||||
feedback
|
|
One of the books you should check out is is Hacker's Delight by Henry S. Warren | |||||
feedback
|
|
It wouldn't do any harm to read Ulrich Drepper's 114-page article "What Every Programmer Should Know About Memory". | |||
|
feedback
|
|
I'd recommend "Effective C++: 55 Specific Ways to Improve Your Programs and Designs" by Scott Meyers. It's not solely about "optimization" (whatever that is), but it's about writing code well. In general, writing code well tends to lead to better-performing code. | |||
|
feedback
|
|
One of the best books from "back in the day" was Zen of Code Optimization by Michael Abrash. I see used copies of it still available from Amazaon and other sellers. While it's a bit dated in terms of CPU (386, 486, Pentiums) and compilers, it's so well written and informative that you can probably still learn a lot. | ||||
|
feedback
|
|
A classic book on the subject is Jon Bentley's Writing Efficient Code, which seems to be out of print. His 'Programming Pearls' and 'More Programming Pearls' also cover efficiency to some extent, though their scope is far wider than just efficiency. Understanding and using the correct algorithms is another key factor in program efficiency. | |||
|
feedback
|
|
Well, It's not seemly to toot my own horn, but I tried to put a lot of that stuff in my book, which is now out of print. I've tried to say a lot of that stuff in my SO postings. The main points in a nutshell, which I know are useless without practice, are
Hope that helps, Neil. | ||||
|
feedback
|
|
This is a category where old books should be approached with healthy skepticism. Compiler and chip technology both have come a long way in the last 10-15 years; you don't want to spend your time worrying about details that modern compilers will take care of, or worrying about numbers of processor instructions when it's I/O that matters now. | |||
feedback
|
|
The following are the only things you need to do to get high performance out of computers:
If you're absolutely determined to do super-micro-optimised C/C++, then you should probably start by learning assembly language. | |||
|
feedback
|
| ||||
|
feedback
|
|
The Software Optimization Cookbook. High-Performance Recipes for IA-32 Platforms. Second Edition, by Richard Gerber, Aart J.C. Bik, Kevin B. Smith, Xinmin Tian. Intel Press, 2006. P. 404. http://www.intel.com/intelpress/sum_swcb2.htm
Lots of examples. Lots of explanations on every microarchitecture's features. There are two chapters and contents are free to download. | ||||
|
feedback
|
|
You may want to check out Efficient C++: Performance Programming Techniques | |||
|
feedback
|
|
First, you need to have knowledge on how the language features are implemented on a common machine. Second, you need to study about OS and architecture specific optimization. It's impossible to make some code max optimized if you don't take account a specific compiler and machine. | |||
|
feedback
|
|
Code Complete This isn't exactly a book on optimization; however, it contains many good general coding guidelines which could potentially lead to performance gains. | |||
|
feedback
|
|
Here is a great blog of several microoptimizations especially when writing codecs or similar. But beware! Most tricks can make your code almost unreadable (are you ready for IOCCC!), some optimisations may be known by the compiler itself so you do not have to do it manually. As usual, use a profiler to find out hot spots and only try to optimize them (and only them). | |||
|
feedback
|
|
There is also this book: The Art of Computer Systems Performance Analysis | |||
|
feedback
|
|
The correct answer for "optimization", of course, is to design the program to have the needed performance properties: this will involve the general software architecture as well as choosing the right algorithms. However, if you need micro-optimization to squeeze out the last few cycles of performance, Hacker's Delight, published by Addison-Wesley in 2003, is an excellent book. | |||
feedback
|

