L21: Putting it together: Tree Search (Ch. 6)

Slides:



Advertisements
Similar presentations
The University of Adelaide, School of Computer Science
Advertisements

1 Copyright © 2010, Elsevier Inc. All rights Reserved Chapter 1 Why Parallel Computing? An Introduction to Parallel Programming Peter Pacheco.
OpenMP Optimization National Supercomputing Service Swiss National Supercomputing Center.
Practical techniques & Examples
Chapter 8-1 : Multiple Processor Systems Multiple Processor Systems Multiple Processor Systems Multiprocessor Hardware Multiprocessor Hardware UMA Multiprocessors.
CS 484. Discrete Optimization Problems A discrete optimization problem can be expressed as (S, f) S is the set of all feasible solutions f is the cost.
1 Chapter 1 Why Parallel Computing? An Introduction to Parallel Programming Peter Pacheco.
Lecture 11 CSS314 Parallel Computing
Reference: Message Passing Fundamentals.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Parallel Programming in C with MPI and OpenMP Michael J. Quinn.
Parallel Programming Models and Paradigms
MAE 552 – Heuristic Optimization Lecture 26 April 1, 2002 Topic:Branch and Bound.
Efficient Parallelization for AMR MHD Multiphysics Calculations Implementation in AstroBEAR.
Computer Organization and Architecture
CS 584. Discrete Optimization Problems A discrete optimization problem can be expressed as (S, f) S is the set of all feasible solutions f is the cost.
L20: Putting it together: Tree Search (Ch. 6) November 29, 2011.
10/04/2011CS4961 CS4961 Parallel Programming Lecture 12: Advanced Synchronization (Pthreads) Mary Hall October 4, 2011.
Multi-core Programming Thread Profiler. 2 Tuning Threaded Code: Intel® Thread Profiler for Explicit Threads Topics Look at Intel® Thread Profiler features.
L15: Putting it together: N-body (Ch. 6) October 30, 2012.
CSCI-455/552 Introduction to High Performance Computing Lecture 18.
Parallel Programming Models Jihad El-Sana These slides are based on the book: Introduction to Parallel Computing, Blaise Barney, Lawrence Livermore National.
Load Balancing and Termination Detection Load balance : - statically before the execution of any processes - dynamic during the execution of the processes.
Designing and Evaluating Parallel Programs Anda Iamnitchi Federated Distributed Systems Fall 2006 Textbook (on line): Designing and Building Parallel Programs.
Chapter 3 Parallel Algorithm Design. Outline Task/channel model Task/channel model Algorithm design methodology Algorithm design methodology Case studies.
OpenMP OpenMP A.Klypin Shared memory and OpenMP Simple Example Threads Dependencies Directives Handling Common blocks Synchronization Improving load balance.
Real-Time Systems Design1 Priority Inversion When a low-priority task blocks a higher-priority one, a priority inversion is said to occur Assume that priorities:
L21: Final Preparation and Course Retrospective (also very brief introduction to Map Reduce) December 1, 2011.
Chapter 3 Parallel Programming Models. Abstraction Machine Level – Looks at hardware, OS, buffers Architectural models – Looks at interconnection network,
Supercomputing ‘99 Parallelization of a Dynamic Unstructured Application using Three Leading Paradigms Leonid Oliker NERSC Lawrence Berkeley National Laboratory.
Parallel graph algorithms Antonio-Gabriel Sturzu, SCPD Adela Diana Almasi, SCPD Adela Diana Almasi, SCPD Iulia Alexandra Floroiu, ISI Iulia Alexandra Floroiu,
10/02/2012CS4230 CS4230 Parallel Programming Lecture 11: Breaking Dependences and Task Parallel Algorithms Mary Hall October 2,
Memory Consistency Models. Outline Review of multi-threaded program execution on uniprocessor Need for memory consistency models Sequential consistency.
Lecture 4 TTH 03:30AM-04:45PM Dr. Jianjun Hu CSCE569 Parallel Computing University of South Carolina Department of.
Lecture 5 Barriers and MPI Introduction Topics Barriers Uses implementations MPI Introduction Readings – Semaphore handout dropboxed January 24, 2012 CSCE.
9/22/2011CS4961 CS4961 Parallel Programming Lecture 9: Task Parallelism in OpenMP Mary Hall September 22,
CS 584. Discrete Optimization Problems A discrete optimization problem can be expressed as (S, f) S is the set of all feasible solutions f is the cost.
L19: Putting it together: N-body (Ch. 6) November 22, 2011.
A Pattern Language for Parallel Programming Beverly Sanders University of Florida.
3/12/2013Computer Engg, IIT(BHU)1 OpenMP-1. OpenMP is a portable, multiprocessing API for shared memory computers OpenMP is not a “language” Instead,
SMP Basics KeyStone Training Multicore Applications Literature Number: SPRPxxx 1.
1/50 University of Turkish Aeronautical Association Computer Engineering Department Ceng 541 Introduction to Parallel Computing Dr. Tansel Dökeroğlu
Tuning Threaded Code with Intel® Parallel Amplifier.
Pitfalls: Time Dependent Behaviors CS433 Spring 2001 Laxmikant Kale.
Auburn University
Hard Problems Some problems are hard to solve.
Parallel Graph Algorithms
Distributed Shared Memory
Memory Consistency Models
Parallel Programming By J. H. Wang May 2, 2017.
Auburn University COMP7330/7336 Advanced Parallel and Distributed Computing Mapping Techniques Dr. Xiao Qin Auburn University.
Memory Consistency Models
Computer Engg, IIT(BHU)
The University of Adelaide, School of Computer Science
Parallel Algorithm Design
Routing: Distance Vector Algorithm
Amir Kamil and Katherine Yelick
Parallel Programming in C with MPI and OpenMP
EE 193: Parallel Computing
MODERN OPERATING SYSTEMS Third Edition ANDREW S
Chapter 9: Virtual-Memory Management
May 19 Lecture Outline Introduce MPI functionality
Background and Motivation
Dr. Tansel Dökeroğlu University of Turkish Aeronautical Association Computer Engineering Department Ceng 442 Introduction to Parallel.
Concurrency: Mutual Exclusion and Process Synchronization
Amir Kamil and Katherine Yelick
Adaptivity and Dynamic Load Balancing
CS333 Intro to Operating Systems
Chapter 01: Introduction
Parallel Programming in C with MPI and OpenMP
COMP755 Advanced Operating Systems
Presentation transcript:

L21: Putting it together: Tree Search (Ch. 6) November 20, 2012

Administrative CUDA project due Wednesday, Nov. 28 Poster dry run on Dec. 4, final presentations on Dec. 6 Optional final report (4-6 pages) due on Dec. 14 can be used to improve your project grade if you need that

Outline Poster information SC Followup: Student Cluster Competition Chapter 6 shows two algorithms (N-body and Tree Search) written in the three programming models (OpenMP, Pthreads, MPI) How to approach parallelization of an entire algorithm (Foster’s methodology is used in the book) What do you have to worry about that is different for each programming model?

Overview Previously we talked about solving n-body problems. “Regular” computation on a grid Parallelization relatively straightforward through standard data and computation partitioning Modest concerns about load imbalance This lecture on Tree Search (specifically, single- source shortest path) “Irregular” amount of work associated with a node or path varies Graph may be represented by dense or sparse adjacency matrix (sparse adjacency matrix is also irregular) Impact on implementation Load balancing? Dynamic scheduling? Termination Collecting result plus path, synchronization

Tree search problem An NP-complete problem. No known solution to TSP that is better in all cases than exhaustive search. Ex., the travelling salesperson problem, finding a minimum cost tour. (Also called single-source shortest path) Copyright © 2010, Elsevier Inc. All rights Reserved

A Four-City TSP 0 is root or single source. What is the shortest path? Copyright © 2010, Elsevier Inc. All rights Reserved

Pseudo-code for a recursive solution to TSP using depth-first search Copyright © 2010, Elsevier Inc. All rights Reserved

We’ll need to eliminate recursion Non-recursive implementation is more flexible Shared data structures Freedom to schedule threads/processes flexibly How to eliminate recursion Explicit management of “stack” data structure Loop instead of recursive calls

Pseudo-code for a second solution to TSP that doesn’t use recursion (two solutions in text) Termination and find best solution Can this city be added: on path? new to path? shorter than existing paths? Copyright © 2010, Elsevier Inc. All rights Reserved

Global variable – stores “best_tour” How to know whether global “best tour” value is better? Guarantee that any writes will be performed atomically Textbook suggests reading it without locking Value may be slightly out of date, but just increases work slightly since value is monotonically decreasing Cost of synchronizing read not worth it If the process’s value is not as good, not updated

Making sure we have the “best tour” In the case where a thread tests and decides it has a better global solution, we need to ensure two things: 1) That the process locks the value with a mutex, preventing a race condition. 2) In the possible event that the first check was against an old value while another process was updating, we do not put a worse value than the new one that was being written. We handle this by locking, then testing again. Copyright © 2010, Elsevier Inc. All rights Reserved

First scenario global tour value process y process x local tour value 27 30 22 22 27 3. test 1. test 6. lock 2. lock 7. test again 4. update 8. update 5. unlock 9. unlock Copyright © 2010, Elsevier Inc. All rights Reserved

Second scenario global tour value process y process x local tour value 30 27 29 27 3. test 1. test 6. lock 2. lock 7. test again 4. update 8. unlock 5. unlock Copyright © 2010, Elsevier Inc. All rights Reserved

Pseudo-code for a Pthreads implementation of a statically parallelized solution to TSP Master thread does static partitioning using breadth-first search Thread operates on its private stack Needs mutex (next slides) Copyright © 2010, Elsevier Inc. All rights Reserved

A Careful Look at Load Imbalance Load imbalance very likely The master thread is partitioning the work Some expensive paths will be pruned early What to do? Schedule some work statically and some dynamically for under-utilized processors Minimize cost of moving work This could be done a lot smarter than it is Challenges: Which processes are available to take on more work? When does execution terminate?

Dynamic Parallelization of Tree Search Using Pthreads Termination issues. Code executed by a thread before it splits: It checks that it has at least two tours in its stack. It checks that there are threads waiting. It checks whether the new_stack variable is NULL. Copyright © 2010, Elsevier Inc. All rights Reserved

Pseudo-Code for Pthreads Terminated Function Do I have extra work, and are there idle threads? Wake up an idle thread Termination test Copyright © 2010, Elsevier Inc. All rights Reserved

Pseudo-Code for Pthreads Terminated Function, cont. Idle thread gets new work Copyright © 2010, Elsevier Inc. All rights Reserved

Grouping the termination variables Copyright © 2010, Elsevier Inc. All rights Reserved

Parallelizing the Tree Search Programs Using OpenMP Same basic issues implementing the static and dynamic parallel tree search programs as Pthreads. A few small changes can be noted. Pthreads OpenMP Copyright © 2010, Elsevier Inc. All rights Reserved

Other OpenMP changes Use a critical section instead of a mutex to guard selection of “best tour”, but similar “optimistic” synchronization Need a different construct for conditional wait (not clean) Next slide, but more in textbook to select particular idle thread Requires auxiliary stack of idle threads to select “awakened_thread”

OpenMP emulated condition wait Copyright © 2010, Elsevier Inc. All rights Reserved

MPI is similar Static and dynamic partitioning schemes Maintaining “best_tour” requires global synchronization, could be costly May be relaxed a little to improve efficiency Alternatively, some different communication constructs can be used to make this more asynchronous and less costly MPI_Iprobe checks for available message rather than actually receiving MPI_Bsend and other forms of send allow aggregating results of communication asynchronously

Sending a different number of objects to each process in the communicator to distribute initial stack Copyright © 2010, Elsevier Inc. All rights Reserved

Gathering a different number of objects from each process in the communicator Copyright © 2010, Elsevier Inc. All rights Reserved

Checking to see if a message is available Copyright © 2010, Elsevier Inc. All rights Reserved

Terminated Function for a Dynamically Partitioned TSP solver that Uses MPI. Copyright © 2010, Elsevier Inc. All rights Reserved

Printing the best tour Copyright © 2010, Elsevier Inc. All rights Reserved

Terminated Function for a Dynamically Partitioned TSP solver with MPI (1) Copyright © 2010, Elsevier Inc. All rights Reserved

Terminated Function for a Dynamically Partitioned TSP solver with MPI (2) Copyright © 2010, Elsevier Inc. All rights Reserved

Packing data into a buffer of contiguous memory Copyright © 2010, Elsevier Inc. All rights Reserved

Unpacking data from a buffer of contiguous memory Copyright © 2010, Elsevier Inc. All rights Reserved

Summary of Lecture This “tree search” is the hardest parallel programming challenge we have studied Load imbalance leads to the need for dynamic scheduling, which in turn leads to termination challenges requiring elaborate synchronization and communication This may be too hard for an efficient OpenMP implementation and is also challenging for MPI We did not even talk about locality! This chapter is dense, but getting through it is worth it It shows REAL parallel programming and the need for elaborate language constructs Other “irregular” algorithms are even more difficult