CSC/ECE 506 Fall 2007/wiki2 7 ss: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
Line 3: Line 3:


== Advantages ==
== Advantages ==
Multiprocessors with physically distributed memory because the latency to obtain data from a nearby cache may be much smaller than that for a faraway memory unit.


== Disadvantages ==
== Disadvantages ==

Revision as of 20:25, 21 September 2007

Cache-to-Cache Sharing

Cache-to-cache sharing is a technique to supply the block for a BusRd(Bus Read) transaction from cache instead of main memory. Stanford DASH multiprocessor used cache-to-cache transfers.

Advantages

Multiprocessors with physically distributed memory because the latency to obtain data from a nearby cache may be much smaller than that for a faraway memory unit.

Disadvantages

Cache-to-cache sharing adds complexity to bus-based protocol in that main memory must wait until it is certain that no cache will supply the data before driving the bus and also if the data resides in multiple caches, a selection algorithm is needed to determine which one will provide the data.

References