(C) Ph. Tsigas © Ph. Tsigas Algorithm Engineering of Parallel Algorithms and Parallel Data Structures Philippas Tsigas
(C) Ph. Tsigas © Ph. Tsigas NOBLE A Library of Non-Blocking Concurrent Data Structures Philippas Tsigas Results jointly with: Håkan Sundell and Yi Zhang
(C) Ph. Tsigas Overview Introduction Synchronization Non-blocking Synchronization Is Non-blocking Synchronization performance- beneficial for Parallel Applications? NOBLE: A Non-blocking Synchronization Interface. How can we make non-blocking synchronization accessible to the parallel programmer? Lock-free Skip lists Conclusions, Future Work
(C) Ph. Tsigas Systems: SMP Cache-coherent distributed shared memory multiprocessor systems: UMA NUMA
(C) Ph. Tsigas Synchronization Barriers Locks, semaphores,… (mutual exclusion) “A significant part of the work performed by today’s parallel applications is spent on synchronization.”...
(C) Ph. Tsigas Lock-Based Synchronization: Sequential
(C) Ph. Tsigas Non-blocking Synchronization Lock-Free Synchronization Optimistic approach Assumes it’s alone and prepares operation which later takes place (unless interfered) in one atomic step, using hardware atomic primitives Interference is detected via shared memory Retries until not interfered by other operations Can cause starvation
(C) Ph. Tsigas type Qtype = record v: valtype; next: pointer to Qtype end shared var Tail: pointer to Qtype; local var old, new: pointer to Qtype procedure Enqueue (input: valtype) new := (input, NIL); repeat old := Tail until CAS2(&Tail, &(old->next), old, NIL, new, new) type Qtype = record v: valtype; next: pointer to Qtype end shared var Tail: pointer to Qtype; local var old, new: pointer to Qtype procedure Enqueue (input: valtype) new := (input, NIL); repeat old := Tail until CAS2(&Tail, &(old->next), old, NIL, new, new) Example: Shared Queue Tail old Tail old new The usual approach is to implement operations using retry loops. Here’s an example: Slide provided by Jim Anderson
(C) Ph. Tsigas Non-blocking Synchronization Lock-Free Synchronization Avoids problems that locks have Fast Starvation? (not in the Context of HPC) Wait-Free Synchronization Always finishes in a finite number of its own steps. Complex algorithms Memory consuming Less efficient on average than lock-free
(C) Ph. Tsigas Overview Introduction Synchronization Non-blocking Synchronization Is Non-blocking Synchronization performance- beneficial for Parallel Scientific Applications? NOBLE: A Non-blocking Synchronization Interface. How can we make non-blocking synchronization accessible to the parallel programmer? Conclusions, Future Work
(C) Ph. Tsigas Non-blocking Synchronisation Synchronisation: An alternative approach for synchronisation introduced 25 years ago Many theoretical results Evaluation: Micro-benchmarks shows better performance than mutual exclusion in real or simulated multiprocessor systems.
(C) Ph. Tsigas Practice Non-blocking synchronization is still not used in practical applications Non-blocking solutions are often complex having non-standard or un-clear interfaces non-practical ? ?
(C) Ph. Tsigas Practice Question? ”How the performance of parallel scientific applications is affected by the use of non-blocking synchronisation rather than lock-based one?” ? ? ?
(C) Ph. Tsigas Answers The identification of the basic locking operations that parallel programmers use in their applications. The efficient non-blocking implementation of these synchronisation operations. The architectural implications on the design of non-blocking synchronisation. Comparison of the lock-based and lock-free versions of the respective applications How the performance of parallel scientific applications is affected by the use of non- blocking synchronisation rather than lock- based one?
(C) Ph. Tsigas Applications Oceansimulates eddy currents in an ocean basin. Radiositycomputes the equilibrium distribution of light in a scene using the radiosity method. Volrendrenders 3D volume data into an image using a ray- casting method. WaterEvaluates forces and potentials that occur over time between water molecules. Spark98a collection of sparse matrix kernels. Each kernel performs a sequence of sparse matrix vector product operations using matrices that are derived from a family of three-dimensional finite element earthquake applications.
(C) Ph. Tsigas Removing Locks in Applications Many locks are “Simple Locks”. Many critical sections contain shared floating- point variables. Large critical sections. CAS, FAA and LL/SC can be used to implement non-blocking version. Floating-point synchronization primitives are needed. A Double- Fetch-and-Add primitive was designed. Efficient Non-blocking implementations of big ADT are used.
(C) Ph. Tsigas Experimental Results: Speedup 58P 32P 24P
(C) Ph. Tsigas SPARK98 Before: spark_setlock(lockid); w[col][0] += A[Anext][0][0]*v[i][0] + A[Anext][1][0]*v[i][1] + A[Anext][2][0]*v[i][2]; w[col][1] += A[Anext][0][1]*v[i][0] + A[Anext][1][1]*v[i][1] + A[Anext][2][1]*v[i][2]; w[col][2] += A[Anext][0][2]*v[i][0] + A[Anext][1][2]*v[i][1] + A[Anext][2][2]*v[i][2]; spark_unsetlock(lockid); After: dfad(&w[col][0], A[Anext][0][0]*v[i][0] + A[Anext][1][0]*v[i][1] + A[Anext][2][0]*v[i][2]); dfad(&w[col][1], A[Anext][0][1]*v[i][0] + A[Anext][1][1]*v[i][1] + A[Anext][2][1]*v[i][2]); dfad(&w[col][2], A[Anext][0][2]*v[i][0] + A[Anext][1][2]*v[i][1] + A[Anext][2][2]*v[i][2]);
(C) Ph. Tsigas Overview Introduction Synchronization Non-blocking Synchronization Is Non-blocking Synchronization beneficial for Parallel Scientific Applications? NOBLE: A Non-blocking Synchronization Interface. How can we make non-blocking synchronization accessible to the parallel programmer? Conclusions, Future Work
(C) Ph. Tsigas Practice Non-blocking synchronization is still not used in practical applications Non-blocking solutions are often complex having non-standard or un-clear interfaces non-practical ? ?
(C) Ph. Tsigas Create a non-blocking inter-process communication interface with the properties: Attractive functionality Programmer friendly Easy to adapt existing solutions Efficient Portable Adaptable for different programming languages NOBLE: Brings Non-blocking closer to Practice
(C) Ph. Tsigas NOBLE Design: Portable #define NBL... Noble.h #include “Platform/Primitives.h” … QueueLF.c #include “Platform/Primitives.h” … StackLF.c CAS, TAS, Spin-Locks … SunHardware.asm CAS, TAS, Spin-Locks... IntelHardware.asm... Platform dependent Platform in-dependent Exported definitions Identical for all platforms
(C) Ph. Tsigas Using NOBLE stack=NBLStackCreateLF(10000);... Main NBLStackPush(stack, item); or item=NBLStackPop(stack); Threads #include... NBLStack* stack; Globals First create a global variable handling the shared data object, for example a stack: Create the stack with the appropriate implementation: When some thread wants to do some operation:
(C) Ph. Tsigas Using NOBLE When the data structure is not in use anymore: stack=NBLStackCreateLF(10000);... NBLStackFree(stack); Main #include... NBLStack* stack; Globals
(C) Ph. Tsigas Using NOBLE stack=NBLStackCreateLB();... NBLStackFree(stack); Main NBLStackPush(stack, item); or item=NBLStackPop(stack); Threads #include... NBLStack* stack; Globals To change the synchronization mechanism, only one line of code has to be changed!
(C) Ph. Tsigas Design: Attractive functionality Data structures for multi-threaded usage FIFO Queues Priority Queues Dictionaries Stacks Singly linked lists Snapshots MWCAS... Clear specifications
(C) Ph. Tsigas Status Multiprocessor support Sun Solaris (Sparc) Win32 (Intel x86) SGI (Mips) Linux (Intel x86) Availiable for academic use:
(C) Ph. Tsigas Did our Work have any Impact? 1) Industry has initialized contacts and uses a test version of NOBLE. 2) Free-ware developers has showed interest. 3) Interest from research organisations. NOBLE is freely availiable for research and educational purposes.
(C) Ph. Tsigas A Lock-Free Skip list Best Paper Award H. Sundell, Ph. Tsigas Fast and Lock-Free Concurrent Priority Queues for Multi-Thread Systems. 17th IEEE/ACM International Parallel and Distributed Processing Symposium (IPDPS ´03), May 2003 (TR 2002). Best Paper Award A very similar skip list algorithm will be presented this August at the ACM Symposium on Principles of Distributed Computing (PODC 2004): ”Lock-Free Linked Lists and Skip Lists” Mikhail Fomitchev, Eric Ruppert
(C) Ph. Tsigas Randomized Algorithm: Skip Lists William Pugh: ”Skip Lists: A Probabilistic Alternative to Balanced Trees”, 1990 Layers of ordered lists with different densities, achieves a tree-like behavior Time complexity: O(log 2 N) – probabilistic! HeadTail 50% 25% …
(C) Ph. Tsigas Our Lock-Free Concurrent Skip List Define node state to depend on the insertion status at lowest level as well as a deletion flag Insert from lowest level going upwards Set deletion flag. Delete from highest level going downwards DDDDDDD p p D
(C) Ph. Tsigas Concurrent Insert vs. Delete operations Problem: - both nodes are deleted! Solution (Harris et al): Use bit 0 of pointer to mark deletion status Delete Insert a) b) * a) b) c)
(C) Ph. Tsigas Dynamic Memory Management Problem: System memory allocation functionality is blocking! Solution (lock-free), IBM freelists: Pre-allocate a number of nodes, link them into a dynamic stack structure, and allocate/reclaim using CAS HeadMem 1Mem 2Mem n … Used 1 Reclaim Allocate
(C) Ph. Tsigas The ABA problem Problem: Because of concurrency (pre-emption in particular), same pointer value does not always mean same node (i.e. CAS succeeds)!!! Step 1: Step 2:
(C) Ph. Tsigas The ABA problem Solution: (Valois et al) Add reference counting to each node, in order to prevent nodes that are of interest to some thread to be reclaimed until all threads have left the node 1*6* ??? 1 CAS Failes! New Step 2:
(C) Ph. Tsigas Helping Scheme Threads need to traverse safely Need to remove marked-to-be-deleted nodes while traversing – Help! Finds previous node, finish deletion and continues traversing from previous node 1 42* 1 42* or ? ? 1 42*
(C) Ph. Tsigas Overlapping operations on shared data Example: Insert operation - which of 2 or 3 gets inserted? Solution: Compare-And-Swap atomic primitive: CAS(p:pointer to word, old:word, new:word):boolean atomic do if *p = old then *p := new; return true; else return false; Insert 3 Insert 2
(C) Ph. Tsigas Experiments 1-30 threads on platforms with different levels of real concurrency Insert vs. DeleteMin operations by each thread. 100 vs initial inserts Compare with other implementations: Lotan and Shavit, 2000 Hunt et al “An Efficient Algorithm for Concurrent Priority Queue Heaps”, 1996
(C) Ph. Tsigas Full Concurrency
(C) Ph. Tsigas Medium Pre-emption
(C) Ph. Tsigas High Pre-emption
(C) Ph. Tsigas Lessons Learned The Non-Blocking Synchronization Paradigm can be suitable and beneficial to large scale parallel applications. Experimental Reproducable Work. Many results claimed by simulation are not consistent with what we observed. Applications gave us nice problems to look at and do theoretical work on. (IPDPS 2003 Algorithmic Best Paper Award) NOBLE helped programmers to trust our implementations.
(C) Ph. Tsigas Future Work Extend NOBLE for loosely coupled systems. Extend the set of data structures supported by NOBLE based on the needs of the applications. Reactive-Synchronisation
Questions? Contact Information: Address: Philippas Tsigas Computing Science Chalmers University of Technology cs.chalmers.se Web:
(C) Ph. Tsigas Pointers: NOBLENOBLE: A Non-Blocking Inter-Process Communication Library. ACM Workshop on Languages, Compilers, and Run-time Systems for Scalable Computers (LCR ´02). Evaluating The Performance of Non-Blocking Synchronization on Shared Memory Multiprocessors. ACM SIGMETRICS 2001/Performance2001 Joint International Conference on Measurement and Modeling of Computer Systems (SIGMETRICS 2001). Integrating Non-blocking Synchronization in Parallel Applications: Performance Advantages and Methodologies. ACM Workshop on Software and Performance (WOSP ´01). A Simple, Fast and Scalable Non-Blocking Concurrent FIFO queue for Shared Memory Multiprocessor Systems, ACM Symposium on Parallel Algorithms and Architectures (SPAA ´01). Fast and Lock-Free Concurrent Priority Queues for Multi-Thread Systems. 17th IEEE/ACM International Parallel and Distributed Processing Symposium (IPDPS ´03). Fast, Reactive and Lock-free Multi-word Compare-and-swap Algorithms. 12th EEE/ACM International Conference on Parallel Architectures and Compilation Techniques (PACT ´03) Scalable and Lock-free Cuncurrent Dictionaries. Proceedings of the 19th ACM Symposium on Applied Computing (SAC ’04).