Due: Tuesday, September 9th
Goals:
Background:
Pretend, if you're not already, that you are a biologist interested in studying the ecology of the Gila Wilderness. Because you can't get cable TV within the Gila, instead of doing field work you decide to perform computational simulations. You know that water is a scarce resource, and that competition for the limited precipitation is fierce. In particular, if a plant is crowded by too many neighbors, it will die of thirst. However, due to the symbiotic relationship between the different types of vegetation, a plant with no neighbors will die as well. Plants will only survive if they manage to find the right ecological niche. Your plan is to investigate possible ecological scenarios and to determine which ones generate stable populations.
Assignment:
We'll give you a sequential code that runs the game-of-life. The game is played on a two-dimensional grid of size NX by NY. Each grid point has a value from 0 to 10, which represents the current density of vegetation at a given point. Initially, all values are randomly set to 0 or 1, with probability = PROB that a particular point has value 1. This process is based on a user-input random number SEED.
A timestep of the game consists of updating the value of every grid point according to the following rules:
A single game runs for many timesteps until it terminates under one of 3 conditions:
A complete simulation using the serial code runs N independent games, one after the other and prints out some statistics: the fraction of games that died out, the fraction that reached steady-state, and the fraction that exceeded the time limit. For the steady-state games, the code also computes the average time to stabilization and the average amount of vegetation alive on the grid.
Your assignment is to make this code parallel in the obvious way by having each of the P processors run N/P of the independent games. With the same inputs, your code should give identical answers when run on any number of processors. But life is simple in the Gila and in this first assignment -- you can assume P is a power-of-two (1,2,4,8,etc) and that N is a multiple of P.
Communicating the simulation parameters will require a broadcast operation and computing the statistics will require a reduce operation. You can use MPI calls to get this working quickly, but in the final version of your code, you must write these operations yourself, using MPI-Send and MPI-Receive.
What you hand in:
(1) NX = NY = 50, PROB = 0.35, N = 128, SEED = 314159
(2) NX = NY = 100, PROB = 0.28, N = 256, SEED = 271828
We are looking to see that you get the correct answers and that your answers do not depend on P.
Sequential Version:
You should start with sequential code to solve this problem which can be downloaded here in either C or Fortran.
Open Questions: