Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix+activate rma test
[simgrid.git] / teshsuite / smpi / mpich3-test / rma / test3_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 "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 /* same as test3.c but uses alloc_mem */
20
21 #define SIZE 1048576
22
23 int main(int argc, char *argv[])
24 {
25     int rank, destrank, nprocs, *A, *B, i;
26     MPI_Comm CommDeuce;
27     MPI_Group comm_group, group;
28     MPI_Win win;
29     int errs = 0;
30
31     MTest_Init(&argc, &argv);
32     MPI_Comm_size(MPI_COMM_WORLD, &nprocs);
33     MPI_Comm_rank(MPI_COMM_WORLD, &rank);
34
35     if (nprocs < 2) {
36         printf("Run this program with 2 or more processes\n");
37         MPI_Abort(MPI_COMM_WORLD, 1);
38     }
39
40     MPI_Comm_split(MPI_COMM_WORLD, (rank < 2), rank, &CommDeuce);
41
42     if (rank < 2) {
43         i = MPI_Alloc_mem(SIZE * sizeof(int), MPI_INFO_NULL, &A);
44         if (i) {
45             printf("Can't allocate memory in test program\n");
46             MPI_Abort(MPI_COMM_WORLD, 1);
47         }
48
49         MPI_Comm_group(CommDeuce, &comm_group);
50
51         if (rank == 0) {
52             i = MPI_Alloc_mem(SIZE * sizeof(int), MPI_INFO_NULL, &B);
53             if (i) {
54                 printf("Can't allocate memory in test program\n");
55                 MPI_Abort(MPI_COMM_WORLD, 1);
56             }
57
58             for (i = 0; i < SIZE; i++) {
59                 A[i] = i;
60                 B[i] = SIZE + i;
61             }
62 #ifdef USE_WIN_ALLOCATE
63             char *base_ptr;
64             MPI_Win_allocate(0, 1, MPI_INFO_NULL, CommDeuce, &base_ptr, &win);
65 #else
66             MPI_Win_create(NULL, 0, 1, MPI_INFO_NULL, CommDeuce, &win);
67 #endif
68             destrank = 1;
69             MPI_Group_incl(comm_group, 1, &destrank, &group);
70             MPI_Win_start(group, 0, win);
71             MPI_Put(A, SIZE, MPI_INT, 1, 0, SIZE, MPI_INT, win);
72             MPI_Win_complete(win);
73             MPI_Send(B, SIZE, MPI_INT, 1, 100, MPI_COMM_WORLD);
74
75             MPI_Free_mem(B);
76         }
77         else {  /* rank=1 */
78 #ifdef USE_WIN_ALLOCATE
79             MPI_Win_allocate(SIZE * sizeof(int), sizeof(int), MPI_INFO_NULL, CommDeuce, &B, &win);
80 #else
81             i = MPI_Alloc_mem(SIZE * sizeof(int), MPI_INFO_NULL, &B);
82             if (i) {
83                 printf("Can't allocate memory in test program\n");
84                 MPI_Abort(MPI_COMM_WORLD, 1);
85             }
86             MPI_Win_create(B, SIZE * sizeof(int), sizeof(int), MPI_INFO_NULL, CommDeuce, &win);
87 #endif
88             MPI_Win_lock(MPI_LOCK_SHARED, rank, 0, win);
89             for (i = 0; i < SIZE; i++)
90                 A[i] = B[i] = (-4) * i;
91             MPI_Win_unlock(rank, win);
92
93             destrank = 0;
94             MPI_Group_incl(comm_group, 1, &destrank, &group);
95             MPI_Win_post(group, 0, win);
96             MPI_Recv(A, SIZE, MPI_INT, 0, 100, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
97             MPI_Win_wait(win);
98
99             for (i = 0; i < SIZE; i++) {
100                 if (B[i] != i) {
101                     SQUELCH(printf("Rank 1: Put Error: B[i] is %d, should be %d\n", B[i], i););
102                     errs++;
103                 }
104                 if (A[i] != SIZE + i) {
105                     SQUELCH(printf
106                             ("Rank 1: Send/Recv Error: A[i] is %d, should be %d\n", A[i],
107                              SIZE + i););
108                     errs++;
109                 }
110             }
111
112 #ifndef USE_WIN_ALLOCATE
113             MPI_Free_mem(B);
114 #endif
115         }
116
117         MPI_Group_free(&group);
118         MPI_Group_free(&comm_group);
119         MPI_Win_free(&win);
120         MPI_Free_mem(A);
121     }
122     MPI_Comm_free(&CommDeuce);
123     MTest_Finalize(errs);
124     MPI_Finalize();
125     return 0;
126 }