Changes between Version 9 and Version 10 of mpich/point_to_point/demo1


Ignore:
Timestamp:
Jun 25, 2008, 5:11:30 PM (17 years ago)
Author:
wade
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • mpich/point_to_point/demo1

    v9 v10  
    11= Source code =
    22{{{
    3 /*
    4  * 每個 node 將訊息傳送給 node 0,由,node 0 統一印出
    5  */
     3/* Program:
     4 *   每個 node 將自己的 id 印出,並且將所有的參與運動的 node 總數也印出
     5 *   ,顯示出自己的主機名稱。
     6 * History:
     7 *   2008-04-09 BETA
     8 *   2008-06-25 增加顯示主機名稱功能
     9*/
    610
    711#include <stdio.h>
    812#include <mpi.h>
    9 #include <string.h>
     13main (int argc, char **argv)
     14{
     15  int rank, size, len;
     16  char name[MPI_MAX_PROCESSOR_NAME];
     17  MPI_Init(&argc, &argv);
     18  int myid, numprocs;
    1019
    11 main(int argc, char **argv)
    12 {
    13   int myrank, i, numprocs;
    14   char message[20];
    15   MPI_Status status;
    16   MPI_Init(&argc, &argv);
    17   MPI_Comm_size(MPI_COMM_WORLD, &numprocs);
    18   MPI_Comm_rank(MPI_COMM_WORLD, &myrank);
    19   if(myrank == 0)
    20   {
    21     printf("I am %d \n", myrank);
    22     for(i = 1; i < (numprocs); i++)
    23     {
    24       MPI_Recv(message, 20, MPI_CHAR, i, 99, MPI_COMM_WORLD, &status);
    25       printf(" I GOT %s \n", message);
    26     }
    27     printf("\n");
    28   }
    29   if(myrank != 0)
    30   {
    31     sprintf(message, "i am %d", myrank);
    32     MPI_Send(message, 20, MPI_CHAR, 0, 99, MPI_COMM_WORLD);
    33     printf("I am %d \n", myrank);
    34     printf("I send '%s\n\n ", message);
    35   }
     20  /* 取得 node 總數 */
     21  MPI_Comm_size(MPI_COMM_WORLD,&numprocs);
     22
     23  /* 取得本身 node id / rank  */
     24  MPI_Comm_rank(MPI_COMM_WORLD,&myid);
     25
     26  /* 取得本身 host name  */
     27  MPI_Get_processor_name(name, &len);
     28  printf("This is machine %d of %d  name = %s\n", myid, numprocs, name);
    3629  MPI_Finalize();
    3730}