28
CS 515: Parallel Algorithms Chandrima Sarkar Atanu Roy 2010 - 02 -17

CS 515: Parallel Algorithms

  • Upload
    flynn

  • View
    65

  • Download
    1

Embed Size (px)

DESCRIPTION

2010 - 02 -17. CS 515: Parallel Algorithms. Chandrima Sarkar Atanu Roy. Agenda. Architecture Parallel Programming Languages Precedence Graph Elementary Parallel Algorithms Sorting Matrix Multiplication Download :- http://www.cs.montana.edu/~atanu.roy/Classes/CS515.html. Architecture. - PowerPoint PPT Presentation

Citation preview

Page 1: CS 515: Parallel Algorithms

CS 515: Parallel Algorithms

Chandrima SarkarAtanu Roy

2010 - 02 -17

Page 2: CS 515: Parallel Algorithms

Agenda

• Architecture• Parallel Programming Languages• Precedence Graph• Elementary Parallel Algorithms• Sorting• Matrix MultiplicationDownload :-

http://www.cs.montana.edu/~atanu.roy/Classes/CS515.html

Page 3: CS 515: Parallel Algorithms

Architecture Flynn’s Classification

S = single , M = multiple , I = instruction (stream), D = data (stream)

SISD SIMD

Page 4: CS 515: Parallel Algorithms

Architecture Flynn’s Classification

S = single , M = multiple , I = instruction (stream), D = data (stream)

MISD MIMD

Page 5: CS 515: Parallel Algorithms

Static Inter-connection NetworkLinear Array

Ring

Ring arranged to use short wires

Fully Connected Topology Chordal ring

Page 6: CS 515: Parallel Algorithms

Multidimensional Meshes and Torus

Tree

Page 7: CS 515: Parallel Algorithms

Tree Cont.

FAT TREE

STAR

Page 8: CS 515: Parallel Algorithms

Hypercube

1-D 2-D 3-D 4-D001 011

000 010

100 110

111101

0-D

5-D

Page 9: CS 515: Parallel Algorithms

Parallel Programming LanguagesControl Mechanism Communication Mechanism

Shared Memory Message-passing

Control driven Fortran 90/HPF , C++ , HEP PL/I , Ada , Concurrent Pascal Modula-2 , MultiLisp (MIMD), Lisp Connection Machine (SIMD)

CSP , Ada , OCCAM (Von Neumann Language Extension )

Data driven VAL , ID LAU , SISAL ( data-flow languages )

Pattern driven Concurrent Prolog ( Shapiro )

Actors

Demand driven ( reduction language )

FP

Page 10: CS 515: Parallel Algorithms

Dijkstra’s High Level language construct

• Degree of Parallelism is static Algol-68,CSP

A parbegin C begin B parbegin D

E parend G end parend H

Precendence Graph

Page 11: CS 515: Parallel Algorithms

Elementary Parallel AlgorithmsFinding sum using a 2D mesh architecture

Page 12: CS 515: Parallel Algorithms

Finding sum of 16 values in a Shuffle Exchange SIMD Model

Page 13: CS 515: Parallel Algorithms

Parallel summation in a Hypercube SIMD Model

Page 14: CS 515: Parallel Algorithms

Broadcast in a HypercubeAlgorithm 1

Algorithm 2

Page 15: CS 515: Parallel Algorithms

Odd Even Transposition Sort• (1) p = n

• 14 – 5 – 15 – 8 – 4 – 11 – 13 – 12• odd-even 14 5 – 15 8 – 4 11 – 13 12• even-odd 14 – 5 15 – 4 8 – 11 13 – 12• odd-even 5 14 – 4 15 – 8 11 – 12 13• even-odd 5 – 4 14 – 8 15 – 11 12 – 13• odd-even 4 5 – 8 14 – 11 15 – 12 13• even-odd 4 – 5 8 – 11 14 – 12 15 – 13 • odd-even 4 5 – 8 11 – 12 14 – 13 15• even-odd 4 – 5 8 – 11 12 – 13 14 – 15

Page 16: CS 515: Parallel Algorithms

Odd Even Transposition Sort (contd…)

• (2) p << n• S= {12, 7, 2, 4, 1, 11, 9, 5, 6, 3, 10, 8}, p = 4

P1 P2 P3 P4

{12, 7, 2} {4, 1, 11} {9, 5, 6} {3, 10, 8}

{2, 7, 12} {1, 4, 11} {5, 6, 9} {3, 8, 10}

{1, 2, 4} {7, 11, 12} {3, 5, 6} {8, 9, 10}

{1, 2, 4} {3, 5, 6} {7, 11, 12} {8, 9, 10}

{1, 2, 3} {4, 5, 6} {7, 8, 9} {10, 11, 12}

{1, 2, 3} {4, 5, 6} {7, 8, 9} {10, 11, 12}

Page 17: CS 515: Parallel Algorithms

Pseudocode• Proc MERGE-SPLIT(S)

for i:= 1 to p do in parallelQUICKSORT(Si)

end forfor (i := 1 to ceil(p/2))

for odd-numbered processor do in parallelMERGE(Si , Si + 1) SPLITend forfor odd-numbered processor do in parallelMERGE(Si , Si + 1) SPLITend for

end for

Page 18: CS 515: Parallel Algorithms

2 – D mesh with Snake Order

Input : {23, 6, 1, 5, 11, 13, 55, 19, -3, 12, -5, -7, 9, 55, 28, -2}

Thompson and Kung (1977)

Page 19: CS 515: Parallel Algorithms

Snake Order (contd.)

Page 20: CS 515: Parallel Algorithms

Bitonic Merge Sort

• Bitonic Sequence :- 1, 3, 7, 8 6, 5, 4, 2

• Comparator

• Note :- Batcher’s Bitonic Merge Sort compares elements whose indices differ by a single bit.

+ -

Page 21: CS 515: Parallel Algorithms

Bitonic Merge Sort

Page 22: CS 515: Parallel Algorithms

Shuffle-Exchange NetworkBitonic Mergesort on Shuffle-Exchange Network

• A list of n = 2k unsorted elements can be sorted in time θ(lg2 n) with a network 2k-1[k (k-1) + 1] comparators using the shuffle-exchange network.

Page 23: CS 515: Parallel Algorithms

Sorting Network

Page 24: CS 515: Parallel Algorithms
Page 25: CS 515: Parallel Algorithms

Odd Even Merging Network

Page 26: CS 515: Parallel Algorithms

Systolic Matrix Multiplication1. Multiply ai,k by ak,j

2. Add the result to ri,j

3. Send ai,k to cell ci+1,j

4. Send bk,j to cell ci,j+1

Page 27: CS 515: Parallel Algorithms
Page 28: CS 515: Parallel Algorithms

Home Work

• Show how the following 16 values would be sorted by Batcher’s Bitonic sort.

16, 7, 4, 12, 2, 10, 13, 9, 1, 8, 11, 3, 15, 6, 5, 14