Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
not our leak.
[simgrid.git] / teshsuite / smpi / mpich3-test / rma / test3.c
1 /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
2 /*
3  *  (C) 2001 by Argonne National Laboratory.
4  *      See COPYRIGHT in top-level directory.
5  */
6 #include "mpi.h" 
7 #include "stdio.h"
8 #include "stdlib.h"
9 #include "mpitest.h"
10 #include "squelch.h"
11
12 /* Tests the example in Fig 6.8, pg 142, MPI-2 standard. Process 1 has
13    a blocking MPI_Recv between the Post and Wait. Therefore, this
14    example will not run if the one-sided operations are simply
15    implemented on top of MPI_Isends and Irecvs. They either need to be
16    implemented inside the progress engine or using threads with Isends
17    and Irecvs. In MPICH-2, they are implemented in the progress engine. */
18
19 #define SIZE 1048576
20
21 int main(int argc, char *argv[]) 
22
23     int rank, destrank, nprocs, *A, *B, i;
24     MPI_Comm CommDeuce;
25     MPI_Group comm_group, group;
26     MPI_Win win;
27     int errs = 0;
28
29     MTest_Init(&argc,&argv); 
30     MPI_Comm_size(MPI_COMM_WORLD,&nprocs); 
31     MPI_Comm_rank(MPI_COMM_WORLD,&rank); 
32
33     if (nprocs < 2) {
34         printf("Run this program with 2 or more processes\n");
35         MPI_Abort(MPI_COMM_WORLD, 1);
36     }
37
38     MPI_Comm_split(MPI_COMM_WORLD, (rank < 2), rank, &CommDeuce);
39
40     if (rank < 2)
41     {
42         A = (int *) malloc(SIZE * sizeof(int));
43         if (!A) {
44             printf("Can't allocate memory in test program\n");
45             MPI_Abort(MPI_COMM_WORLD, 1);
46         }
47         B = (int *) malloc(SIZE * sizeof(int));
48         if (!B) {
49             printf("Can't allocate memory in test program\n");
50             MPI_Abort(MPI_COMM_WORLD, 1);
51         }
52
53         MPI_Comm_group(CommDeuce, &comm_group);
54
55         if (rank == 0) {
56             for (i=0; i<SIZE; i++) {
57                 A[i] = i;
58                 B[i] = SIZE + i;
59             }
60             MPI_Win_create(NULL, 0, 1, MPI_INFO_NULL, CommDeuce, &win);
61             destrank = 1;
62             MPI_Group_incl(comm_group, 1, &destrank, &group);
63             MPI_Win_start(group, 0, win);
64             MPI_Put(A, SIZE, MPI_INT, 1, 0, SIZE, MPI_INT, win);
65             MPI_Win_complete(win);
66             MPI_Send(B, SIZE, MPI_INT, 1, 100, MPI_COMM_WORLD);
67         }
68
69         else if (rank == 1) {
70             for (i=0; i<SIZE; i++) A[i] = B[i] = (-4)*i;
71             MPI_Win_create(B, SIZE*sizeof(int), sizeof(int), MPI_INFO_NULL, CommDeuce, &win);
72             destrank = 0;
73             MPI_Group_incl(comm_group, 1, &destrank, &group);
74             MPI_Win_post(group, 0, win);
75             MPI_Recv(A, SIZE, MPI_INT, 0, 100, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
76             MPI_Win_wait(win);
77
78             for (i=0; i<SIZE; i++) {
79                 if (B[i] != i) {
80                     SQUELCH( printf("Rank 1: Put Error: B[i] is %d, should be %d\n", B[i], i); );
81                     errs++;
82                 }
83                 if (A[i] != SIZE + i) {
84                     SQUELCH( printf("Rank 1: Send/Recv Error: A[i] is %d, should be %d\n", A[i], SIZE+i); );
85                     errs++;
86                 }
87             }
88         }
89
90         MPI_Group_free(&group);
91         MPI_Group_free(&comm_group);
92         MPI_Win_free(&win);
93         free(A);
94         free(B);
95     }
96     MPI_Comm_free(&CommDeuce);
97     MTest_Finalize(errs);
98     MPI_Finalize(); 
99     return 0; 
100