You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Christopher Celio edited this page Feb 28, 2014
·
6 revisions
Cache Sizes and Access Latencies
blue (unit-stride)
green (cache-line stride)
red (random stride)
The difference between random stride and cache-line stride demonstrate the power of Intel's prefetchers. A pointer chase that is unit stride will perform at full pipeline speed, even over an array that is sitting in off-chip DRAM. The cache-line stride is not much slower - about 6ns latency per load!! (remember- each load is dependent on the previous load!).