I was going through Scott Meyer's podcast on CPU CACHES AND WHY YOU CARE It seems this will make code run faster, is there any open source where such coding is done for reference. Or anybody has example of design of data structures/algorithms based on CPU caches aware

link|improve this question

2  
6  
This question is way too broad. How best to structure a data structure for optimal use of the cache depends on a great many things. The access patterns, when you access it, how big the elements are, etc. There's no one catch-all answer; that's why the podcast simply talks about how cached memory works. There's no "do this and your code gets faster" silver bullet. – Nicol Bolas Oct 31 '11 at 7:56
1  
If it wasn't phrased too broadly and in the "I have just read a blog that I found interesting" style, this question would still be a duplicate of stackoverflow.com/questions/763262/cache-efficient-code – Pascal Cuoq Oct 31 '11 at 8:05
And I found this other vague and general question by looking for something specific on "cache miss performance counter". Nothing turned up on StackOverflow, so you are left with Google, but it you start applying the ideas from the video you liked without having used those first to measure cache efficiency of your existing algorithm, you are wasting your time. – Pascal Cuoq Oct 31 '11 at 8:09
You'll find many relevant readings in the answers to stackoverflow.com/questions/6852670/… – Szabolcs Oct 31 '11 at 9:35
feedback

closed as not a real question by Nicol Bolas, Paul R, Pascal Cuoq, Matthieu M., Anteru Oct 31 '11 at 9:08

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

Sure, the entire Linux kernel is implemented to be cache-aware.

For more details there is highly recommended paper What Every Programmer Should Know About Memory.

link|improve this answer
feedback

Linear algebra is sensitive to cache problems. The BLAS subroutines allow one to abstract away from these concerns

link|improve this answer
feedback

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