previous up next
Go backward to Global Communication
Go up to Top
Go forward to Unstructured/Dynamic Communication
RISC-Linz logo

Global Communication

  1. Distribute communication/computation
    Si = Xi+Si-1
    Concurrency only for multiple summations!
  2. Uncover concurrency: divide&conquer
    sumi=02n-1Xi=sumi=02n-1-1Xi+sumi=2n-12n-1Xi
    Concurrency within one summation!
    divide&conquer:
      if base_case then
        solve_problem
      else 
        partition problem into L and R
        solve subproblem L with d&c
        solve subproblem R with d&c
        combine solutions of L and R
    

(See Foster, Figures 2.7 and 2.8)


Author: Wolfgang Schreiner
Last Modification: October 13, 1997

previous up next