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 / test2_am.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 #include "squelch.h"
10
11 /* tests put and get with post/start/complete/wait on 2 processes */
12
13 /* same as test1.c but uses alloc_mem */
14
15 #define SIZE1 100
16 #define SIZE2 200
17
18 int main(int argc, char *argv[]) 
19
20     int rank, destrank, nprocs, *A, *B, i;
21     MPI_Comm CommDeuce;
22     MPI_Group comm_group, group;
23     MPI_Win win;
24     int errs = 0;
25
26     MTest_Init(&argc,&argv); 
27     MPI_Comm_size(MPI_COMM_WORLD,&nprocs); 
28     MPI_Comm_rank(MPI_COMM_WORLD,&rank); 
29
30     if (nprocs < 2) {
31         printf("Run this program with 2 or more processes\n");
32         MPI_Abort(MPI_COMM_WORLD, 1);
33     }
34
35     MPI_Comm_split(MPI_COMM_WORLD, (rank < 2), rank, &CommDeuce);
36
37     if (rank < 2)
38     {
39
40         i = MPI_Alloc_mem(SIZE2 * sizeof(int), MPI_INFO_NULL, &A);
41         if (i) {
42             printf("Can't allocate memory in test program\n");
43             MPI_Abort(MPI_COMM_WORLD, 1);
44         }
45         i = MPI_Alloc_mem(SIZE2 * sizeof(int), MPI_INFO_NULL, &B);
46         if (i) {
47             printf("Can't allocate memory in test program\n");
48             MPI_Abort(MPI_COMM_WORLD, 1);
49         }
50
51         MPI_Comm_group(CommDeuce, &comm_group);
52
53         if (rank == 0) {
54             for (i=0; i<SIZE2; i++) A[i] = B[i] = i;
55             MPI_Win_create(NULL, 0, 1, MPI_INFO_NULL, CommDeuce, &win);
56             destrank = 1;
57             MPI_Group_incl(comm_group, 1, &destrank, &group);
58             MPI_Win_start(group, 0, win);
59             for (i=0; i<SIZE1; i++)
60                 MPI_Put(A+i, 1, MPI_INT, 1, i, 1, MPI_INT, win);
61             for (i=0; i<SIZE1; i++)
62                 MPI_Get(B+i, 1, MPI_INT, 1, SIZE1+i, 1, MPI_INT, win);
63
64             MPI_Win_complete(win);
65
66             for (i=0; i<SIZE1; i++)
67                 if (B[i] != (-4)*(i+SIZE1)) {
68                     SQUELCH( printf("Get Error: B[i] is %d, should be %d\n", B[i], (-4)*(i+SIZE1)); );
69                     errs++;
70                 }
71         }
72         else if (rank == 1) {
73             for (i=0; i<SIZE2; i++) B[i] = (-4)*i;
74             MPI_Win_create(B, SIZE2*sizeof(int), sizeof(int), MPI_INFO_NULL, CommDeuce, &win);
75             destrank = 0;
76             MPI_Group_incl(comm_group, 1, &destrank, &group);
77             MPI_Win_post(group, 0, win);
78             MPI_Win_wait(win);
79
80             for (i=0; i<SIZE1; i++) {
81                 if (B[i] != i) {
82                     SQUELCH( printf("Put Error: B[i] is %d, should be %d\n", B[i], i); );
83                     errs++;
84                 }
85             }
86         }
87
88         MPI_Group_free(&group);
89         MPI_Group_free(&comm_group);
90         MPI_Win_free(&win);
91         MPI_Free_mem(A);
92         MPI_Free_mem(B);
93     }
94
95     MPI_Comm_free(&CommDeuce);
96     MTest_Finalize(errs);
97     MPI_Finalize();
98     return 0; 
99