Parallel Programming in C with MPI Sorting.ppt_第1页
Parallel Programming in C with MPI Sorting.ppt_第2页
Parallel Programming in C with MPI Sorting.ppt_第3页
Parallel Programming in C with MPI Sorting.ppt_第4页
Parallel Programming in C with MPI Sorting.ppt_第5页
已阅读5页,还剩45页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、Parallel Programmingin C with MPI and OpenMP,Michael J. Quinn,Chapter 14,Sorting,Outline,Sorting problem Sequential quicksort Parallel quicksort Hyperquicksort Parallel sorting by regular sampling,Sorting Problem,Permute: unordered sequence ordered sequence Typically key (value being sorted) is part

2、 of record with additional values (satellite data) Most parallel sorts designed for theoretical parallel models: not practical Our focus: internal sorts based on comparison of keys,Sequential Quicksort,17,14,65,4,22,63,11,Unordered list of values,Sequential Quicksort,17,14,65,4,22,63,11,Choose pivot

3、 value,Sequential Quicksort,17,14,65,4,22,63,11,Low list ( 17),High list ( 17),Sequential Quicksort,17,4,65,11,22,63,14,Recursively apply quicksort to low list,Sequential Quicksort,17,4,22,11,63,65,14,Recursively apply quicksort to high list,Sequential Quicksort,17,4,22,11,63,65,14,Sorted list of va

4、lues,Attributes of Sequential Quicksort,Average-case time complexity: (n log n) Worst-case time complexity: (n2) Occurs when low, high lists maximally unbalanced at every partitioning step Can make worst-case less probable by using sampling to choose pivot value Example: “Median of 3” technique,Quic

5、ksort Good Starting Point for Parallel Algorithm,Speed Generally recognized as fastest sort in average case Preferable to base parallel algorithm on fastest sequential algorithm Natural concurrency Recursive sorts of low, high lists can be done in parallel,Definitions of “Sorted”,Definition 1: Sorte

6、d list held in memory of a single processor Definition 2: Portion of list in every processors memory is sorted Value of last element on Pis list is less than or equal to value of first element on Pi+1s list We adopt Definition 2: Allows problem size to scale with number of processors,Parallel Quicks

7、ort,75, 91, 15, 64, 21, 8, 88, 54,50, 12, 47, 72, 65, 54, 66, 22,83, 66, 67, 0, 70, 98, 99, 82,20, 40, 89, 47, 19, 61, 86, 85,P0,P1,P2,P3,Parallel Quicksort,75, 91, 15, 64, 21, 8, 88, 54,50, 12, 47, 72, 65, 54, 66, 22,83, 66, 67, 0, 70, 98, 99, 82,20, 40, 89, 47, 19, 61, 86, 85,P0,P1,P2,P3,Process P

8、0 chooses and broadcasts randomly chosen pivot value,Parallel Quicksort,75, 91, 15, 64, 21, 8, 88, 54,50, 12, 47, 72, 65, 54, 66, 22,83, 66, 67, 0, 70, 98, 99, 82,20, 40, 89, 47, 19, 61, 86, 85,P0,P1,P2,P3,Exchange “lower half” and “upper half” values”,Parallel Quicksort,75, 15, 64, 21, 8, 54, 66, 6

9、7, 0, 70,50, 12, 47, 72, 65, 54, 66,22, 20, 40, 47, 19, 61,83, 98, 99, 82, 91, 88,89, 86, 85,P0,P1,P2,P3,After exchange step,Lower“half”,Upper “half”,Parallel Quicksort,75, 15, 64, 21, 8, 54, 66, 67, 0, 70,50, 12, 47, 72, 65, 54, 66,22, 20, 40, 47, 19, 61,83, 98, 99, 82, 91, 88,89, 86, 85,P0,P1,P2,P

10、3,Processes P0 and P2 choose and broadcast randomly chosen pivots,Lower“half”,Upper “half”,Parallel Quicksort,75, 15, 64, 21, 8, 54, 66, 67, 0, 70,50, 12, 47, 72, 65, 54, 66,22, 20, 40, 47, 19, 61,83, 98, 99, 82, 91, 88,89, 86, 85,P0,P1,P2,P3,Exchange values,Lower“half”,Upper “half”,Parallel Quickso

11、rt,15, 21, 8, 0, 12, 20, 19,50, 47, 72, 65, 54, 66, 22, 40, 47, 61, 75, 64, 54, 66, 67, 70,83, 82, 91, 88, 89, 86, 85,98, 99,P0,P1,P2,P3,Exchange values,Lower “half” of lower “half”,Lower “half” of upper “half”,Upper “half” of lower “half”,Upper “half” of upper “half”,Parallel Quicksort,0, 8, 12, 15

12、, 19, 20, 21,22, 40, 47, 47, 50, 54, 54, 61, 64, 65, 66, 66, 67, 70, 72, 75,82, 83, 85, 86, 88, 89, 91,98, 99,P0,P1,P2,P3,Each processor sorts values it controls,Lower “half” of lower “half”,Lower “half” of upper “half”,Upper “half” of lower “half”,Upper “half” of upper “half”,Analysis of Parallel Q

13、uicksort,Execution time dictated by when last process completes Algorithm likely to do a poor job balancing number of elements sorted by each process Cannot expect pivot value to be true median Can choose a better pivot value,Hyperquicksort,Start where parallel quicksort ends: each process sorts its

14、 sublist First “sortedness” condition is met To meet second, processes must still exchange values Process can use median of its sorted list as the pivot value This is much more likely to be close to the true median,Hyperquicksort,75, 91, 15, 64, 21, 8, 88, 54,50, 12, 47, 72, 65, 54, 66, 22,83, 66, 6

15、7, 0, 70, 98, 99, 82,20, 40, 89, 47, 19, 61, 86, 85,P0,P1,P2,P3,Number of processors is a power of 2,Hyperquicksort,8, 15, 21, 54, 64, 75, 88, 91,12, 22, 47, 50, 54, 65, 66, 72,0, 66, 67, 70, 82, 83, 98, 99,19, 20, 40, 47, 61, 85, 86, 89,P0,P1,P2,P3,Each process sorts values it controls,Hyperquickso

16、rt,8, 15, 21, 54, 64, 75, 91, 88,12, 22, 47, 50, 54, 65, 66, 72,0, 66, 67, 70, 82, 83, 98, 99,19, 20, 40, 47, 61, 85, 86, 89,P0,P1,P2,P3,Process P0 broadcasts its median value,Hyperquicksort,8, 15, 21, 54, 64, 75, 91, 88,12, 22, 47, 50, 54, 65, 66, 72,0, 66, 67, 70, 82, 83, 98, 99,19, 20, 40, 47, 61

17、, 85, 86, 89,P0,P1,P2,P3,Processes will exchange “low”, “high” lists,Hyperquicksort,0, 8, 15, 21, 54,12, 19, 20, 22, 40, 47, 47, 50, 54,64, 66, 67, 70, 75, 82, 83, 88, 91, 98, 99,61, 65, 66, 72, 85, 86, 89,P0,P1,P2,P3,Processes merge kept and received values.,Hyperquicksort,0, 8, 15, 21, 54,12, 19,

18、20, 22, 40, 47, 47, 50, 54,64, 66, 67, 70, 75, 82, 83, 88, 91, 98, 99,61, 65, 66, 72, 85, 86, 89,P0,P1,P2,P3,Processes P0 and P2 broadcast median values.,Hyperquicksort,0, 8, 15, 21, 54,12, 19, 20, 22, 40, 47, 47, 50, 54,64, 66, 67, 70, 75, 82, 83, 88, 91, 98, 99,61, 65, 66, 72, 85, 86, 89,P0,P1,P2,

19、P3,Communication pattern for second exchange,Hyperquicksort,0, 8, 12, 15,19, 20, 21, 22, 40, 47, 47, 50, 54, 54,61, 64, 65, 66, 66, 67, 70, 72, 75, 82,83, 85, 86, 88, 89, 91, 98, 99,P0,P1,P2,P3,After exchange-and-merge step,Complexity Analysis Assumptions,Average-case analysis Lists stay reasonably

20、balanced Communication time dominated by message transmission time, rather than message latency,Complexity Analysis,Initial quicksort step has time complexity (n/p) log (n/p) Total comparisons needed for log p merge steps: (n/p) log p) Total communication time for log p exchange steps: (n/p) log p),

21、Isoefficiency Analysis,Sequential time complexity: (n log n) Parallel overhead: (n log p) Isoefficiency relation:n log n C n log p log n C log p n pC The value of C determines the scalability. Scalability depends on ratio of communication speed to computation speed.,Another Scalability Concern,Our a

22、nalysis assumes lists remain balanced As p increases, each processors share of list decreases Hence as p increases, likelihood of lists becoming unbalanced increases Unbalanced lists lower efficiency Would be better to get sample values from all processes before choosing median,Parallel Sorting by R

23、egular Sampling (PSRS Algorithm),Each process sorts its share of elements Each process selects regular sample of sorted list One process gathers and sorts samples, chooses pivot values from sorted sample list, and broadcasts these pivot values Each process partitions its list into p pieces, using pi

24、vot values Each process sends partitions to other processes Each process merges its partitions,PSRS Algorithm,75, 91, 15, 64, 21, 8, 88, 54,50, 12, 47, 72, 65, 54, 66, 22,83, 66, 67, 0, 70, 98, 99, 82,P0,P1,P2,Number of processors does not have to be a power of 2.,PSRS Algorithm,Each process sorts i

25、ts list using quicksort.,8, 15, 21, 54, 64, 75, 88, 91,12, 22, 47, 50, 54, 65, 66, 72,0, 66, 67, 70, 82, 83, 98, 99,P0,P1,P2,PSRS Algorithm,Each process chooses p regular samples.,8, 15, 21, 54, 64, 75, 88, 91,12, 22, 47, 50, 54, 65, 66, 72,0, 66, 67, 70, 82, 83, 98, 99,P0,P1,P2,PSRS Algorithm,One p

26、rocess collects p2 regular samples.,15, 54, 75, 22, 50, 65, 66, 70, 83,8, 15, 21, 54, 64, 75, 88, 91,12, 22, 47, 50, 54, 65, 66, 72,0, 66, 67, 70, 82, 83, 98, 99,P0,P1,P2,PSRS Algorithm,One process sorts p2 regular samples.,15, 22, 50, 54, 65, 66, 70, 75, 83,8, 15, 21, 54, 64, 75, 88, 91,12, 22, 47,

27、 50, 54, 65, 66, 72,0, 66, 67, 70, 82, 83, 98, 99,P0,P1,P2,PSRS Algorithm,One process chooses p-1 pivot values.,15, 22, 50, 54, 65, 66, 70, 75, 83,8, 15, 21, 54, 64, 75, 88, 91,12, 22, 47, 50, 54, 65, 66, 72,0, 66, 67, 70, 82, 83, 98, 99,P0,P1,P2,PSRS Algorithm,One process broadcasts p-1 pivot value

28、s.,15, 22, 50, 54, 65, 66, 70, 75, 83,8, 15, 21, 54, 64, 75, 88, 91,12, 22, 47, 50, 54, 65, 66, 72,0, 66, 67, 70, 82, 83, 98, 99,P0,P1,P2,PSRS Algorithm,Each process divides list, based on pivot values.,8, 15, 21, 54, 64, 75, 88, 91,12, 22, 47, 50, 54, 65, 66, 72,0, 66, 67, 70, 82, 83, 98, 99,P0,P1,

29、P2,PSRS Algorithm,Each process sends partitions to correct destination process.,8, 15, 21 12, 22, 47, 50 0,54, 64 54, 65, 66 66,75, 88, 91 72 67, 70, 82, 83, 98, 99,P0,P1,P2,PSRS Algorithm,Each process merges p partitions.,0, 8, 12, 15, 21, 22, 47, 50,54, 54, 64, 65, 66, 66,67, 70, 72, 75, 82, 83, 88, 91, 98, 99,P0,P1,P2,Assumptions,Each process ends up merging close to n/p elements Experimental results show t

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论