design and evaluation of scalable concurrent queues for
play

Design and Evaluation of Scalable Concurrent Queues for Many-Core - PowerPoint PPT Presentation

Design and Evaluation of Scalable Concurrent Queues for Many-Core Architectures ICPE 2015 February 2 nd , 2015 Thomas R. W. Scogland, Wu-chun Feng LLNL-PRES-666776 This work was performed under the auspices of the U.S. Department of Energy by


  1. Design and Evaluation of Scalable Concurrent Queues for Many-Core Architectures ICPE 2015 February 2 nd , 2015 Thomas R. W. Scogland, Wu-chun Feng LLNL-PRES-666776 This work was performed under the auspices of the U.S. Department of Energy by Lawrence Livermore National Laboratory under Contract DE-AC52-07NA27344. Lawrence Livermore National Security, LLC

  2. Why another concurrent queue? Lawrence Livermore National Laboratory 3 LLNL-PRES-666776

  3. Heterogeneity and many-core are a fact of life in modern computing Lawrence Livermore National Laboratory 4 LLNL-PRES-666776

  4. Everything from cell phones By Zach Vega (Own work) [CC BY-SA 3.0 (http://creativecommons.org/licenses/by-sa/3.0)], via Wikimedia Commons Lawrence Livermore National Laboratory 5 LLNL-PRES-666776

  5. To supercomputers Lawrence Livermore National Laboratory 6 Image Courtesy of Oak Ridge National Laboratory, U.S. Dept. of Energy LLNL-PRES-666776

  6. Why not existing lock-free queues? ! Traditional lock-free queues focus on progress over throughput ! Perfect for over-subscribed systems, but they do not scale Four Opteron 6134 CPUs One NVIDIA K20c GPU 2500 2500 Operations per millisecond Operations per millisecond 2000 2000 1500 1500 1000 1000 500 500 0 0 3 3 6 6 9 9 12 12 15 15 18 18 21 21 24 24 27 27 30 30 11 83 155 227 299 371 443 515 587 659 731 803 7 " Independent threads Independent threads Lawrence Livermore National Laboratory 7 LLNL-PRES-666776

  7. Outline ! Definitions and abstractions ! Building blocks: Evaluating atomic operations ! Queue types and modeling ! Our queue design ! Performance evaluation ! Conclusions Lawrence Livermore National Laboratory 8 LLNL-PRES-666776

  8. Definitions: What is a “thread”? ! Work-item: The basic unit of work in OpenCL • Groups of work-items execute in lock-step • Work-items are not threads ! Thread: An independently schedulable entity • An OS thread on CPUs • In OpenCL, defined as a group of work-items of size “PREFERRED_WORK_GROUP_SIZE_MULTIPLE” Lawrence Livermore National Laboratory 9 LLNL-PRES-666776

  9. Abstractions ! All operations defined in terms of atomics ! On CPU: • Add: Atomic Fetch-and-add (FAA) • Read: Normal load • Write: Normal store • CAS: Atomic Compare and Swap ! On OpenCL: • Add: Atomic Fetch-and-add (FAA) • Read: Atomic Fetch-and-add 0, or atomic_read, or regular read after flush if available • Write: Atomic exchange • CAS: Atomic Compare and Swap Lawrence Livermore National Laboratory 10 LLNL-PRES-666776

  10. Experimental Setup: Hardware: CPUs Device Num. Cores/ Threads/ Max. Max. devices device core threads achieved AMD Opteron 6134 4 8 1 32 32 AMD Opteron 6272 2 16 1 32 32 Intel Xeon E5405 2 4 1 8 8 Intel Xeon X5680 1 12 2 24 24 Intel Core i5-3400 1 4 1 4 4 Lawrence Livermore National Laboratory 11 LLNL-PRES-666776

  11. Experimental Setup: Hardware: GPUs/Co-processors Device Num. Cores/ Threads/ Max. Max. devices device core threads achieved AMD HD5870 1 20 24 496 140 AMD HD7970 1 32 40 1280 386 AMD HD7990 1 (of 2 dies) 32 40 1280 1020 Intel Xeon Phi 1 61 4 244 244 P1750 NVIDIA GTX 280 1 30 32 960 960 NVIDIA Tesla 1 14 32 448 448 C2070 NVIDIA Tesla K20c 1 13 64 832 832 Lawrence Livermore National Laboratory 12 LLNL-PRES-666776

  12. Experimental setup: Software ! Debian Wheezy Linux 64-bit kernel version 3.2 ! NVIDIA driver v. 313.3 with CUDA SDK 5.0 ! AMD fglrx driver v. 9.1.11 and APP SDK v. 2.8 ! Intel Xeon Phi driver MPSS gold 3 ! CPU and Phi OpenMP use Intel ICC v. 13.0.1 Lawrence Livermore National Laboratory 13 LLNL-PRES-666776

  13. Experimental setup: Detecting the real number of threads void test(unsigned *num_threads, unsigned *present){ if(atomic_read(num_threads) != 0) Check if kernel is complete return; atomic_fetch_and_add(present,1); Increment number of threads, returns TID run_benchmark(); atomic_compare_and_swap(num_threads, 0, atomic_read(present)); } Set kernel complete Lawrence Livermore National Laboratory 14 LLNL-PRES-666776

  14. Outline ! Definitions, abstractions and experimental setup ! Building blocks: Evaluating atomic operations ! Queue types and modeling ! Our queue design ! Performance evaluation ! Conclusions Lawrence Livermore National Laboratory 15 LLNL-PRES-666776

  15. Atomic performance test kernel void cas_test (__global unsigned * in, __global unsigned * out, unsigned iterations){ ! const unsigned tid = (get_local_id( 1 )*get_local_size( 0 )) + get_local_id( 0 ); ! const unsigned gid = (get_group_id( 1 )*get_local_size( 0 )) + get_group_id( 0 ); ! __local unsigned success; ! unsigned my_success = 0 ; ! ! if (tid == 0 ){ ! unsigned prev = 0 ; ! for ( size_t i= 0 ; i < iterations; ++i){ ! prev = atomic_add(in, 0 ); ! my_success += atomic_cmpxchg(in,prev,prev+ 1 ) == prev ? 1 : 0 ; ! } ! out[gid] = my_success; ! } ! } Lawrence Livermore National Laboratory 16 LLNL-PRES-666776

  16. Atomic operation performance Operation Attempted CAS ● FAA READ Successful CAS WRITE XCHG Throughput in million operations per second Throughput in million operations per second Acc., AMD HD7970 CPU, 2 − AMD Opteron 6272s Acc., NVIDIA Tesla K20c Acc., Intel Xeon Phi 80 ● ● 80 ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● 50 ● ● 4 600 15 750 90 60 40 60 ● 3 ● ● ● ● ● ● ● ● ● CAS: 1,478/ms 400 500 10 30 FAA: 859,524/ms 40 40 60 2 Successful CAS rate FAA is 581 times faster ● ● ● ● ● ● ● ● ● ● ● Other atomic operations decreases with number of 20 scale up with the thread 200 250 5 threads! count 20 1 20 30 10 ● 0 0 0 0 0 0 0 200 400 600 25 10 20 30 300 0 200 400 600 50 100 150 200 Concurrent threads Independent threads 17 " Lawrence Livermore National Laboratory 17 For more architectures, see the paper LLNL-PRES-666776

  17. Outline ! Definitions and abstractions ! Building blocks: Evaluating atomic operations ! Queue types and modeling ! Our queue design ! Performance evaluation ! Conclusions Lawrence Livermore National Laboratory 18 LLNL-PRES-666776

  18. General modeling of queues ! All concurrent queues require either: • Locks, or • Atomic operations ! Model result: Throughput (T) for a given number of threads (t) ! Terms, average latency of constituent atomics: • Read: r • Write: w • Successful contended CAS: c • Attempted CAS: C Lawrence Livermore National Laboratory 19 LLNL-PRES-666776

  19. Queue types ! Contended CAS 2 T t = ( ) + ( r t + w t + c t ) • MS queue and TZ queue r t × 2 + c t ! Un-contended CAS 1 T t = • LCRQ ( ) a t + r t + C t ! Combining 2 T t = • FC queue ( ) + ( r 1 × 2 + w 1 ) r 1 + w 1 × 2 ! FAA or blocking array 2 T t = • CB queue and our queue ( ) + ( a t + w t × 2) a t + r t + w t Lawrence Livermore National Laboratory 20 LLNL-PRES-666776

  20. Modeled queue throughput Throughput in million operations per second Operation Combining queue ● Contended CAS queue FAA queue Un − Contended CAS queue 2x Opteron 6272 Intel Xeon Phi NVIDIA K20c AMD HD7970 Acc., AMD HD7970 18 300 20 20 Combining queue 5 30 Throughput in million operations per second performance is independent 200 200 15 of thread count 4 15 15 200 25 150 150 Un-contended-CAS and 12 ● FAA queues scale with 3 Contended-CAS queue additional threads 100 100 performance degrades as 20 10 10 9 threads increase 100 2 ● ● 50 50 ● 6 15 ● ● ● ● ● ● ● ● ● ● 1 ● 5 5 ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● 0 0 25 10 20 30 50 100 150 200 0 200 400 600 0 200 400 600 25 " Concurrent threads Independent threads Lawrence Livermore National Laboratory 25 For more architectures, see the paper LLNL-PRES-666776

  21. Outline ! Definitions and abstractions ! Building blocks: Evaluating atomic operations ! Queue types and modeling ! Our queue design ! Performance evaluation ! Conclusions Lawrence Livermore National Laboratory 26 LLNL-PRES-666776

  22. Our queue design: Goals ! Scale well on many-core architectures • Avoid contended CAS! ! Maintain Linearizability and FIFO ordering ! Allow the status of the queue to be inspected Lawrence Livermore National Laboratory 27 LLNL-PRES-666776

  23. Our queue design: Solution, divide the interfaces ! Blocking interface: The fast, concurrent interface • enqueue(q, data) -> success or closed • dequeue(q, &data) -> success or closed ! Non-waiting interface: • enqueue_nw(q, data) -> success, not_ready or closed • dequeue_nw(q, &data) -> success, not_ready or closed ! Status inspection interface • distance(q) -> the distance between head and tail, corrected for rollover • waiting_enqueuers(q) -> number of enqueuers blocking • waiting_dequeuers(q) -> number of dequeuers blocking • is_full(q) -> true if full, else false • is_empty(q) -> true if empty, else false Lawrence Livermore National Laboratory 29 LLNL-PRES-666776

  24. Our queue’s blocking behavior: Enqueue example: Get targets with FAA Head Tail 0 3 Thread 1 Thread 2 Thread 3 4 0 5 0 6 0 Value array 3 2 1 0 0 0 0 0 0 0 0 0 Slot array 1 1 1 0 0 0 0 0 0 0 0 0 31 " Lawrence Livermore National Laboratory 31 LLNL-PRES-666776

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend