Changes between Version 1 and Version 2 of mpich/2008-07-20_YM_MPI_Course


Ignore:
Timestamp:
Jul 20, 2008, 5:37:18 PM (16 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • mpich/2008-07-20_YM_MPI_Course

    v1 v2  
    253253{{{
    254254/* Program:
    255  *   讓 node 0 可以接受來自任何 node 的訊息,每個 node 將訊息標上不同 tag 後傳給 node 0
     255 *   mpich_example 內建範例,計算 pi 。
    256256 * History:
    257  *   2008-06-24 BETA
    258  */
    259 
     257 *   2008-04-11 BETA
     258 *   2008-06-19 增加可重複輸入欲計算之精準度
     259 *   2008-06-23 加入 MPI_Barrier 以確保每個 node 在接受 n 後才執行
     260 * /
     261
     262#include "mpi.h"
    260263#include <stdio.h>
    261 #include <mpi.h>
    262 
    263 main (int argc, char **argv)
     264#include <math.h>
     265#include <time.h>
     266
     267double f( double );
     268double f( double a )
    264269{
    265   int numprocs, myrank, i=0, buf;
    266   MPI_Status status;
    267   MPI_Init(&argc, &argv);
    268   MPI_Comm_size(MPI_COMM_WORLD, &numprocs);
    269   MPI_Comm_rank(MPI_COMM_WORLD, &myrank);
    270 
    271   /* 除了 Node 0 以外的所有 node 都要送 5 個訊息給 node 0 , 將 i 當成 tag 送出 */
    272   if (myrank > 0)
    273   {
    274     for(i = 0; i < 5; i++)
     270    return (4.0 / (1.0 + a*a));
     271}
     272
     273int main( int argc, char *argv[])
     274{
     275    int done = 0, n, myid, numprocs, i=0;
     276    double PI25DT = 3.141592653589793238462643;
     277    double mypi, pi, h, sum, x;
     278    double startwtime = 0.0, endwtime;
     279    int  namelen;
     280    char processor_name[MPI_MAX_PROCESSOR_NAME];
     281    MPI_Init(&argc,&argv);
     282    MPI_Comm_size(MPI_COMM_WORLD,&numprocs);
     283    MPI_Comm_rank(MPI_COMM_WORLD,&myid);
     284    MPI_Get_processor_name(processor_name,&namelen);
     285    fprintf(stderr,"Process %d on %s\n",
     286            myid, processor_name);
     287    n = 0;
     288    while (!done)
    275289    {
    276       buf = myrank * 100 + i;
    277       MPI_Send(&buf, 1, MPI_INT, 0, i, MPI_COMM_WORLD);
     290        /* 由 node 0 將使用者輸入的值送給其它的 node  */
     291        if (myid == 0)
     292        {
     293            printf("Enter the number of intervals: (0 quits) ");
     294            scanf("%d", &n);
     295            startwtime = MPI_Wtime();
     296        }
     297
     298        /* 這非常重要,所有的 node 必需在此同步,才可以收到使用者輸入的 n */
     299        MPI_Barrier(MPI_COMM_WORLD);
     300
     301        /* 將 n 送給其它的 node  */
     302        MPI_Bcast(&n, 1, MPI_INT, 0, MPI_COMM_WORLD);
     303        if (n == 0)
     304            done = 1;
     305        else
     306        {
     307
     308            /* 此為計算 pi 的演算法 */
     309            h   = 1.0 / (double) n;
     310            sum = 0.0;
     311            for (i = myid + 1; i <= n; i += numprocs)
     312            {
     313                x = h * ((double)i - 0.5);
     314                sum += f(x);
     315            }
     316            mypi = h * sum;
     317
     318            /* 將算完的結果傳給 node 0 加總 */
     319            MPI_Reduce(&mypi, &pi, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD);
     320            if (myid == 0)
     321            {
     322                printf("pi is approximately %.16f, Error is %.16f\n",
     323                       pi, fabs(pi - PI25DT));
     324                endwtime = MPI_Wtime();
     325                printf("wall clock time = %f\n",
     326                       endwtime-startwtime);
     327            }
     328        }
    278329    }
    279   }
    280   if (myrank == 0)
    281   {
    282     for (i = 0; i < 5*(numprocs-1); i++)
    283     {
    284 
    285       /* MPI_ANY_SOURCE 接收來自任何 node , MPI_ANY_TAG 接收來自任何 tag */
    286       MPI_Recv(&buf, 1, MPI_INT, MPI_ANY_SOURCE, MPI_ANY_TAG, MPI_COMM_WORLD, &status);
    287       printf("[Node %d][Tag %d] => %d\n", status.MPI_SOURCE, status.MPI_TAG, buf);
    288     }
    289   }
    290   MPI_Finalize();
     330    MPI_Finalize();
     331    return 0;
    291332}
    292333}}}