CSC/ECE 506 Spring 2013/8b ap: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
(Created page with "=Update and adaptive coherence protocols on real architectures, and power considerations= ===Introduction=== In a [http://en.wikipedia.org/wiki/Shared_memory shared memory] -...")
 
No edit summary
Line 1: Line 1:
=Update and adaptive coherence protocols on real architectures, and power considerations=
=Introduction to Update and Adaptive Coherence Protocols on Real Architectures=
===Introduction===


In parallel computer architectures, '''cache coherence''' refers to the consistency of data that is stored throughout the [http://en.wikipedia.org/wiki/Cache_(computing) caches] on individual processors or throughout the shared memory.  The problem here is that we have multiple caches on multiple processors.  When an update to a single cache makes changes to a shared memory, you will need to have all the caches be coherent on the value change.  This is better shown below.


In a [http://en.wikipedia.org/wiki/Shared_memory shared memory] - shared-bus multiprocessor system, cache coherency protocol maintains one of the important roles to propagate changes from one cache to the others. But in most of the cases, update and invalidate coherence protocols are the main source of bus contention that can lead to increased number of bus busy cycles, thus increasing program execution time because the processor may stall while its cache is waiting for the bus. To avoid the bus contention this article brings up some high performance multiprocessor based adaptive hybrid protocol strategies.<ref>[http://en.wikipedia.org/wiki/Shared_memory shared memory]</ref>


===Coherence protocols===
In general terms, a coherency protocol is a protocol which maintains the consistency between all the caches in a system of [http://en.wikipedia.org/wiki/Shared_memory shared memory]. The protocol maintains memory coherence according to a specific consistency model. Older multiprocessors support the [http://en.wikipedia.org/wiki/Sequential_consistency sequential consistency model], while modern shared memory systems typically support the release consistency or weak consistency models.
<center>[[File:Cache_Coherency_Generic.png]]</center>


<center>[[Image:Cache Coherency Generic.png|400px| Multiple Caches of Shared Resource]]</center>
<center> '''Figure 1.  Multiple Caches of Shared Resource''' </center>
<center> '''Figure 1.  Multiple Caches of Shared Resource''' </center>






Transitions between states in any specific implementation of these protocols may vary. For example, an implementation may choose different update and invalidation transitions such as update-on-read, update-on-write, invalidate-on-read, or invalidate-on-write. The choice of transition may affect the amount of inter-cache traffic, which in turn may affect the amount of cache bandwidth available for actual work. This should be taken into consideration in the design of distributed software that could cause strong contention between the caches of multiple processors.
According to <ref name="glasco">Glasco, D.B.; Delagi, B.A.; Flynn, M.J.; , "Update-based cache coherence protocols for scalable shared-memory multiprocessors," System Sciences, 1994. Proceedings of the Twenty-Seventh Hawaii International Conference on , vol.1, no., pp.534-545, 4-7 Jan. 1994
Various models and protocols have been devised for maintaining cache coherence, such as MSI protocol, MESI (aka Illinois protocol), MOSI, MOESI, MERSI, MESIF, write-once, Synapse, Berkeley, Firefly and Dragon protocol
doi: 10.1109/HICSS.1994.323135
[http://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=323135&isnumber=7709 Paper]</ref> there are two ways to maintain cache consistency.  These are invalidation and update. The difference is that invalidation will "... purges the copies of the line
from the  other caches which results in a single copy of the line, and updating forwards the write value to  the other caches, after which all caches are consistent"<ref name="glasco"></ref>. Since we have already talked about invalidation protocols, we will focus on update protocols.  However, now there has been a new type of adaptive coherence protocols and that will also be discussed below.


For the purpose of the main study, this article will focus on the two commonly used coherence protocols: <b>Write-Invalidate (WI) and Write-Update (WU)</b>


'''Write-Invalidate Protocol'''
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.
In a [http://cs.gmu.edu/cne/modules/dsm/purple/wr_inval.html Write-Invalidate Protocol] a processor invalidates all other processors cache block and then updates its own cache block without further bus operations.


=Write-Invalidate Protocol=
==Update Coherence Protocol==
<dl>
<dd>Under the invalidation scheme, updates are only propagated when data are read, and several updates can take place before communication is necessary. Against this must be placed the cost of invalidating read-only copies before a write can occur. In the multiple-reader-single-write scheme described, this is potentially expensive. But, if the read/write ratio is sufficiently high, then the parallelism obtained by allowing multiple simultaneous readers offsets this cost. Where the read/write ratio is relatively small, a single-reader-single-writer scheme can be more appropriate: i.e, one in which at most one process may be granted read-only access at a time.
<dd> This article focuses on the write-update protocol leaving the reader to investigate write-invalidate protocol through own research. If the reader wants to seek more information regarding this protocol, please go to [http://cs.gmu.edu/cne/modules/dsm/green/coherence.html this page] as it will provide insightful and meaning description and demonstration on how this protocol operates.
</dl>
 
=Write-Update Protocol=
 
Interchangeably,in a [http://cs.gmu.edu/cne/modules/dsm/purple/wr_update.html Write-Uptade Protocol],  a processor broadcasts updates to shared data to other caches so other cashes stay coherent.
<ref>[http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CCIQFjAA&url=ftp%3A%2F%2Fftp.cs.washington.edu%2Ftr%2F1994%2F05%2FUW-CSE-94-05-02.PS.Z&ei=2n9kT8gjhPDSAaO2nb4P&usg=AFQjCNFFRgsJiBWjKAMOHcGcRL_vkkSqLg&sig2=aYWddXJdXsNNIFQ5U4zoqg Two techniques for improving performance on bus-based mu1tiprocessors]</ref>
<dl>


 
===Introduction===
 
Update-based cache coherence protocols work by directly updating all the cache values in the system.  This differs from the invalidation-based protocols because it achieves write propagation without having to invalidation and misses.  This saves on numerous coherence misses, time spent to correct the miss, and bandwidth usage.  The update-based protocols we will be discussing in this section are the [http://en.wikipedia.org/wiki/Dragon_protocol Dragon Protocol] and the [http://en.wikipedia.org/wiki/Firefly_protocol Firefly protocol].
<b>Write-Update protocol:</b> Some of the common updated protocols are Dragon and Firefly protocols.
<dl>
<dd>


===Dragon Protocol===
===Dragon Protocol===
[[File:Screen_Shot_2012-04-02_at_8.21.48_PM.png|thumb|upright=2.5|right|alt=A large clock tower and other buildings line a great river.|Table 1: Definitions of additional notations in the state transition diagram of Dragon Protocol]]
The [http://en.wikipedia.org/wiki/Dragon_protocol Dragon Protocol] is an implementation of update-based coherence protocol. It further saves on bandwidth by updating the specific words within the cache instead of the entire block. The caches use write allocate and write update policies. The Dragon Protocol is made up of four states ('''Modified (M)''', '''Exclusive (E)''', '''Shared Modified (Sm)''', '''Shared Clean (Sc)''') and does not include an invalidation state, because if the block is in cache it is valid.
[[File:Screen Shot 2012-03-28 at 10.18.57 PM.png|thumb|upright=2.5|right|alt=A large clock tower and other buildings line a great river.|Figure 2 depicts the state transition diagram of the Dragon protocol]]
<dd>This protocol was first proposed by researchers at Xerox PARC for their Dragon multiprocessor system.
The Dragon protocol ensures that data is always valid if the tag matches. Hence, there is no explicit invalid state even though it reserves a miss mode bit for compulsory misses. The Dragon protocol consists of four states:
 
<dd>'''Exclusive (E): '''means that only one cache (this cache) has a copy of the block, and it has not been modified (the main memory is up-to-date)
 
<dd>'''Shared-clean (Sc): '''means that potentially two or more caches (including this one) have this block, and main memory may or may not be up-to-date


* '''Modified (M)''' - cache block is exclusively owned, however it can be different from main memory
* '''Exclusive (E)''' - cache block is clean and is only in one cache
* '''Shared Modified (Sm)''' - cache block resides in multiple caches and is possible dirty
* '''Shared Clean (Sc)''' -  cache block resides in multiple caches and is clean


<dd>'''Shared-modified(Sm):''' means that potentially two or more caches have this block, main memory is not up-to-date, and it is this cache's responsibility to update the main memory at the time this block is replaced from the cache; a block may be in this state in only one cache at a time; however it is quite possible that one cache has the block in this state, while others have it in shared-clean state
There is not an invalidation state, because if a block is cached then it assumed to be valid.  However, it can differ from main memory.  Below are the finite state machines for the processor-side calls and bus-side calls.  Dragon protocol utilizes snoopy caches to appear as if it as a uniform memory space even though there are multiple processors.
[[File:Dragon Protocol Processor-Side.png|550px|center]]
<center> '''Figure 2.  Dragon Protocol Processor-Side''' </center>


<dd>'''Modified (M): '''signifies exclusive ownership as before; the block is modified and present in this cache alone, main memory is stale, and it is this cache's responsibility to supply the data and to update main memory on replacement.


[[File:Dragon Protocol Bus-Side.png|500px|center]]
<center> '''Figure 3.  Dragon Protocol Bus-Side''' </center>


[http://expertiza.csc.ncsu.edu/wiki/index.php/File:Screen_Shot_2012-03-28_at_10.18.57_PM.png Figure 2] depicts the state transition diagram of the Dragon protocol, and [http://expertiza.csc.ncsu.edu/wiki/index.php/File:Screen_Shot_2012-03-28_at_10.29.04_PM.png Table 1] details the additional notations in the state transition diagram.
The Dragon Protocol is implemented in the [http://en.wikipedia.org/wiki/Cray_CS6400 Cray CS6400] (also know as the Xerox Dragon multiprocessor workstation) and was developed by Xerox in. It was available with either 60Mhz or 85Mhz processors. The Xerox Dragon was designed to be a research numerous processors


===Firefly Protocol===
===Firefly Protocol===
[http://en.wikipedia.org/wiki/Firefly_protocol Firefly protocol] is another example of update coherence cache protocols.  However, unlike the [http://en.wikipedia.org/wiki/Dragon_protocol Dragon Protocol], it uses write-through policy (which writes all changes back to memory). 


* '''Valid Exclusive (VE)''' - cache block is exclusively owned, cache block is clean
* '''Dirty (D)''' - exclusive rights to the cache block, cache block is dirty
* '''Shared (S)''' - cache block is shared but is not modified


[[File:Screen_Shot_2012-03-29_at_12.14.24_AM.png|thumb|upright=1|right|alt=A large clock tower and other buildings line a great river.|Table 2: Definitions of additional notations in the state transition diagram of Figure 3]]
The Firefly Protocol uses a special bus technique called SharedLine to allow quick detection to copies of the block in other caches. It is similar to the COPIES_EXIST (C) and !COPIES_EXIST, and is shown that way in the finite state machines below. Similar to the Dragon protocol, there is no invalidation state because no cache blocks are ever invalidated.
<dd>The Firefly protocol was developed by DEC for microprocessor workstation development.
<dd>The Firefly protocol also ensures that data is always valid if the tag matches. Hence, there is no explicit invalid state even though it reserves a miss mode bit for compulsory misses. The Firefly protocol consists of the following three states:
<dd>'''Valid (V): '''This block has a coherent copy of the memory. There is only one copy of the data in caches.
<dd>'''Dirty (D):''' The block is the only copy of the memory and it is incoherent. This is the only state that generates a write-back when the block is replaced in the cache.
<dd>'''Shared (S):''' This block has a coherent copy of the memory. The data may be possibly shared, but its content is not modified.


[http://expertiza.csc.ncsu.edu/wiki/index.php/File:Screen_Shot_2012-03-28_at_10.19.25_PM.png Figure 3] depicts the state transition diagram of the Firefly protocol, and [http://expertiza.csc.ncsu.edu/wiki/index.php/File:Screen_Shot_2012-03-29_at_12.14.24_AM.png Table 2] details the additional notations in the state transition diagram.
[[File:Firefly Protocol Processor-Side.png|550px|center]]
[[File:Screen_Shot_2012-03-28_at_10.19.25_PM.png|thumb|upright=2.5|center|alt=A large clock tower and other buildings line a great river.|Figure 3: State diagram of the Firefly protocol.]]
<center> '''Figure 4. Firefly Protocol Processor-Side''' </center>


=Adaptive coherence protocols=


=====  <b>Disadvantages of Write-Invalidate Protocol</b>=====
[[File:Firefly Protocol Bus-Side.png|550px|center]]
<dd> Any update/write operation in a processor invalidates the shared cache blocks of other processors, forcing other caches to do the bus request to reload the new data that turns to increase high bus bandwidth. This can be worse if one processor frequently updates the cache and other processor stalls to read the same cache block. For a sequence '''n''' that writes in one processor and read from other processor, '''WI''' protocol makes '''n''' invalidate and '''n''' cache block read operations.<ref>[http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CCIQFjAA&url=ftp%3A%2F%2Fftp.cs.washington.edu%2Ftr%2F1994%2F05%2FUW-CSE-94-05-02.PS.Z&ei=2n9kT8gjhPDSAaO2nb4P&usg=AFQjCNFFRgsJiBWjKAMOHcGcRL_vkkSqLg&sig2=aYWddXJdXsNNIFQ5U4zoqg Two techniques for improving performance on bus-based mu1tiprocessors - White-Invalidate]</ref>
<center> '''Figure 5.  Firefly Protocol Bus-Side''' </center>




=====  <b>Disadvantages of Write-Update Protocol</b>=====
The Firefly protocol is used in the [http://en.wikipedia.org/wiki/DEC_Firefly DEC Firefly] multiprocessor workstation, developed by [http://en.wikipedia.org/wiki/Digital_Equipment_Corporation Digital Equipment Corporation]. The system is asymmetic and the cache is direct-mapped to support multiprocessing. The cache capicity was 16KB for the original [http://en.wikipedia.org/wiki/MicroVAX_78032 MicroVAX 78032] microprocessor were latter increased to 64KB when upgraded to the [http://en.wikipedia.org/wiki/CVAX#CVAX_78034 CVAX_78034] microprocessor.
<dd> Update protocol is advantageous in this case because it updates only the cache blocks n times. But update protocol sometimes refresh unnecessary data of other processors cache for too long, hence fewer cache blocks are available for more useful data. It tends to increase conflict and capacity cache misses.<ref>[http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CCIQFjAA&url=ftp%3A%2F%2Fftp.cs.washington.edu%2Ftr%2F1994%2F05%2FUW-CSE-94-05-02.PS.Z&ei=2n9kT8gjhPDSAaO2nb4P&usg=AFQjCNFFRgsJiBWjKAMOHcGcRL_vkkSqLg&sig2=aYWddXJdXsNNIFQ5U4zoqg Two techniques for improving performance on bus-based mu1tiprocessors - Write-Update]</ref>
</dl>


Using the combination strategy like '''adaptive hybrid protocol''' can reduce nature of pathological behaviors of update and invalid protocols. This protocol should be applicable to a wide range of network characteristics and it should automatically adjust its behavior to achieve target goals in the face of changes in traffic patterns, node mobility and other network characteristics.
==Adaptive Coherence Protocols==


====Consideration of cache architecture issue====
===Introduction===
Execution of applications also directly relate to the size of cache block.
Even though there are clear advantages to using either update protocols or invalidate protocols, there are still disadvantages for each. In a write invalidate protocol, any update/write operation in a processor invalidates the shared cache blocks of other processors.  This will force the other caches to do read requests such that the new data is retrieved. This tends to cause a high bus bandwidth and can be especially bad if there is few processors that frequently update the cache. Fortunately, write update protocols mitigate this issue. It will update all other caches at the same time it propagates an update itself. Unfortunately, this creates a different problem, there will sometime be unnecessary update to the cache on the other processors. This tends to increase conflict and capacity cache misses.
Some applications execute more quickly with large cache block size because they exhibit good spatial locality where as some applications run better when cache block sizes are small by avoiding migratory data or false sharing between processors. <ref>[http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CCIQFjAA&url=ftp%3A%2F%2Fftp.cs.washington.edu%2Ftr%2F1994%2F05%2FUW-CSE-94-05-02.PS.Z&ei=2n9kT8gjhPDSAaO2nb4P&usg=AFQjCNFFRgsJiBWjKAMOHcGcRL_vkkSqLg&sig2=aYWddXJdXsNNIFQ5U4zoqg Two techniques for improving performance on bus-based mu1tiprocessors]</ref>
 
===Hardware architecture===
Most often, processor architecture maintains the same block size for both memory to cache, cache to memory transfer and coherence.  
This approach uses different block sizes for transfer and coherence based on application requirements.
Normal cache has the following parameters: Capacity('''C'''), Block size ('''L''') and associativity ('''K''').  
But sector cache divides the cache blocks into subblocks of size “b”. Though a sector cache ('''C, L, K, b''') requires one extra state and some extra bus line to transmit bitmasks corresponding to the status of the subblocks in a particular block compare to normal cache('''C, L, K''') but maintains the same number of tag and state bits for '''L'''. <ref>[http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CCIQFjAA&url=ftp%3A%2F%2Fftp.cs.washington.edu%2Ftr%2F1994%2F05%2FUW-CSE-94-05-02.PS.Z&ei=2n9kT8gjhPDSAaO2nb4P&usg=AFQjCNFFRgsJiBWjKAMOHcGcRL_vkkSqLg&sig2=aYWddXJdXsNNIFQ5U4zoqg Two techniques for improving performance on bus-based mu1tiprocessors]</ref>
 
<dl>
 
===Subblock protocol===
This snoopy-based protocol mitigate the features of  [http://en.wikipedia.org/wiki/MESI_protocol Illinois MESI protocol] and write policies with subblock validation to take the advantages of both small and large cache block size by using subblock.  <ref>[http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CCIQFjAA&url=ftp%3A%2F%2Fftp.cs.washington.edu%2Ftr%2F1994%2F05%2FUW-CSE-94-05-02.PS.Z&ei=2n9kT8gjhPDSAaO2nb4P&usg=AFQjCNFFRgsJiBWjKAMOHcGcRL_vkkSqLg&sig2=aYWddXJdXsNNIFQ5U4zoqg Two techniques for improving performance on bus-based mu1tiprocessors]</ref>
 
<dt>
=====Block states=====


<dd> <b>Invalid:</b> All subblocks are invalid


<dd> <b>Valid Exclusive:</b> All valid subblocks in this block are not present in any other caches. All subblocks that are clean shared may be written without a bus <dd>transaction. Any subblocks in the block may be invalid. There also may be Dirty blocks which must be written back upon replesment.
Adaptive protocols tries to mitigate these problems. It will both tend to have some high bus traffic as well as some unnecessary updates. But, these can be mitigated based on how the adaptive algorithm switches between write-invalidate and write-update. There is also adaptive directory-based protocols, but these are not discussed here.


<dd> <b>Clean Shared:</b> The block contains subblocks that are either Clean Shares or Invalid. The block can be replaced without a bus transaction.
===Competitive Update Protocol===
A competitive-update protocol is a "..hybrid protocols between write-invalidate and write-update.."<ref name="nilsson">
H. Nilsson, P. Stenström "An adaptive update-based cache coherence protocol for reduction of miss rate and traffic"
Proc. Parallel Architectures and Languages Europe (PARLE) Conf., Lecture Notes in Computer Science, Athens, Greece, 817, Springer-Verlag, Berlin (Jul. 1994), pp. 363–374
[http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.26.7116&rep=rep1&type=pdf Paper]</ref>
These hybrid protocols are used to reduce the coherence miss rate caused by invalidation or update alone. The sole issue here is that there can be high traffic peeks and these peeks can offset the performance gain<ref name="nilsson"></ref>
According to Nilsson in <ref name="nilsson2">H. Nilsson, P. Stenström, and M. Dubois, “Implementation and Evaluation of Update-
Based Cache Protocols Under Relaxed Memory Consistency Models”, Technical Report,
Dept. of Computer Engineering, Lund University, Sweden, July 1993</ref>, competitive-update protocols will outperform write-invalidate protocols under relaxed memory consistency.  The concept presented is very simple.  The first write to a block causes an update to the copy of the block.  If instead the local processor does not access it, it will then propagate an invalidate.  What this effectively does is make regularly accessed copies of the memory block be updated.  The limitation here is that migratory data makes this protocol sub-optimal.  The latest research done in this area is Competitive Update Protocol with Migratory Detection<ref name="nilsson"></ref>.  This recognizes when there is migratory data and compensates.


<dd> <b>Dirty Shared:</b> Subblocks in this block may be in any state. There may be Dirty blocks which must be written back on replacement.<ref>[http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CCIQFjAA&url=ftp%3A%2F%2Fftp.cs.washington.edu%2Ftr%2F1994%2F05%2FUW-CSE-94-05-02.PS.Z&ei=2n9kT8gjhPDSAaO2nb4P&usg=AFQjCNFFRgsJiBWjKAMOHcGcRL_vkkSqLg&sig2=aYWddXJdXsNNIFQ5U4zoqg Two techniques for improving performance on bus-based mu1tiprocessors]</ref>
<center>[[Image:CompetitiveUpdateProtocolWithMigratoryDetection.jpg|800px]]</center>
<center> '''Figure 6. Competitive Update Protocol With Migratory Detection<ref name="nilsson"></ref>''' </center>
<center> '''Coherence actions for detection of migratory blocks (left) and coherence actions for read misses to migratory blocks (right).''' </center>


<dt>


This is only one of many ways to deal with migratory data.  For further reading, a Google Scholar search on "Adaptive Protocols and Migratory" will return many papers published on different ways to deal with migratory data issue that arises when using adaptive protocols.




'''Finite state diagram of block/ line states is as follows:'''
===Cachet===
 
Cachet is an adaptive cache coherence protocol that uses micro-protocols <ref name="shen">Xiaowei Shen, Arvind, and Larry Rudolph. 1999. CACHET: an adaptive cache coherence protocol for distributed shared-memory systems. In Proceedings of the 13th international conference on Supercomputing (ICS '99). ACM, New York, NY, USA, 135-144. DOI=10.1145/305138.305187[http://doi.acm.org/10.1145/305138.305187 Paper]</ref> Cachet recognizes that shared-memory programs have various access patterns and no fixed cache coherence protocol works well for all access patterns.<ref name="bennet">J. K. Bennett, J. B. Carter, and W. Zwaenepoel. Adaptive Software Cache Management for Distributed Shared Memory Architectures. In Proceedings of the 17th Annual International Symposium on Computer Architecture, May 1990</ref><ref name="eggers">S. Eggers and R. H. Katz. Evaluating the Performance for Four Snooping Cache Coherency Protocols. In Proceedings of the 16th Annual International Symposium on Computer Architecture, May 1989</ref><ref name="falsafi">B. Falsafi, A. R. Lebeck, S. K. Reinhardt, I. Schoinas, MD. Hill, J. R. Larus, A. Rogers, and D. A. Wood. Application specific protocols for user-level shared memory. In Supercomputing, Nov. 1994</ref><ref name="weber">W. D. Weber and A. Gupta. Analysis of Cache Invalidation Patterns in Multiprocessors. In Proceedings of the 3rd International Conference on Architectural Support for Programming Languages and Operating Systems, 1989</ref>.  What cachet attempts to do is either take in the access pattern through program annotations from the programmer or recognition by the compiler.
<center> [[File:line_protocol.png]]</center>
<center> '''Figure 4Finite state diagram of block''' </center>


=====Subblock states=====


<dd> <b>Invalid:</b>  The subblock is invalid
So how does it work?


<dd> <b>Clean Shared:</b> A read access to the block will succeed. Unless the block the subblock is a part of is in the Valid Exclusive state, a write to the subblock will force an invalidation transaction on the bus.


<dd> <b>Dirty Shared:</b> The subblock is treated like a Clean Shared sbublock, except that it must be written back on replacement. At most one cache will have a given subblock in either the Dirty Shared or Dirty state.
<blockquote>"Cachet-Base: The most straightforward implementation simply uses the memory as the rendezvous. When a Commit instruction is executed for an address that is cached in the Dirty state, the data must be written back to the memory before the instruction can complete. A Reconcile instruction for an address cached in the Clean state requires the data be purged from the cache before the instruction can complete. An attractive characteristic of Cachet-Base is its simplicity; no state needs to be maintained at the memory side."<ref name=shen></ref></blockquote>


<dd> <b>Dirty:</b> The subblocks is exclusive to this cache. It must be written back on replacement. Read and write access to this subblock hit with no bus transaction.


<blockquote>Cachet-WriterPush: Since load operations are usually more frequent than store operations, it is desirable to allow a Reconcile instruction to complete even when the address is cached in the Clean state. Thus, the following load access to the address causes no cache miss. Correspondingly, when a Commit instruction is performed on a dirty cell, it cannot complete before clean copies of the address are purged from all other caches. Therefore, it can be a lengthy process to commit an address that is cached in the Dirty state."<ref name=shen></ref></blockquote>


'''Finite state diagram of subblock is as follows:'''
<center>[[File:subblock_protocol.png]]</center>
<center> '''Figure 5.  Finite state diagram of Sub-block''' </center>
 
Basic idea of this protocol is to do more data transfer between caches and less off-chip memory access.
In contrast with Illinois protocol, on read misses, shared cache block sends cached sublock and also all other clean and dirty shared subblockes in that block.
If the subblock is in the main memory, cache snooper pass the information of caches subblocks and memory will provide the requested subblock along with sublocks which are not currently cached.
On write to clean subblockes and write misses, snooper invalidates only the subblock to be written to avoid the penalties associated with false sharing.


<b>In contrast to the Illinois MESI Protocol, which requires extra power cycle to maintain the extra states and additional logic, the subblock protocol reduces number of cache blocks, compared to any cache update protocols, and thus reduces power consumption.. </b> <ref>[http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CCIQFjAA&url=ftp%3A%2F%2Fftp.cs.washington.edu%2Ftr%2F1994%2F05%2FUW-CSE-94-05-02.PS.Z&ei=2n9kT8gjhPDSAaO2nb4P&usg=AFQjCNFFRgsJiBWjKAMOHcGcRL_vkkSqLg&sig2=aYWddXJdXsNNIFQ5U4zoqg Two techniques for improving performance on bus-based mu1tiprocessors]</ref>
<blockquote>"Cachet-Migratory: When an address is exclusively accessed by one processor for a reasonable time period, it makes sense to give the cache the exclusive ownership so that all instructions on the address become local operations. This is reminiscent of the exclusive state in conventional MESI like protocols. The protocol ensures that an address can be cached in at most one cache at any time. Therefore, a Commit instruction can complete even when the address is cached in the Dirty state, and a Reconcile instruction can complete even when the address is cached in the Clean state. The exclusive ownership can migrate among different caches whenever necessary."<ref name=shen></ref></blockquote>
</dl>


===Read-snarfing protocol===
This is an enhancement to snoopy-cache coherence protocols that takes advantage of the inherent broadcast nature of the bus.


In contrast with MESI protocol, if one processor wants to reload data in its cache due cache miss, read-snarfing protocol will effectively supply the block to other processors whose blocks were invalidated in the past. Only one read is required to restore the block to all caches which are invalidated.
<blockquote>"Different micro-protocols are optimized for different access patterns. Cachet-Base is ideal when the location is randomly accessed by multiple processors, and only necessary commit and reconcile operations are invoked. A conventional implementation of release consistency usually requires that all addresses be indistinguishably committed before a release, and reconciled after an acquire. Such excessive use of commit and reconcile operations can result in performance degradation under Cachet-Base."<ref name=shen></ref></blockquote>


Protocol modifies the normal updated protocol by updating only those sub-blocks which are modified and update only need to broadcast when the data is actively shared.
Read-snarfing protocol maintains a counter and invalidation threshold (Tb) for each cache block “b” to overcome the drawback of WI’s write after read problem. Protocol predicts the number of write operations happens on a single cache block before a read request to the same cache block. Invalidation request is being broadcasted when the write counter reaches the Tb and protocol dynamically adjust the value of Tb based on the nature of program execution.


Simple algorithm of Read-snarfing Random Walk protocol is as follows:
<blockquote>"Cachet-WriterPush is appropriate when certain processors are likely to read an address many times before another processor writes the address. A reconcile operation performed on a clean copy causes no purge operation, regardless of whether the reconcile is necessary. Thus, subsequent load operations to the address can continually use the cached data without causing any cache miss. Cachet Migratory fits well when one processor is likely to read and write an address many times before another processor accesses the address."<ref name=shen></ref></blockquote>
Initially Tb of each cache block b is set to 0. <ref>[http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CCIQFjAA&url=ftp%3A%2F%2Fftp.cs.washington.edu%2Ftr%2F1994%2F05%2FUW-CSE-94-05-02.PS.Z&ei=2n9kT8gjhPDSAaO2nb4P&usg=AFQjCNFFRgsJiBWjKAMOHcGcRL_vkkSqLg&sig2=aYWddXJdXsNNIFQ5U4zoqg Two techniques for improving performance on bus-based mu1tiprocessors]</ref>


<pre>


// Number of Write operation happens before being accessed by other processor
What is so interesting about Cachet is its ability to switch between these mirco-protocols.  This excerpt from the paper does the best of explaining it.
If (most recent write run  >  R) {
    If(Tb > 1) {
Tb--;
    }
} else {
    If(R > Tb) {
Tb++;
    }
}


R = Invalidation Ratio which is (Ci + Cr) / Cu
==Power Considerations==
Ci: The cost in bus cycles of an invalidation transaction
A major issue when considering power is how many bus transaction are incurring over the bus. Different protocols require different bus transactions, so we are able to loosely demonstrate how much power is being utilized by each of the different techniques by comparing there bus transactions over the same read/write pattern. We will use the patterns found in '''Ch 8 of Solihin'''.
Cu: The cost in bus cycles of an update transaction
Cr: The cost in bus cycles of reading a cache block


[[File:MSI_Protocol_operation.png|600px]]


</pre>
[[File:MOESI_Protocol_operation.png|600px]]


Block will be invalidated immediately with no wasted updates when Threshold reduces to 0. 
[[File:Dragon_Protocol_operation.png|600px]]
When block is actively shared, block is not invalidated by adjusting the Tb upward. <ref>[http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CCIQFjAA&url=ftp%3A%2F%2Fftp.cs.washington.edu%2Ftr%2F1994%2F05%2FUW-CSE-94-05-02.PS.Z&ei=2n9kT8gjhPDSAaO2nb4P&usg=AFQjCNFFRgsJiBWjKAMOHcGcRL_vkkSqLg&sig2=aYWddXJdXsNNIFQ5U4zoqg Two techniques for improving performance on bus-based mu1tiprocessors]</ref>
<dl>
<dd>
=====Example 1 =====
<dd>Suppose invalidation ratio (R) = 5
<dd>Current threshold block (Tb) = 3
<dd>If the processor writes 4 times before it is accessed by other processor, according to the above logic, Tb will be 4.
<dd>This means Tb is at the best possible value and only update can be issues.


=====Example 2 =====
As you can see from the above spreadsheets the update-based protocols demonstrate beter power consumption in terms of bus transactions and memory access. The invalidation protocols require 6 bus transactions plus 4 memory access for the MSI protocol, as well as 5 bus transactions and 1 memory access for the MOESI protocol. This is higher compared to the Dragon protocol which only used 4 bus transactions and 1 memory accessBy counting the number of bus transactions and memory access over the same procedure of processor calls we are able to put the different protocols on the same field and compare them.  The Dragon protocol also requires less time on the bus because it is only passing modified words instead of whole cache blocks.
<dd>Consider, R= 5 and Tb = 3 for a particular block
<dd>If the processor writes 10 times before it is accessed by other processor
<dd>Tb will be 2. (Decreased)
<dd>So the protocol can incur a cost of 2 updates, 1 invalidate and 1 reread.
<dd>After 2 more write, Tb will be 0 and invalidation will occur immediately.
 
</dl>
 
==Simulation result==
For all simulated results, the considered subblock size ('''b''') was '''8 byte''' and two-way set-associative ('''K = 2'''). In order to minimize simulation time, data was only simulated with relatively large caches ('''C = 128K''').
 
First, below are the results for the two applications ('''Gauss and Cholesky''') that do well using large block sixes. Next, the data results for the three applications ('''MP3D, Topopt, and Pverify''') that performs better using smaller block sixes are listed below. Finally, the report on results running Barnes, for which the choice of block size is not very important. The results of the simulation verified and compared the protocol with both usual and sector caches with '''1, 4, 16 and 32 processors''' where usual cache uses Illinois protocol whereas sector cache uses read-snurfing protocol. <ref>[http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CCIQFjAA&url=ftp%3A%2F%2Fftp.cs.washington.edu%2Ftr%2F1994%2F05%2FUW-CSE-94-05-02.PS.Z&ei=2n9kT8gjhPDSAaO2nb4P&usg=AFQjCNFFRgsJiBWjKAMOHcGcRL_vkkSqLg&sig2=aYWddXJdXsNNIFQ5U4zoqg Two techniques for improving performance on bus-based mu1tiprocessors - Simulation]</ref>
   
 
 
<center>[[File:image500.png]]</center>
 
 
<center> '''Figure 6.  (a-c) Gauss (128K cache) uses large cache block ''' </center>
 
 
 
 
 
<center>[[File:Gauss32.png]]</center>
 
<center>[[File:cholesky_128k.png]]</center>
 
<center> '''Figure 7.  (a-c) Cholesky (128 K cache) application uses large cache block'''</center>
 
 
 
 
 
<center>[[File:gauss_32pro.png]]</center>
 
<center>[[File:Cholesky.png]]</center>
 
<center>[[File:mp3d.png]]</center>
 
<center> '''Figure 8.  (a-c) MP3D (128 K caches) application which uses smaller block sizes.'''</center>
 
 
 
 
 
<center>[[File:results_summary_1.png]]</center>
 
<center>[[File:results_summary_2.png]]</center>
 
<center>[[File:results_summary_3.png]]</center>
 
<center> '''Figure 9.  Final Simulation Results'''</center>
 
==Conclusion==
This article used two techniques to improve application performance on bus-based multiprocessor. First technique was using subblock cache coherence protocol by implementing combination of large block and the subset with small cache blocks to take both, the advantages of spatial locality, and avoid false-sharing. 
The second technique was Read-snarfing in order to reduce the number of read misses caused by previous cache coherence protocol action.   
The simulation report above showed that subblock protocol works better than MESI protocol for the 64 byte cache block size, but for small block size Illinois protocol works better because subblock protocol uses large transfer block.
In addition, Read-snarfing protocol is effective in reducing the amount of data transfer and number of bus transaction which turns out the utilization of lower bus rate and higher application speedups.  




Unfortunately for adaptive protocols, we are unable to provide rough estimates.  Most cases with competitive update and cachet, it depends on the problem itself.  For example, bus traffic can vary in a competitive update.  Competitive update does invalidates on non-regularly used cache blocks.  This can vary between program to program.  What make power estimates hard for adaptive protocols is the nature of being adaptive.  Depending on the program involved, the performance/power used can vary drastically.


==Quiz==
==Quiz==
The following quiz is intended for the reader to benefit from this article and to help achieve a complete understanding of the research. There are a total of 10 multiple-choice questions.
'''Question 1 : What write protocol is used in the Dragon Protocol?'''
 
    a) write-permeate
<dl>
    b) write-through
 
    c) write-back
<dd>
    d) write-update
'''1) What are the two commonly used coherence protocols? '''
<dd>a) Token-based & Snooping-based
<dd>b) Write-Update & Token-based
<dd>c) Write-Invalidate & Write-Update
<dd>d) Both a and c
<dd>e) None of the above
 
 
'''2) A coherency protocol is a protocol which maintains  __________      ____________ according to a specific ___________    ___________'''
 
<dd>1) System order / memory hierarchy
<dd>2) Memory coherence / consistency model
<dd>3) Bus hierarchy / system order
<dd>4) None of the above
 
 
'''3) Increasing bus bandwidth is most commonly seen in what protocol?'''
<dd>a) Snooping-based
<dd>b) Write-Invalidate
<dd>c) Token-based
<dd>d) Write-Update
<dd>e) Both a and b
 
 
'''4) Increasing conflict and capacity cache missies is mostly seen in what protocol?'''
<dd>a) Token-based
<dd>b) Write-Update
<dd>c) Snooping-based
<dd>d) Write-Invalidate
<dd>e) Both a and d
 
 
'''5) Due to the good use of  _________  __________ some applications execute more quickly with large cache block size, where as others run better when cache block sizes are small by avoiding migratory data or ________  _________ between processors'''
<dd>a) Spatial locality / false-sharing
<dd>b) Equidistant locality /Sequential consistency
<dd>c) Temporal locality/ true sharing
<dd>d) Non of the above
 
 
'''6) The Subblock Protocol consists of four states: Invalid, Clean Shared, Dirty and __________. Name the missing state?'''
<dd>a) Exclusive
<dd>b) Valid
<dd>c) Dirty Shared
<dd>d) Shared
 


'''7) In the Subblock Protocol, all subblocks that are clean-shared may be written without a bus transaction. In what state is this achieved?'''
'''Question 2 : How does the Dragon Protocol save on bandwidth?'''
<dd>a) Valid Exclusive
    a) does not have a invalid state and can not incur read/write misses
<dd>b) Invalid
    b) consistently updates the memory
<dd>c) Clean Shared
    c) updates specific words within cache instead of entire blocks
<dd>d) Dirty Shared
    d) only flushes the memory when in the exclusive state


'''Question 3 : How are the states different for Dragon protocol than MOESI protocol?'''
    a) The Dragon shared states can allow for copies to exist in multiple caches
    b) split up the share state into clean and modified
    c) Exclusive state in the Dragon protocol can be dirty
    d) The Modified state is exclusively owned in the MOESI protocol


'''8) Which protocol maintains a counter and invalidation threshold for each cache block to overcome the drawback of Write-Invalidates’ write after read problem?'''
'''Question 4 : Why do update-based protocols not require a invalidation state?'''
<dd>a) Snooping-based
    a) because the it does not allow for an invalid block
<dd>b) Write-Invalidate
    b) if the block is in the cache then it is valid
<dd>c) Subblock protocol
    c) (a) and (c) are correct
<dd>d) Read-snarfing protocol
    d) None of the above
<dd>e) Write-Update


'''Question 5 : Which of the following is NOT true of the states in the Firefly protocol?'''
    a) They states use the SharedLine technique to detect for copies of the cache
    b) Dirty has multiple modified cache blocks
    c) Shared allows for multiple copies of the cache block to exist
    d) Valid Exclusive allows for only one copy of the cache to be in the state


'''9) Based on the simulation in this article, even though it was stated that Subblock Protocol worked better than MESI protocol in specific executions, in what circumstances the MESI Protocol would work better than Subblock Protocol?'''
'''Question 6 : What are two adaptive protocols?'''
<dd>a) For larger block size since it MESI uses large block sizes
    a) Competitive Update
<dd>b) For effectively supply the block to other processors whose blocks were invalidated in the past
    b) Competitive Invalidate
<dd>c) MESI will update the need to broadcast when the data is actively shared
    c) Cachet
<dd>d) For small block size because Subblock Protocol uses large transfer block
    d) Roulette
<dd>e) None of the above


'''Question 7 : Competitive Update Protocol uses what protocol(s) as its basis?'''
    a) Update
    b) Invalidate
    c) Both (a) and (b)
    d) None of the above


'''10) Why was it stated that Read-snarfing protocol achieved the utilization of lower bus rate and higher application speedups.'''
'''Question 8 : What is the major drawback for adaptive protocols?'''
<dd>a) Because instructions on any given processor execute in partial program order, but may not propagate in that order
    a) Write-Updates
<dd>b) Because it’s effective in reducing the amount of data transfer and number of bus transaction
    b) Write-Invalidates
<dd>c) Because Write Update reduces all types of cache misses relative to Write Invalidate, therefore Read-snarfing gains performance
    c) Overall Hardware Limitations
<dd>d) Because multiple caches can be in its Shared State simultaneously.
    d) Migratory Data
<dd>e) None of the above


</dl>
'''Question 9 : What is not a sub-protocol of Cachet?'''
    a) Cachet-Base
    b) Cachet-WriterPush
    c) Cachet-ReadPush
    d) Cachet-Migratory


'''Question 10 : What is the basis for Cachet protocol?'''
    a) It switches between update and invalidate
    b) It switches between three sub-protocols
    c) It switches between update and competitive update protocols
    d) It switches between invalidate and competitive update protocols


==References==
==References==
 
<references />
*[http://www.computer.org/portal/web/csdl/doi/10.1109/HPCA.1995.386536 Two techniques for improving performance on bus-based multiprocessors]
 
*[http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CCIQFjAA&url=ftp%3A%2F%2Fftp.cs.washington.edu%2Ftr%2F1994%2F05%2FUW-CSE-94-05-02.PS.Z&ei=2n9kT8gjhPDSAaO2nb4P&usg=AFQjCNFFRgsJiBWjKAMOHcGcRL_vkkSqLg&sig2=aYWddXJdXsNNIFQ5U4zoqg Design of an Adaptive Cache Coherence Protocol for Large Scale Multiprocessors]
 
*[http://www.lfbs.rwth-aachen.de/content/smi Shared Memory Interface]
 
<references></references>

Revision as of 22:08, 20 March 2013

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 we have multiple caches on multiple processors. When an update to a single cache makes changes to a shared memory, you will need to have all the caches be coherent on the value change. This is better shown below.


Multiple Caches of Shared Resource
Figure 1. Multiple Caches of Shared Resource


According to <ref name="glasco">Glasco, D.B.; Delagi, B.A.; Flynn, M.J.; , "Update-based cache coherence protocols for scalable shared-memory multiprocessors," System Sciences, 1994. Proceedings of the Twenty-Seventh Hawaii International Conference on , vol.1, no., pp.534-545, 4-7 Jan. 1994 doi: 10.1109/HICSS.1994.323135 Paper</ref> there are two ways to maintain cache consistency. These are invalidation and update. The difference is that invalidation will "... purges the copies of the line from the other caches which results in a single copy of the line, and updating forwards the write value to the other caches, after which all caches are consistent"<ref name="glasco"></ref>. Since we have already talked about invalidation protocols, we will focus on update protocols. However, now there has been a new type of adaptive coherence protocols and that will also be discussed below.


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

Introduction

Update-based cache coherence protocols work by directly updating all the cache values in the system. This differs from the invalidation-based protocols because it achieves write propagation without having to invalidation and misses. This saves on numerous coherence misses, time spent to correct the miss, and bandwidth usage. The update-based protocols we will be discussing in this section are the Dragon Protocol and the Firefly protocol.

Dragon Protocol

The Dragon Protocol is an implementation of update-based coherence protocol. It further saves on bandwidth by updating the specific words within the cache instead of the entire block. The caches use write allocate and write update policies. The Dragon Protocol is made up of four states (Modified (M), Exclusive (E), Shared Modified (Sm), Shared Clean (Sc)) and does not include an invalidation state, because if the block is in cache it is valid.

  • Modified (M) - cache block is exclusively owned, however it can be different from main memory
  • Exclusive (E) - cache block is clean and is only in one cache
  • Shared Modified (Sm) - cache block resides in multiple caches and is possible dirty
  • Shared Clean (Sc) - cache block resides in multiple caches and is clean

There is not an invalidation state, because if a block is cached then it assumed to be valid. However, it can differ from main memory. Below are the finite state machines for the processor-side calls and bus-side calls. Dragon protocol utilizes snoopy caches to appear as if it as a uniform memory space even though there are multiple processors.

Figure 2. Dragon Protocol Processor-Side


Figure 3. Dragon Protocol Bus-Side

The Dragon Protocol is implemented in the Cray CS6400 (also know as the Xerox Dragon multiprocessor workstation) and was developed by Xerox in. It was available with either 60Mhz or 85Mhz processors. The Xerox Dragon was designed to be a research numerous processors

Firefly Protocol

Firefly protocol is another example of update coherence cache protocols. However, unlike the Dragon Protocol, it uses write-through policy (which writes all changes back to memory).

  • Valid Exclusive (VE) - cache block is exclusively owned, cache block is clean
  • Dirty (D) - exclusive rights to the cache block, cache block is dirty
  • Shared (S) - cache block is shared but is not modified

The Firefly Protocol uses a special bus technique called SharedLine to allow quick detection to copies of the block in other caches. It is similar to the COPIES_EXIST (C) and !COPIES_EXIST, and is shown that way in the finite state machines below. Similar to the Dragon protocol, there is no invalidation state because no cache blocks are ever invalidated.

Figure 4. Firefly Protocol Processor-Side


Figure 5. Firefly Protocol Bus-Side


The Firefly protocol is used in the DEC Firefly multiprocessor workstation, developed by Digital Equipment Corporation. The system is asymmetic and the cache is direct-mapped to support multiprocessing. The cache capicity was 16KB for the original MicroVAX 78032 microprocessor were latter increased to 64KB when upgraded to the CVAX_78034 microprocessor.

Adaptive Coherence Protocols

Introduction

Even though there are clear advantages to using either update protocols or invalidate protocols, there are still disadvantages for each. In a write invalidate protocol, any update/write operation in a processor invalidates the shared cache blocks of other processors. This will force the other caches to do read requests such that the new data is retrieved. This tends to cause a high bus bandwidth and can be especially bad if there is few processors that frequently update the cache. Fortunately, write update protocols mitigate this issue. It will update all other caches at the same time it propagates an update itself. Unfortunately, this creates a different problem, there will sometime be unnecessary update to the cache on the other processors. This tends to increase conflict and capacity cache misses.


Adaptive protocols tries to mitigate these problems. It will both tend to have some high bus traffic as well as some unnecessary updates. But, these can be mitigated based on how the adaptive algorithm switches between write-invalidate and write-update. There is also adaptive directory-based protocols, but these are not discussed here.

Competitive Update Protocol

A competitive-update protocol is a "..hybrid protocols between write-invalidate and write-update.."<ref name="nilsson"> H. Nilsson, P. Stenström "An adaptive update-based cache coherence protocol for reduction of miss rate and traffic" Proc. Parallel Architectures and Languages Europe (PARLE) Conf., Lecture Notes in Computer Science, Athens, Greece, 817, Springer-Verlag, Berlin (Jul. 1994), pp. 363–374 Paper</ref> These hybrid protocols are used to reduce the coherence miss rate caused by invalidation or update alone. The sole issue here is that there can be high traffic peeks and these peeks can offset the performance gain<ref name="nilsson"></ref> According to Nilsson in <ref name="nilsson2">H. Nilsson, P. Stenström, and M. Dubois, “Implementation and Evaluation of Update- Based Cache Protocols Under Relaxed Memory Consistency Models”, Technical Report, Dept. of Computer Engineering, Lund University, Sweden, July 1993</ref>, competitive-update protocols will outperform write-invalidate protocols under relaxed memory consistency. The concept presented is very simple. The first write to a block causes an update to the copy of the block. If instead the local processor does not access it, it will then propagate an invalidate. What this effectively does is make regularly accessed copies of the memory block be updated. The limitation here is that migratory data makes this protocol sub-optimal. The latest research done in this area is Competitive Update Protocol with Migratory Detection<ref name="nilsson"></ref>. This recognizes when there is migratory data and compensates.

Figure 6. Competitive Update Protocol With Migratory Detection<ref name="nilsson"></ref>
Coherence actions for detection of migratory blocks (left) and coherence actions for read misses to migratory blocks (right).


This is only one of many ways to deal with migratory data. For further reading, a Google Scholar search on "Adaptive Protocols and Migratory" will return many papers published on different ways to deal with migratory data issue that arises when using adaptive protocols.


Cachet

Cachet is an adaptive cache coherence protocol that uses micro-protocols <ref name="shen">Xiaowei Shen, Arvind, and Larry Rudolph. 1999. CACHET: an adaptive cache coherence protocol for distributed shared-memory systems. In Proceedings of the 13th international conference on Supercomputing (ICS '99). ACM, New York, NY, USA, 135-144. DOI=10.1145/305138.305187Paper</ref> Cachet recognizes that shared-memory programs have various access patterns and no fixed cache coherence protocol works well for all access patterns.<ref name="bennet">J. K. Bennett, J. B. Carter, and W. Zwaenepoel. Adaptive Software Cache Management for Distributed Shared Memory Architectures. In Proceedings of the 17th Annual International Symposium on Computer Architecture, May 1990</ref><ref name="eggers">S. Eggers and R. H. Katz. Evaluating the Performance for Four Snooping Cache Coherency Protocols. In Proceedings of the 16th Annual International Symposium on Computer Architecture, May 1989</ref><ref name="falsafi">B. Falsafi, A. R. Lebeck, S. K. Reinhardt, I. Schoinas, M. D. Hill, J. R. Larus, A. Rogers, and D. A. Wood. Application specific protocols for user-level shared memory. In Supercomputing, Nov. 1994</ref><ref name="weber">W. D. Weber and A. Gupta. Analysis of Cache Invalidation Patterns in Multiprocessors. In Proceedings of the 3rd International Conference on Architectural Support for Programming Languages and Operating Systems, 1989</ref>. What cachet attempts to do is either take in the access pattern through program annotations from the programmer or recognition by the compiler.


So how does it work?


"Cachet-Base: The most straightforward implementation simply uses the memory as the rendezvous. When a Commit instruction is executed for an address that is cached in the Dirty state, the data must be written back to the memory before the instruction can complete. A Reconcile instruction for an address cached in the Clean state requires the data be purged from the cache before the instruction can complete. An attractive characteristic of Cachet-Base is its simplicity; no state needs to be maintained at the memory side."<ref name=shen></ref>


Cachet-WriterPush: Since load operations are usually more frequent than store operations, it is desirable to allow a Reconcile instruction to complete even when the address is cached in the Clean state. Thus, the following load access to the address causes no cache miss. Correspondingly, when a Commit instruction is performed on a dirty cell, it cannot complete before clean copies of the address are purged from all other caches. Therefore, it can be a lengthy process to commit an address that is cached in the Dirty state."<ref name=shen></ref>


"Cachet-Migratory: When an address is exclusively accessed by one processor for a reasonable time period, it makes sense to give the cache the exclusive ownership so that all instructions on the address become local operations. This is reminiscent of the exclusive state in conventional MESI like protocols. The protocol ensures that an address can be cached in at most one cache at any time. Therefore, a Commit instruction can complete even when the address is cached in the Dirty state, and a Reconcile instruction can complete even when the address is cached in the Clean state. The exclusive ownership can migrate among different caches whenever necessary."<ref name=shen></ref>


"Different micro-protocols are optimized for different access patterns. Cachet-Base is ideal when the location is randomly accessed by multiple processors, and only necessary commit and reconcile operations are invoked. A conventional implementation of release consistency usually requires that all addresses be indistinguishably committed before a release, and reconciled after an acquire. Such excessive use of commit and reconcile operations can result in performance degradation under Cachet-Base."<ref name=shen></ref>


"Cachet-WriterPush is appropriate when certain processors are likely to read an address many times before another processor writes the address. A reconcile operation performed on a clean copy causes no purge operation, regardless of whether the reconcile is necessary. Thus, subsequent load operations to the address can continually use the cached data without causing any cache miss. Cachet Migratory fits well when one processor is likely to read and write an address many times before another processor accesses the address."<ref name=shen></ref>


What is so interesting about Cachet is its ability to switch between these mirco-protocols. This excerpt from the paper does the best of explaining it.

Power Considerations

A major issue when considering power is how many bus transaction are incurring over the bus. Different protocols require different bus transactions, so we are able to loosely demonstrate how much power is being utilized by each of the different techniques by comparing there bus transactions over the same read/write pattern. We will use the patterns found in Ch 8 of Solihin.

As you can see from the above spreadsheets the update-based protocols demonstrate beter power consumption in terms of bus transactions and memory access. The invalidation protocols require 6 bus transactions plus 4 memory access for the MSI protocol, as well as 5 bus transactions and 1 memory access for the MOESI protocol. This is higher compared to the Dragon protocol which only used 4 bus transactions and 1 memory access. By counting the number of bus transactions and memory access over the same procedure of processor calls we are able to put the different protocols on the same field and compare them. The Dragon protocol also requires less time on the bus because it is only passing modified words instead of whole cache blocks.


Unfortunately for adaptive protocols, we are unable to provide rough estimates. Most cases with competitive update and cachet, it depends on the problem itself. For example, bus traffic can vary in a competitive update. Competitive update does invalidates on non-regularly used cache blocks. This can vary between program to program. What make power estimates hard for adaptive protocols is the nature of being adaptive. Depending on the program involved, the performance/power used can vary drastically.

Quiz

Question 1 : What write protocol is used in the Dragon Protocol?

   a) write-permeate
   b) write-through
   c) write-back
   d) write-update

Question 2 : How does the Dragon Protocol save on bandwidth?

   a) does not have a invalid state and can not incur read/write misses
   b) consistently updates the memory
   c) updates specific words within cache instead of entire blocks
   d) only flushes the memory when in the exclusive state

Question 3 : How are the states different for Dragon protocol than MOESI protocol?

   a) The Dragon shared states can allow for copies to exist in multiple caches
   b) split up the share state into clean and modified
   c) Exclusive state in the Dragon protocol can be dirty
   d) The Modified state is exclusively owned in the MOESI protocol

Question 4 : Why do update-based protocols not require a invalidation state?

   a) because the it does not allow for an invalid block
   b) if the block is in the cache then it is valid
   c)  (a) and (c) are correct
   d) None of the above

Question 5 : Which of the following is NOT true of the states in the Firefly protocol?

   a) They states use the SharedLine technique to detect for copies of the cache
   b) Dirty has multiple modified cache blocks
   c) Shared allows for multiple copies of the cache block to exist
   d) Valid Exclusive allows for only one copy of the cache to be in the state

Question 6 : What are two adaptive protocols?

   a) Competitive Update
   b) Competitive Invalidate
   c) Cachet
   d) Roulette

Question 7 : Competitive Update Protocol uses what protocol(s) as its basis?

   a) Update
   b) Invalidate
   c) Both (a) and (b)
   d) None of the above

Question 8 : What is the major drawback for adaptive protocols?

   a) Write-Updates
   b) Write-Invalidates
   c) Overall Hardware Limitations
   d) Migratory Data

Question 9 : What is not a sub-protocol of Cachet?

   a) Cachet-Base
   b) Cachet-WriterPush
   c) Cachet-ReadPush
   d) Cachet-Migratory

Question 10 : What is the basis for Cachet protocol?

   a) It switches between update and invalidate
   b) It switches between three sub-protocols
   c) It switches between update and competitive update protocols
   d) It switches between invalidate and competitive update protocols

References

<references />