Savannah Madison
Savannah Madison

Reputation: 667

Trouble Understanding Associative Cache

I was reading a book on Cache Optimizations and in the Third Optimization ie Higher Associativity to Reduce Miss Rate The author says

2:1 cache rule (for cache upto size 128KB) A direct-mapped cache of size N has the same miss rate of 2-way associative cache of size N /2.

But the author provides no explanation or proof to this and I am unable to understand this. Could anyone explain how he came up with this rule?

Upvotes: 1

Views: 146

Answers (1)

Peter Cordes
Peter Cordes

Reputation: 365727

It's a "rule of thumb" that's (apparently) usually true for normal workloads, I'd guess from simulating traces of real workloads like SPECint and/or commercial software. Not an actual law that's always true.

Seems reasonable if most of the misses are just conflict misses, not capacity misses.

Upvotes: 1

Related Questions