paragjain
paragjain

Reputation: 275

L2 cache memory

What's the difference between 2*512 KB L2 cache and 1 MB L2 cache?

Upvotes: 0

Views: 598

Answers (2)

chus
chus

Reputation: 1645

Assuming we are talking about a 2-core processor, they could be two design choices for the second level of the memory hierarchy:

  • 2*512 KB L2 cache: two private L2-caches.
  • 1 MB L2 cache: L2-cache shared between the two cores.

For example, private L2 caches can be found at the processors of the Sandy Bridge or the K10 microarchitectures. Shared L2 caches can be found at the T1, T2 and T3 UltraSPARC processors (T4 has dedicated L2 caches).

Upvotes: 1

Fredou
Fredou

Reputation: 20100

First one could be dedicated for dual core, 512 KB each core and the second could be shared, if more than one core?

Upvotes: 6

Related Questions