I'm trying to use Shark to check for L2 cache misses, but it won't work. All of the other Shark sampling modes work fine.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Not all CPUs support L2 cache miss profiling (it depends on what performance registers the CPU has). Also note that you only get a sample every N cache misses, so if your code is not doing much (i.e. not accessing uncached memory) then you may not see any samples. |
|||||||
|
|
... a little late, but chances are, some reason, Shark didn't detect which CPU you are using and assumes you don't have the appropriate hardware performance counters.
Check out the Intel architecture manuals (#3 I think) for what perf counter does what -- unfortunately, there are often no direct L1/L2/LLC miss counters so you'll need some combination of other counters or use another as an estimate. |
|||
|
|