KMR
|
Example for KMRRUN. More...
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <mpi.h>
Go to the source code of this file.
Macros | |
#define | LINELEN 80 |
Functions | |
int | main (int argc, char *argv[]) |
Main function. More... | |
Example for KMRRUN.
It is a mapper for PI calculation implemented using MPI.
How to run.
create input files in a directory. work/ 000 001 002 ...
Each file have one line which represents number of points to plot. $ cat work/000 100000
Definition in file mpi_pi.mapper.c.
int main | ( | int | argc, |
char * | argv[] | ||
) |
Main function.
Read the number of points to plot from the specified input file, plot points randomly, and count the number of points plotted in a circle. The output is written to a file that has a line formatted in "num1/num2" where num1 is number of points plotted in a circle and "num2" is the total points.
Definition at line 39 of file mpi_pi.mapper.c.