mpi.txt
Associated article: Task Farming & the Message Passing Interface
Tags:
Published source code accompanying the article by Paulo Marques in which he shows how to use the Message Passing Interface to parallelize applications on systems ranging from clusters of PCs running Windows and Linux, to supercomputers like the Cray X1 or IBM SP Power3. Also see Linux-MPICH.tar.gz and Windows-WMPI.zip.
Task Farming & the Message Passing Interface
by Paulo Marques
Listing One
#include <stdio.h>
#include <stdlib.h>
#include "mpi.h"
#define BUF_SIZE 80
int main(int argc, char* argv[])
{
int id; // The rank ...


