Title: COMP309/509 - Lecture 21 class: middle, center, inverse

COMP309/509 - Parallel and Distributed Computing

Lecture 21 - Massage Passing Interface

By Mitchell Welch

University of New England


Reading


Summary


Advanced MPI


Advanced MPI


Advanced MPI


Advanced MPI

#include "mpi.h"
int MPI_Barrier(MPI_Comm comm)

Intergral Estimation - The Trapaziodal rule

.center[intergral]

for some fixed f


Intergral Estimation - The Trapaziodal rule


Intergral Estimation - The Trapaziodal rule

.center[intergral]


Intergral Estimation - The Trapaziodal rule

.center[intergral]


Intergral Estimation - The Trapaziodal rule

.center[intergral]

.center[intergral]

.center[intergral]


Intergral Estimation - The Trapaziodal rule

.center[intergral]


float f(float x){ return x*x; }

float Trap(float a, float b, int n, float h){ 
    float integral, x;
    int i; 
    integral = (f(a) + f(b))/2.0; 
    x = a; 
    for (i = 1; i <= n-1; i++) { 
        x += h; 
        integral += f(x); } 
    return integral * h;
}

Intergral Estimation - The Trapaziodal rule


Intergral Estimation - The Trapaziodal rule

#include <stdio.h>
#include "trap.h"
int main(int argc, char** argv) {
  float h, a = 0.0, b = 1.0, integral = 0, local_a, local_b;    
  int i, n = 1000, nproc = 10, local_n = n/nproc;
  h = (b-a)/n;    
  for(i = 0; i < nproc; i++){
    local_a = a + i*local_n*h;
    local_b = a + (i + 1)*local_n*h;
    integral += Trap(local_a, local_b, local_n, h);
  }
  printf("With n = %d trapezoids\n", n);
  printf("The integral from %f to %f is approx %f\n", 
         a, b, integral); 
  return 0;
}

Intergral Estimation - The Trapaziodal rule


Intergral Estimation - The Trapaziodal rule


Intergral Estimation - The Trapaziodal rule


Intergral Estimation - The Trapaziodal rule


Intergral Estimation - The Trapaziodal rule


Intergral Estimation - The Trapaziodal rule


Intergral Estimation - The Trapaziodal rule

#include "mpi.h"
int MPI_Bcast(void*         buffer, 
              int           count,  
              MPI_Datatype  datatyp, 
              int           root, 
              MPI_Comm      comm)

Intergral Estimation - The Trapaziodal rule


Intergral Estimation - The Trapaziodal rule

#include "mpi.h"
int MPI_Reduce (void*        sndbuf, 
                void*        rcvbuf, 
                int          count, 
                MPI_Datatype datatyp, 
                MPI_Op       op, 
                int          root, 
                MPI_Comm     comm)

Intergral Estimation - The Trapaziodal rule


Intergral Estimation - The Trapaziodal rule


Intergral Estimation - The Trapaziodal rule


Summary


class: middle, center, inverse

Questions?


Reading