HPC - Monte Carlo estimation of the area of the union of circles

Moreno Marzolla

Last updated: 2022-10-31

File mpi-circles.c contains a serial implementation of a Monte Carlo algorithm that estimates the area of ​​the union of \(N\) circles. Let cx[i], cy[i], and r[i] be the coordinates of the center of circle \(i\) and its radius. Assume that all circles are entirely contained within the bounding square with opposites corners \((0, 0)\) and \((1000, 1000)\). Since circles can be in any position, they may overlap in in whole or in part; therefore it is not easy to determine the area of their union.

We implement a Monte Carlo algorithm to estimate the area; the idea is similar to the one we used to estimate the value of \(\pi\) by generating random points:

Figure 1: Monte Carlo estimation of the area of ​​the union of circles
Figure 1: Monte Carlo estimation of the area of ​​the union of circles

Figure 1 illustrates the idea.

The file mpi-circles.c containing a serial program where process 0 performs the whole computation. The purpose of this exercise is to distribute the computation among all MPI processes. Assume that only process 0 can read the input file; this means that only process 0 knows the number \(N\) of circles and their coordinates. Should this information be needed by other processes, some explicit communication must be performed. The program must work correctly for any value of \(N\) and \(K\).

Hint. You might be tempted to to partition the circles among the MPI processes, in such a way that each process handles \(N/P\) circles. However, this solution would not work (or better, would be very inefficient): why?.

The correct approach is to let each process \(p\) generate \(K/P\) points and test each point with all the circles, and compute the number of points \(C_p\) that fall inside at least one circle. Then, the master computes the sum \(C = \sum_{p=0}^{P-1} C_p\) using a reduction, and estimates the area as above. To do this, each process must receive a copy of the arrays cx[], cy[] and r[] using three broadcast operations.

To compile:

    mpicc -std = c99 -Wall -Wpedantic mpi-circles.c -o mpi-circles

To execute:

    mpirun -n P ./mpi-circles N input_file_name

Example:

    mpirun -n 4 ./mpi-circles 10000 circles-1000.in

Files