I learned recently that the following code:

int a[N][N];
for(i = 0; i < N; i++)
   for(j = 0; j < N; j++)
       a[i][j] = 0;

Was actually faster than the same piece of code where i and j are reversed :

int a[N][N];
for(i = 0; i < N; i++)
   for(j = 0; j < N; j++)
       a[j][i] = 0;

It has been explained to me by the number of data retrieval from RAM to L2 cache. I found the explanation convincing, and tried the code myself later on to check the difference.

Now, I have some amount of already written C code behind me, and I want to take a second look at it, in order to check whether I could gain some running time by ensuring the data I access is contiguous in the memory.

This being said, all I know about such low-level optimization isn't much, and I would like to learn much more about it. Would you happen to know of any book that would mention low-level optimization issues in C, something containing techniques and/or examples? I am actually interested by anything which could help me make my code faster :-)

link|improve this question
2  
See cachegrind, part of Valgrind. – pmg Mar 1 '11 at 14:44
2  
BTW... memset(a, 0, sizeof(a)); might very well be faster. – kotlinski Mar 1 '11 at 14:55
feedback

10 Answers

Sounds like you might be interested in Hacker's Delight. It goes over some interesting programming tricks to do things more efficiently.

link|improve this answer
feedback

Well. Optimizations like these are often platform specific. But Programming Pearls is a classic that stands the test of time. Also I like another book by Jon Bentley: Writing Efficient Programs

link|improve this answer
feedback

If you're interested in writing really fast software, you definitely need to learn to use a profiler. The first step in improving the performance of your code is always finding the most important sections. Well, either that or buying better hardware.

link|improve this answer
1  
That is only true if you're assuming that the better algorithms and data structures for the specific scenario are being used, and from what I've seen that's very rarely the case :( – emaster70 Mar 1 '11 at 16:06
@emaster: Profiling will sometimes lead you to the conclusion that you need a better algorithm. – nmichaels Mar 1 '11 at 16:10
Just a note: In the case of improving cache efficiency by employing data-oriented programming, it may be that reorganizing data does not help with a particular hot-spot in the profiler. Instead it is possible that it makes a large area of code run 10-20% faster. – kotlinski Mar 6 '11 at 13:07
feedback

Agner Fog has a lot of stuff on optimization, particularly good are his C++, and most of all, his assembly manual: lots of info there, if not for the faint of heart. Hope you find these interesting.

link|improve this answer
feedback

One of the best resource for low level optimizations: http://www.agner.org/optimize/

link|improve this answer
feedback

Before optimizing in C you need to understand what lies beneath. The specific instruction set and in this case how the memory works, caches, etc. What you likely found in this particular case might not have been the cache necessarily (as you are doing writes) but the way the memory works or ECC or a combination. The last item in an array, the i in this case, [j][i], is often contiguous memory, [j][0] is next to [j][1], etc. But [0][i] is n times the size of int away from [1][i], and if N is such that you hit some boundary like a cache line or the width of the memories, you can create performance issues. If you were doing lots of reads it could be that you keep reading one item in the cache line then evicting it to read another cache line, causing most of the memory reads to be discarded. With the faster, adjacent reads then none of the memory reads are discarded. In the case of say DRAM (DDR, etc) it could be the case that to do a single int write you may have to read say 72 bits, modify 32 then write 72 back, or even without ecc that may be how the memory works. Some smart hardware along the way may realize the faster method where adjacent writes happen can wait for all the bits to be ready for the dram and do the write without a read, doubling performance.

So where do you learn all of this. Study the instruction set documentation for the processors you are using (if x86 I would study some other platform like ARM then apply what you learned backwards to other platforms, x86 is a mess too much history, too many different solutions for performance, too much to absorb in one shot). Read up on caches in general, what a cache line is what it takes to hit or miss, what a write buffer is etc. For a cache to help your performance you want to read items from memory sequentially (like for example when you execute a program) and minimize repetative accesses with matching upper address bits. As each cache is different (from platform to platform) in what address boundaries it uses to keep track of blocks of data, and what rules it uses to evict data (random, round robin, least used, etc). I have seen 10-20% performance differences with the same C code by simply adjusting where in memory the program lies (normally I add or remove nops in the startup code). Say for example a function uses 8 words and the cache is 4 words ideally you want that function aligned on two cache lines, but if it spills over to a third you will be in the situation where if you miss you have to read three cache lines instead of two and may end up throwing out the extra 4 words, 33% of that read is lost unless you can recover it elsewhere. Take that idea across the whole program and by adjusting the whole program you change the efficiencies of every code segment some get better some get worse.

Also go study the datasheets for the varies memory technologies, what you are interested in is how wide as in number of data bits, is the memory. Must you write in that width all the time or is there a mask or lane enable mechanism to write smaller portions (write only one byte on a 32 bit bus for example) and what is the timing difference between a whole width write vs a partial write.

You also need to study what the various compilers and compile options to to your C code when it turns it into instructions for your target system. Huge performance differences come from the same code, same compiler, different compile options. what happens if you write functions with lots of code, vs functions with only a little code. what happens when you use lots of passed in function arguments vs only a few. What happens when your functions call a lot of functions vs inlining or just having the code there without making it a separate function. How to local variables help and hurt and globals, etc. What may look like one innocent line of code change may turn in to a 10 fold loss in performance for that function with twice as many registers required lots of new stack activity, etc.

yes it is difficult of not impossible to try to optimize all of the possible topics in one program. No matter how good you get, you should still time your code (profile, etc, whatever your method of choice is). Understand though that particularly in the case of your examples you could very easily get false results by timing/profiling simply do to for example cache alignment or debug options when compiling, etc. Adding a perform the code a million times loop around the code can invalidate the results. In the case of an x86 platform the user has so many options in the BIOS setting, the operating system is a huge unknown, you may have background tasks, etc such that your timing tests on this computer today may say one thing but if you were to run it on 100 different makes and models of computers you may find that an alternate solution is better on average. This is why I say that x86 is the worst platform to learn this stuff on. Ideally you want to learn some of this on platforms where you have much more control and consistency, can change one factor at a time.

link|improve this answer
feedback

I can suggest you reading "Write great code", by Randall Hyde. These books are specifically about this issue. The first volume talks about the hardware and the second is about how to actually write better code. As far as I know there should be 4 books but only 2 have been written right now.

link|improve this answer
feedback

Are you looking for this?

link|improve this answer
feedback

There is some information at http://www.cc.gatech.edu/~bader/COURSES/UNM/ece637-Fall2003/papers/KW03.pdf (with some examples), but it is mostly showing how a compiler would do the transformations. You can still learn the techniques from the first few pages. It is probably not the best resource for learning, though.

link|improve this answer
feedback

Actually i think what u r refering here is called vectorization. It is present in GCC. there are other types of optimization like loop unrolling, partial redundancy elimination. But these are performed efficiently by compiler. So you dont have to worry much about it

These are optimization performed by compiler not by C language So look into optimization performed by compiler.

link|improve this answer
1  
Reducing cache misses has nothing to do with vectorization. – kotlinski Mar 1 '11 at 14:38
Doesnt compiler do this – ashmish2 Mar 1 '11 at 14:44
Compiler surprisingly often does what you tell it to do. – kotlinski Mar 1 '11 at 14:48
Things like reordering access in order to improve cache hits can be done in compilers. But they are limited, especially in C and C++ which gives too much control on the programmer to allow compilers modification of the kind presented in the question. – AProgrammer Mar 1 '11 at 14:49
A vectorization is an entirely different beast than cache optimization. Vectorization means trying to do the same operation on multiple data at once (IIRC), but cache optimization tries to reduce the memory fetches from RAM to cache. – DarkDust Mar 1 '11 at 15:53
feedback

Your Answer

 
or
required, but never shown

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