Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add MPICH3 rma tests (15 out of 88 should be passing now)
[simgrid.git] / teshsuite / smpi / mpich3-test / rma / wintest.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 "mpitest.h"
9
10 /* tests put and get with post/start/complete/test on 2 processes */
11 /* Same as test2.c, but uses win_test instead of win_wait */
12
13 #define SIZE1 10
14 #define SIZE2 20
15
16 int main(int argc, char *argv[]) 
17
18     int rank, destrank, nprocs, A[SIZE2], B[SIZE2], i;
19     MPI_Comm CommDeuce;
20     MPI_Group comm_group, group;
21     MPI_Win win;
22     int errs = 0, flag;
23
24     MTest_Init(&argc,&argv); 
25     MPI_Comm_size(MPI_COMM_WORLD,&nprocs); 
26     MPI_Comm_rank(MPI_COMM_WORLD,&rank); 
27
28     if (nprocs < 2) {
29         printf("Run this program with 2 or more processes\n");
30         MPI_Abort(MPI_COMM_WORLD, 1);
31     }
32
33     MPI_Comm_split(MPI_COMM_WORLD, (rank < 2), rank, &CommDeuce);
34
35     if (rank < 2) {
36         MPI_Comm_group(CommDeuce, &comm_group);
37
38         if (rank == 0) {
39             for (i=0; i<SIZE2; i++) A[i] = B[i] = i;
40             MPI_Win_create(NULL, 0, 1, MPI_INFO_NULL, CommDeuce, &win);
41             destrank = 1;
42             MPI_Group_incl(comm_group, 1, &destrank, &group);
43             MPI_Win_start(group, 0, win);
44             for (i=0; i<SIZE1; i++)
45                 MPI_Put(A+i, 1, MPI_INT, 1, i, 1, MPI_INT, win); 
46             for (i=0; i<SIZE1; i++)
47                 MPI_Get(B+i, 1, MPI_INT, 1, SIZE1+i, 1, MPI_INT, win);
48
49             MPI_Win_complete(win);
50
51             for (i=0; i<SIZE1; i++) 
52                 if (B[i] != (-4)*(i+SIZE1)) {
53                     printf("Get Error: B[i] is %d, should be %d\n", B[i], (-4)*(i+SIZE1));
54                     errs++;
55                 }
56         }
57         else {  /* rank=1 */
58             for (i=0; i<SIZE2; i++) B[i] = (-4)*i;
59             MPI_Win_create(B, SIZE2*sizeof(int), sizeof(int), MPI_INFO_NULL, CommDeuce, &win);
60             destrank = 0;
61             MPI_Group_incl(comm_group, 1, &destrank, &group);
62             MPI_Win_post(group, 0, win);
63             flag = 0;
64             while (!flag)
65                 MPI_Win_test(win, &flag);
66
67             for (i=0; i<SIZE1; i++) {
68                 if (B[i] != i) {
69                     printf("Put Error: B[i] is %d, should be %d\n", B[i], i);
70                     errs++;
71                 }
72             }
73         }
74
75         MPI_Group_free(&group);
76         MPI_Group_free(&comm_group);
77         MPI_Win_free(&win); 
78     }
79     MPI_Comm_free(&CommDeuce);
80     MTest_Finalize(errs);
81     MPI_Finalize();
82     return 0; 
83