1 / 30

Accelerating Critical Section Execution with Asymmetric Multi-Core Architectures

Accelerating Critical Section Execution with Asymmetric Multi-Core Architectures. M. Aater Suleman* Onur Mutlu † Moinuddin K. Qureshi ‡ Yale N. Patt*. *The University of Texas at Austin. †Carnegie Mellon University. ‡IBM Research. Background. To leverage CMPs:

verda
Télécharger la présentation

Accelerating Critical Section Execution with Asymmetric Multi-Core Architectures

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Accelerating Critical Section Executionwith Asymmetric Multi-Core Architectures M. Aater Suleman* Onur Mutlu† Moinuddin K. Qureshi‡ Yale N. Patt* *The University of Texas at Austin †Carnegie Mellon University ‡IBM Research

  2. Background • To leverage CMPs: • Programs must be split into threads • Mutual Exclusion: • Threads are not allowed to update shared data concurrently • Accesses to shared data are encapsulated inside critical sections • Only onethread can execute a critical section at a given time

  3. Example of Critical Section from MySQL List of Open Tables E A C D B × × Thread 0 × Thread 1 × × Thread 2 × × Thread 3 Thread 3: OpenTables(D, E) Thread 2: CloseAllTables()

  4. Example Critical Section from MySQL A B C D E 0 0 1 2 2 3 3

  5. Example Critical Section from MySQL LOCK_openAcquire() LOCK_openRelease() End of Transaction: foreach (table opened by thread) if (table.temporary) table.close()

  6. Contention for Critical Sections t1 t2 t3 t4 t5 t6 t7 Critical Section Parallel Thread 1 Thread 2 Thread 3 Thread 4 Idle Accelerating critical sections not only helps the thread executing the critical sections, but also the waiting threads t1 t2 t3 t4 t5 t6 t7 Thread 1 Thread 2 Thread 3 Thread 4 Critical Sections execute 2x faster

  7. Impact of Critical Sections on Scalability • Contention for critical sections increases with the number of threads and limits scalability Speedup Chip Area (cores) MySQL (oltp-1)

  8. Outline • Background • Mechanism • Performance Trade-Offs • Evaluation • Related Work and Summary

  9. The Asymmetric Chip Multiprocessor (ACMP) Large core ACMP Approach Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore • Provide one large core and many small cores • Execute parallel part on small cores for high throughput • Accelerate serial part using the large core

  10. Conventional ACMP • P2 encounters a Critical Section • Sends a request for the lock • Acquires the lock • Executes Critical Section • Releases the lock • EnterCS() • PriorityQ.insert(…) • LeaveCS() P1 Core executing critical section P2 P3 P4 On-chip Interconnect

  11. Accelerating Critical Sections (ACS) Large core ACMP Approach Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Critical SectionRequest Buffer (CSRB) • Accelerate Amdahl’s serial part and critical sections using the large core

  12. Accelerated Critical Sections (ACS) 1. P2 encounters a Critical Section 2. P2 sends CSCALL Request to CSRB 3. P1 executes Critical Section 4. P1 sends CSDONE signal • EnterCS() • PriorityQ.insert(…) • LeaveCS() P1 Core executing critical section P2 P3 P4 Critical SectionRequest Buffer (CSRB) Onchip-Interconnect

  13. Architecture Overview • ISA extensions • CSCALL LOCK_ADDR, TARGET_PC • CSRET LOCK_ADDR • Compiler/Library inserts CSCALL/CSRET • On a CSCALL, the small core: • Sends a CSCALL request to the large core • Arguments: Lock address, Target PC, Stack Pointer, Core ID • Stalls and waits for CSDONE • Large Core • Critical Section Request Buffer (CSRB) • Executes the critical section and sends CSDONE to the requesting core

  14. False Serialization • ACS can serialize independent critical sections • Selective Acceleration of Critical Sections (SEL) • Saturating counters to track false serialization To large core CSCALL (A) 4 3 2 Critical Section Request Buffer(CSRB) A CSCALL (A) 4 5 B CSCALL (B) From small cores

  15. Outline • Background • Mechanism • Performance Trade-Offs • Evaluation • Related Work and Summary

  16. Performance Tradeoffs • Fewer threads vs. accelerated critical sections • Accelerating critical sections offsets loss in throughput • As the number of cores (threads) on chip increase: • Fractional loss in parallel performance decreases • Increased contention for critical sections makes acceleration more beneficial • Overhead of CSCALL/CSDONE vs. better lock locality • ACS avoids “ping-ponging” of locks among caches by keeping them at the large core • More cache misses for private data vs. fewer misses for shared data

  17. Cache misses for private data PriorityHeap.insert(NewSubProblems) Shared Data: The priority heap Private Data: NewSubProblems Puzzle Benchmark

  18. Performance Tradeoffs • Fewer threads vs. accelerated critical sections • Accelerating critical sections offsets loss in throughput • As the number of cores (threads) on chip increase: • Fractional loss in parallel performance decreases • Increased contention for critical sections makes acceleration more beneficial • Overhead of CSCALL/CSDONE vs. better lock locality • ACS avoids “ping-ponging” of locks among caches by keeping them at the large core • More cache misses for private data vs. fewer misses for shared data • Cache misses reduce if shared data > private data

  19. Outline • Background • Mechanism • Performance Trade-Offs • Evaluation • Related Work and Summary

  20. Experimental Methodology Large core Large core ACS ACMP SCMP Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore Niagara-likecore • One large core (area-equal 4 small cores) • Conventional locking • ACMP with a CSRB • Accelerates Critical Sections • All small cores • Conventional locking

  21. Experimental Methodology Workloads 12 critical section intensive applications from various domains 7 use coarse-grain locks and 5 use fine-grain locks Simulation parameters: x86 cycle accurate processor simulator Large core: Similar to Pentium-M with 2-way SMT. 2GHz, out-of-order, 128-entry ROB, 4-wide issue, 12-stage Small core: Similar to Pentium 1, 2GHz, in-order, 2-wide issue, 5-stage Private 32 KB L1, private 256KB L2, 8MB shared L3 On-chip interconnect: Bi-directional ring

  22. Workloads with Coarse-Grain Locks Equal-area comparisonNumber of threads = Best threads Chip Area = 16 coresSCMP = 16 small coresACMP/ACS = 1 large and 12 small cores Chip Area = 32 small coresSCMP = 32 small coresACMP/ACS = 1 large and 28 small cores 210 150 210 150

  23. Workloads with Fine-Grain Locks Equal-area comparisonNumber of threads = Best threads Chip Area = 16 coresSCMP = 16 small coresACMP/ACS = 1 large and 12 small cores Chip Area = 32 small coresSCMP = 32 small coresACMP/ACS = 1 large and 28 small cores

  24. Equal-Area Comparisons ------ SCMP ------ ACMP ------ ACS Number of threads = No. of cores (a) ep (b) is (c) pagemine (d) puzzle (e) qsort (f) tsp Speedup over a small core (g) sqlite (h) iplookup (i) oltp-1 (i) oltp-2 (k) specjbb (l) webcache Chip Area (small cores)

  25. ACS on Symmetric CMP Majority of benefit is from large core

  26. Outline • Background • Mechanism • Performance Trade-Offs • Evaluation • Related Work and Summary

  27. Related Work • Improving locality of shared data by thread migration and software prefetching (Sridharan+, Trancoso+, Ranganathan+) ACS not only improves locality but also uses a large core to accelerate critical section execution • Asymmetric CMPs (Morad+, Kumar+, Suleman+, Hill+) ACS not only accelerates the Amdahl’s bottleneck but also critical sections • Remote procedure calls (Birrell+) ACS is for critical sections among shared memory cores

  28. Hiding Latency of Critical Sections • Transactional memory (Herlihy+) ACS does not require code modification • Transactional Lock Removal (Rajwar+) and Speculative Synchronization (Martinez+) • Hide critical section latency by increasing concurrency ACS reduces latency of each critical section • Overlaps execution of critical sections with no data conflicts ACS accelerates ALL critical sections • Does not improve locality of shared data ACS improves locality of shared data ACS outperforms TLR (Rajwar+) by 18% (details in paper)

  29. Conclusion • Critical sections reduce performance and limit scalability • Accelerate critical sections by executing them on a powerful core • ACS reduces average execution time by: • 34% compared to an equal-area SCMP • 23% compared to an equal-area ACMP • ACS improves scalability of 7 of the 12 workloads

  30. Accelerating Critical Section Executionwith Asymmetric Multi-Core Architectures M. Aater Suleman* Onur Mutlu† Moinuddin K. Qureshi‡ Yale N. Patt* *The University of Texas at Austin †Carnegie Mellon University ‡IBM Research

More Related