SlideShare uma empresa Scribd logo
1 de 12
Baixar para ler offline
11/9/2016 Centralized Shared­Memory Architectures
http://ece­research.unm.edu/jimp/611/slides/chap8_2.html 1/12
Centralized Shared­Memory Architectures
The use of large multilevel caches can substantially reduce
memory bandwidth demands of a processor.
 
This has made it possible for several (micro)processors to
share the same memory through a shared bus.
 
Caching supports both private and shared data.
For private data, once cached, it's treatment is
identical to that of a uniprocessor.
For shared data, the shared value may be replicated
in many caches.
 
Replication has several advantages:
Reduced latency and memory bandwidth requirements.
Reduced contention for data items that are read by multiple
processors simultaneously.
 
However, it also introduces a problem: Cache coherence .
Cache Coherence
With multiple caches, one CPU can modify memory at
locations that other CPUs have cached.
 
For example:
CPU A reads location x, getting the value N .
Later, CPU B reads the same location, getting the value N .
Next, CPU A writes location x with the value N ­ 1 .
At this point, any reads from CPU B will get the value N , while
reads from CPU A will get the value N ­ 1 .
 
11/9/2016 Centralized Shared­Memory Architectures
http://ece­research.unm.edu/jimp/611/slides/chap8_2.html 2/12
This problem occurs both with write­through caches and (more
seriously) with write­back caches.
 
Cache coherence : informal definition:
A memory system is coherent if any read of a data
item returns the most recently written value of that
data item.
 
Upon closer inspection, there are several aspects that need to
be addressed.
Cache Coherence
Coherence defines what values can be returned by a read.
 
A memory system is coherent if:
Read after write works for a single processor.
If CPU A writes N to location X, all future reads of
location X will return N if no other processor writes
location X after CPU A.
 
Other processors' writes eventually propagate.
If CPU A writes value N to location X, CPU B will
eventually be able to read value N from location X.
 
Once it does so, it will continue to read value N until
location X is written again.
 
This is our intuitive notion of a coherent view of
memory.
Cache Coherence
11/9/2016 Centralized Shared­Memory Architectures
http://ece­research.unm.edu/jimp/611/slides/chap8_2.html 3/12
Writes to a single location are serialized.
If CPUs A and B both write to location X, all
processors see the same order of the writes.
 
This does not mean that all reads must return the
same value.
If value N1 is written "first" to location X,
followed closely by reads of X and a write of
X with value N2, some reads may return N1
and some N2.
 
However, a processor that reads N2 will
return N2 for all future reads.
 
Consistency :
This indicates when a modification to memory is seen
by other processors (i.e. will be returned by a read).
 
Clearly, this can NOT be "instantaneous" since it may
be that the new value has not even left the processor
when a read occurs.
Cache Coherence
Consistency :
The issue of when a written value MUST be seen by a
reader is defined by a memory consistency model.
 
For now, let's assume that a write is not complete
until all processors have "seen" the effect of the
write.
 
11/9/2016 Centralized Shared­Memory Architectures
http://ece­research.unm.edu/jimp/611/slides/chap8_2.html 4/12
Also, assume that a processor may not reorder
memory accesses to move reads before an
outstanding write.
Reads can be reordered, but reads and writes
can not be interchanged.
 
Coherent caches provide both:
Replication of shared data items (reduces latency and contention).
Here, the purpose is to provide multiple copies of data
so that several processors can access a single piece
of memory without serialization.
 
Migration of data items (reduces latency).
Data items are moved from one processor to another
as needed.
Cache­Coherence Protocols
Small­scale multiprocessor use hardware mechanisms to track
the state of data blocks that are shared.
 
Two classes of protocols:
Directory based.
The sharing status of a block of physical memory is
kept in one location (the directory).
 
Snooping.
The sharing status is distributed and kept with the
block in each cache.
 
The caches are usually on a shared memory bus.
The cache controllers snoop the bus to watch
for transactions that occur on data blocks
11/9/2016 Centralized Shared­Memory Architectures
http://ece­research.unm.edu/jimp/611/slides/chap8_2.html 5/12
that they hold.
Bus Snooping Protocols
Write invalidate.
It is the most common protocol, both for snooping and
for directory schemes.
 
The basic idea behind this protocol is that writes to a
location invalidate other caches' copies of the block.
Reads by other processors on invalidated data
cause cache misses.
 
If two processors write at the same time, one
wins and obtains exclusive access.
Processor
activity
Bus
activity
Contents of
CPU A's
cache
Contents of
CPU B's
cache
Contents of
mem
location X
CPU A
reads X
Cache
miss
0   0
CPU B
reads X
Cache
miss
0 0 0
CPU A
writes 1
Invalidate 1   0
CPU B
reads X
Cache
miss
1 1 1
This example assumes a write­back cache.
Bus Snooping Protocols
Write broadcast (write update).
An alternative is to update all cached copies of the
data item when it is written.
 
11/9/2016 Centralized Shared­Memory Architectures
http://ece­research.unm.edu/jimp/611/slides/chap8_2.html 6/12
To reduce bandwidth requirements, this protocol keeps
track of whether or not a word in the cache is shared.
If not, no broadcast is necessary.
Processor
activity
Bus
activity
Contents of
CPU A's
cache
Contents of
CPU B's
cache
Contents of
mem
location X
CPU A
reads X
Cache
miss
0   0
CPU B
reads X
Cache
miss
0 0 0
CPU A
writes 1
Broadcast 1 1 1
CPU B
reads X
  1 1 1
This example also assumes a write­back
cache.
Performance Differences between Bus Snooping Protocols
Write invalidate is much more popular.
 
This is due primarily to the performance differences.
Multiple writes to the same word with no intervening reads require
multiple broadcasts.
With multiword cache blocks, each word written requires a
broadcast.
For write invalidate, the first word written
invalidates.
Also write invalidate works on blocks , while write
broadcast must work on individual words or bytes.
The delay between writing by one processor and reading by another
is lower in the write broadcast scheme.
For write invalidate, the read causes a miss.
 
11/9/2016 Centralized Shared­Memory Architectures
http://ece­research.unm.edu/jimp/611/slides/chap8_2.html 7/12
Since bus and memory bandwidth are more important in a bus­
based multiprocessor, write invalidation performs better.
 
Therefore, we focus on implementation of the write invalidate
protocol.
Implementation of Write Invalidate Protocols
Write invalidate is simple in bus­based schemes.
Acquire the bus and broadcast the address to be
invalidated.
 
Since all processors snoop the bus, they can check the address
against items in their cache.
 
Bus acquisition also serializes write operations to the same
memory location.
Writes to a shared data item cannot complete until the
bus is acquired.
 
What about locating a data item when a cache miss occurs ?
For write­through , it's in memory.
For write­back , snooping can be used.
If a processor finds that it has a dirty copy of
the requested cache block, it provides the
block instead of memory.
 
Note, write­back caches are greatly preferred in a
multiprocessor environment since they reduce memory
bandwidth.
Implementation of Write Invalidate Protocol on Write­Back caches.
Writes are the issue here.
11/9/2016 Centralized Shared­Memory Architectures
http://ece­research.unm.edu/jimp/611/slides/chap8_2.html 8/12
 
We would like to know if any other caches contain the block to
be written by a processor.
If there are none, then the write need not be placed on
the bus.
This reduces the time to complete the write and
reduces memory bandwidth.
 
This can be tracked by adding an extra state bit (in addition to
the valid and dirty bits) that indicates if the block is shared.
 
If the bit is set (the block is shared), the cache
generates an invalidation on the bus and marks the
block as private.
 
If another processor later requests the block, the miss
is snooped and the "owner" sets the state bit to
shared.
Implementation of Write Invalidate Protocol on Write­Back caches.
Note that every bus transaction checks cache­address tags.
This could potentially interfere with CPU cache
access.
 
This interference can be reduced by:
Duplicating the tags.
Bus access can proceed in parallel with CPU access.
 
On misses, the processor must arbitrate for and
update both sets of tags.
The same is true for the snoop (to perform an
invalidate or to update the shared bit).
11/9/2016 Centralized Shared­Memory Architectures
http://ece­research.unm.edu/jimp/611/slides/chap8_2.html 9/12
 
However, a snoop may require fetching a block.
This is the only instance that may cause a
stall.
Implementation of Write Invalidate Protocol on Write­Back caches.
Employing a multilevel cache with inclusion.
Every entry in L1 is in L2.
Therefore, snooping can be directed to L2,
where there are fewer processor accesses.
 
If a snoop gets a hit, then it must arbitrate for L1 to
update state and possibly retrieve data.
This usually stalls the processor.
 
Since it is popular to use multi­level caches in
multiprocessors (to reduce memory bandwidth), this
solution is usually adopted.
 
It is also possible to duplicate the tags in L2 to further
reduce contention.
An Example Centralized Shared­Memory Snooping Protocol
Implemented by incorporating a finite state controller in each
node.
 
The controller responds to requests from the processor and
bus: 
To simplify the controller, write hits and write misses to shared
blocks are treated as write misses.
Request Source Function
Read hit Processor Read data in cache.
11/9/2016 Centralized Shared­Memory Architectures
http://ece­research.unm.edu/jimp/611/slides/chap8_2.html 10/12
Write
hit
Processor Write data in cache.
Read
miss
Bus Request data from cache or memory.
Write
miss
Bus
Request data from cache or memory (perform
any needed invalidates).
This causes processors with copies to invalidate them.
An Example Centralized Shared­Memory Snooping Protocol
Write invalidation and a write­back cache assumed:
An Example Centralized Shared­Memory Snooping Protocol
These state transitions have no analog in a uniprocessor cache
controller.
11/9/2016 Centralized Shared­Memory Architectures
http://ece­research.unm.edu/jimp/611/slides/chap8_2.html 11/12
An Example Centralized Shared­Memory Snooping Protocol
Complications we have ignored:
Assumes that operations are atomic .
In reality, a write miss is not atomic ­­ just too much
work to do.
Also, read misses on a split transaction bus are not
atomic.
Nonatomic actions introduce the possibility that the protocol can
deadlock .
See Appendix E for a fix.
 
Two major simplifications:
Real protocols distinguish between write hits and write misses.
From the shared state, a write miss would require the
action shown previously.
However, a write hit does not require that the data be
fetched since it is up­to­date.
All that is needed is an invalidate operation.
Real protocols distinguish between shared and clean data in exactly
one cache.
11/9/2016 Centralized Shared­Memory Architectures
http://ece­research.unm.edu/jimp/611/slides/chap8_2.html 12/12
A "clean and private" state eliminates the need to
generate a bus transaction on a write to a "clean and
private" block.

Mais conteúdo relacionado

Mais procurados

Cache performance considerations
Cache performance considerationsCache performance considerations
Cache performance considerations
Slideshare
 

Mais procurados (20)

OS Memory Management
OS Memory ManagementOS Memory Management
OS Memory Management
 
Multiprocessor Architecture (Advanced computer architecture)
Multiprocessor Architecture  (Advanced computer architecture)Multiprocessor Architecture  (Advanced computer architecture)
Multiprocessor Architecture (Advanced computer architecture)
 
Disk scheduling
Disk schedulingDisk scheduling
Disk scheduling
 
Multiprocessor
MultiprocessorMultiprocessor
Multiprocessor
 
CS9222 Advanced Operating System
CS9222 Advanced Operating SystemCS9222 Advanced Operating System
CS9222 Advanced Operating System
 
Distributed database management system
Distributed database management  systemDistributed database management  system
Distributed database management system
 
Multithreading
MultithreadingMultithreading
Multithreading
 
Allocation of Frames & Thrashing
Allocation of Frames & ThrashingAllocation of Frames & Thrashing
Allocation of Frames & Thrashing
 
Memory Management in OS
Memory Management in OSMemory Management in OS
Memory Management in OS
 
Introduction to Distributed System
Introduction to Distributed SystemIntroduction to Distributed System
Introduction to Distributed System
 
Parallel processing
Parallel processingParallel processing
Parallel processing
 
Cache performance considerations
Cache performance considerationsCache performance considerations
Cache performance considerations
 
Multiplexing in mobile computing
Multiplexing in mobile computingMultiplexing in mobile computing
Multiplexing in mobile computing
 
8. mutual exclusion in Distributed Operating Systems
8. mutual exclusion in Distributed Operating Systems8. mutual exclusion in Distributed Operating Systems
8. mutual exclusion in Distributed Operating Systems
 
Communication primitives
Communication primitivesCommunication primitives
Communication primitives
 
Applications of paralleL processing
Applications of paralleL processingApplications of paralleL processing
Applications of paralleL processing
 
Multiprocessor Systems
Multiprocessor SystemsMultiprocessor Systems
Multiprocessor Systems
 
Distributed database
Distributed databaseDistributed database
Distributed database
 
Extensible hashing
Extensible hashingExtensible hashing
Extensible hashing
 
Paging and Segmentation in Operating System
Paging and Segmentation in Operating SystemPaging and Segmentation in Operating System
Paging and Segmentation in Operating System
 

Semelhante a Centralized shared memory architectures

Lecture 6
Lecture  6Lecture  6
Lecture 6
Mr SMAK
 
Lecture 6
Lecture  6Lecture  6
Lecture 6
Mr SMAK
 
Lecture 6
Lecture  6Lecture  6
Lecture 6
Mr SMAK
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
ssuser5c9d4b1
 

Semelhante a Centralized shared memory architectures (20)

ADVANCED COMPUTER ARCHITECTURE AND PARALLEL PROCESSING
ADVANCED COMPUTER ARCHITECTUREAND PARALLEL PROCESSINGADVANCED COMPUTER ARCHITECTUREAND PARALLEL PROCESSING
ADVANCED COMPUTER ARCHITECTURE AND PARALLEL PROCESSING
 
Cache memory
Cache memoryCache memory
Cache memory
 
Multiprocessor
MultiprocessorMultiprocessor
Multiprocessor
 
Bus Based Multiprocessors v2
Bus Based Multiprocessors v2Bus Based Multiprocessors v2
Bus Based Multiprocessors v2
 
Lecture2
Lecture2Lecture2
Lecture2
 
Lecture 6
Lecture  6Lecture  6
Lecture 6
 
Lecture 6
Lecture  6Lecture  6
Lecture 6
 
Lecture 6
Lecture  6Lecture  6
Lecture 6
 
Week5
Week5Week5
Week5
 
NUMA
NUMANUMA
NUMA
 
IS 139 Lecture 7
IS 139 Lecture 7IS 139 Lecture 7
IS 139 Lecture 7
 
Memory interleaving and superscalar processor
Memory interleaving and superscalar processorMemory interleaving and superscalar processor
Memory interleaving and superscalar processor
 
Memory consistency models
Memory consistency modelsMemory consistency models
Memory consistency models
 
Ijiret archana-kv-increasing-memory-performance-using-cache-optimizations-in-...
Ijiret archana-kv-increasing-memory-performance-using-cache-optimizations-in-...Ijiret archana-kv-increasing-memory-performance-using-cache-optimizations-in-...
Ijiret archana-kv-increasing-memory-performance-using-cache-optimizations-in-...
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Multiprocessor Scheduling
Multiprocessor SchedulingMultiprocessor Scheduling
Multiprocessor Scheduling
 
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONSMULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
 
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONSMULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
MULTI-CORE PROCESSORS: CONCEPTS AND IMPLEMENTATIONS
 
Cache Coherence.pptx
Cache Coherence.pptxCache Coherence.pptx
Cache Coherence.pptx
 
Cache memory
Cache memoryCache memory
Cache memory
 

Mais de Gokuldhev mony (6)

Bar plots.ipynb colaboratory
Bar plots.ipynb   colaboratoryBar plots.ipynb   colaboratory
Bar plots.ipynb colaboratory
 
Lecture no 2 resource sharing
Lecture no 2 resource sharingLecture no 2 resource sharing
Lecture no 2 resource sharing
 
Flowerpollination 141114212025-conversion-gate02 (1)
Flowerpollination 141114212025-conversion-gate02 (1)Flowerpollination 141114212025-conversion-gate02 (1)
Flowerpollination 141114212025-conversion-gate02 (1)
 
Introduction to embedded c
Introduction to embedded cIntroduction to embedded c
Introduction to embedded c
 
Wireless sensor networks
Wireless sensor networksWireless sensor networks
Wireless sensor networks
 
Important hr questions
Important hr questionsImportant hr questions
Important hr questions
 

Último

Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Christo Ananth
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Christo Ananth
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
Tonystark477637
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
ankushspencer015
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 

Último (20)

(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 

Centralized shared memory architectures