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.
memset(a, 0, sizeof(a));might very well be faster. – kotlinski Mar 1 '11 at 14:55