#Answer to exercise (C)
#include <math.h>
#include <stdlib.h>
#include <stdio.h>
#include <mpi.h>
double rand_one()
{
return rand() / (RAND_MAX + 1.0);
}
int main(int argc, char **argv)
{
int n_inside, n_outside;
int total_n_inside, total_n_outside;
int rank, nprocs, niters;
int i;
double x, y, r, pi;
total_n_inside = 0;
total_n_outside = 0;
n_inside = 0;
n_outside = 0;
MPI_Init(&argc, &argv);
// get the number of processors in the cluster
MPI_Comm_size(MPI_COMM_WORLD, &nprocs);
// make sure that each process has a different random
// number seed
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
srand( rank * 473879 );
// calculate the number of iterations - we want 1000000 in total
niters = 1000000 / nprocs;
// perform this processes batch of iterations
for (i=0; i<niters; ++i)
{
x = (2*rand_one()) - 1;
y = (2*rand_one()) - 1;
r = sqrt( x*x + y*y );
if (r < 1.0)
{
++n_inside;
}
else
{
++n_outside;
}
}
printf("Process %d: n_inside = %d, n_outside = %d\n",
rank, n_inside, n_outside);
// reduce the results back to the master process
MPI_Reduce(&n_inside, &total_n_inside, 1, MPI_INT,
MPI_SUM, 0, MPI_COMM_WORLD);
MPI_Reduce(&n_outside, &total_n_outside, 1, MPI_INT,
MPI_SUM, 0, MPI_COMM_WORLD);
if (rank == 0)
{
pi = (4.0 * total_n_inside) / (total_n_inside + total_n_outside);
printf("The estimated value of pi is %f\n", pi);
}
MPI_Finalize();
return 0;
}