We have an algorithm which is performing poorly and we believe it's because of CPU cache misses. Nevertheless, we can't prove it because we don't have any way of detecting them. Is there any way to tell how many CPU cache misses an algorithm produces? We can port it to any language which could allow us to detect them.

Thanks in advance.

link|improve this question

56% accept rate
feedback

2 Answers

Easiest way to find out such kind of issues is to use profilers and collect cache related performance counters.

I would recommend to check following tools:

Is it possible to see the overall structure of your algorithm (if it is not too long)?

link|improve this answer
feedback

Intel CPUs keep performance counters that you can extract with some assembler instructions.

Could you (1) baseline cache misses on a quiescent system, (2) run the program and compare?

See Volume 3B of the Intel Instruction Set Reference Section 18 Page 15 (18-15) for the assembler you would have to write up.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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