User:Stchen: Difference between revisions

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


<center>[[File:Cache_Coherency_Generic.png]]</center>
<center>[[File:Cache_Coherency_Generic.png]]</center>
<center> '''Figure 1.  Multiple Caches of Shared Resource''' </center>


Update and Adaptive Coherence Protocols are used to solve the [http://en.wikipedia.org/wiki/Cache_coherence cache coherency] problem.
Update and Adaptive Coherence Protocols are used to solve the [http://en.wikipedia.org/wiki/Cache_coherence cache coherency] problem.

Revision as of 02:45, 21 March 2012

Introduction to Update and Adaptive Coherence Protocols on Real Architectures

In parallel computer architectures, cache coherence refers to the consistency of data that is stored throughout the caches on individual processors or throughout the shared memory. The problem here is that

[1]
Figure 1. Multiple Caches of Shared Resource

Update and Adaptive Coherence Protocols are used to solve the cache coherency problem.

According to Solihin textbook, page number 229, "One of the drawbacks of an invalidate-based protocol is that it incurs high number of coherence misses." What this means is that when a read has been made to an invalidated block, there will be a cache miss and serving this miss can create a high latency. To solve this, one can use a update coherence protocol, or an adaptive coherence protocol.

Update Coherence Protocol

BOOM

Adaptive Coherence Protocol