|
|
|
|
|
by m0zg
2345 days ago
|
|
It's a common misconception that cache is "low latency". It certainly is compared to main memory (which can take ~200 cycles before it stats feeding the CPU the bytes it wanted), but L3 hit can take 40-60 cycles easily as well, so it's not even an order of magnitude difference. By the time you're hitting L3, you're kind of already screwed. For perf, I'd much rather have larger L1, or a (much) bigger register file. |
|