Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Free memory.
[simgrid.git] / teshsuite / smpi / mpich3-test / pt2pt / bsendfrag.c
1 /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
2 /*
3  *
4  *  (C) 2003 by Argonne National Laboratory.
5  *      See COPYRIGHT in top-level directory.
6  */
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include "mpi.h"
10 #include "mpitest.h"
11
12 /*
13 static char MTEST_Descrip[] = "Test bsend message handling where \
14 different messages are received in different orders";
15 */
16
17 /*
18  * Notes on the test.
19  *
20  * To ensure that messages remain in the bsend buffer until received,
21  * messages are sent with size MSG_SIZE (ints).
22  */
23
24 #define MSG_SIZE 17000
25
26 int main(int argc, char *argv[])
27 {
28     int errs = 0;
29     int b1[MSG_SIZE], b2[MSG_SIZE], b3[MSG_SIZE], b4[MSG_SIZE];
30     int src, dest, size, rank, i;
31     MPI_Comm comm;
32     MPI_Status status;
33
34     MTest_Init(&argc, &argv);
35
36     MPI_Errhandler_set(MPI_COMM_WORLD, MPI_ERRORS_RETURN);
37
38     comm = MPI_COMM_WORLD;
39     MPI_Comm_rank(comm, &rank);
40     MPI_Comm_size(comm, &size);
41
42     if (size < 2) {
43         errs++;
44         fprintf(stderr, "At least 2 processes required\n");
45         MPI_Abort(MPI_COMM_WORLD, 1);
46     }
47
48     src = 0;
49     dest = 1;
50
51     if (rank == src) {
52         int *buf, bufsize, bsize;
53
54         bufsize = 4 * (MSG_SIZE * sizeof(int) + MPI_BSEND_OVERHEAD);
55         buf = (int *) malloc(bufsize);
56         if (!buf) {
57             fprintf(stderr, "Could not allocate buffer of %d bytes\n", bufsize);
58             MPI_Abort(MPI_COMM_WORLD, 1);
59         }
60         MPI_Buffer_attach(buf, bufsize);
61
62         /* Initialize data */
63         for (i = 0; i < MSG_SIZE; i++) {
64             b1[i] = i;
65             b2[i] = MSG_SIZE + i;
66             b3[i] = 2 * MSG_SIZE + i;
67             b4[i] = 3 * MSG_SIZE + i;
68         }
69         /* Send and reset buffers after bsend returns */
70         MPI_Bsend(b1, MSG_SIZE, MPI_INT, dest, 0, comm);
71         for (i = 0; i < MSG_SIZE; i++)
72             b1[i] = -b1[i];
73         MPI_Bsend(b2, MSG_SIZE, MPI_INT, dest, 1, comm);
74         for (i = 0; i < MSG_SIZE; i++)
75             b2[i] = -b2[i];
76         MPI_Bsend(b3, MSG_SIZE, MPI_INT, dest, 2, comm);
77         for (i = 0; i < MSG_SIZE; i++)
78             b3[i] = -b3[i];
79         MPI_Bsend(b4, MSG_SIZE, MPI_INT, dest, 3, comm);
80         for (i = 0; i < MSG_SIZE; i++)
81             b4[i] = -b4[i];
82
83         MPI_Barrier(comm);
84         /* Detach waits until all messages received */
85         MPI_Buffer_detach(&buf, &bsize);
86         free(buf);
87     }
88     else if (rank == dest) {
89
90         MPI_Barrier(comm);
91         MPI_Recv(b2, MSG_SIZE, MPI_INT, src, 1, comm, &status);
92         MPI_Recv(b1, MSG_SIZE, MPI_INT, src, 0, comm, &status);
93         MPI_Recv(b4, MSG_SIZE, MPI_INT, src, 3, comm, &status);
94         MPI_Recv(b3, MSG_SIZE, MPI_INT, src, 2, comm, &status);
95
96         /* Check received data */
97         for (i = 0; i < MSG_SIZE; i++) {
98             if (b1[i] != i) {
99                 errs++;
100                 if (errs < 16)
101                     printf("b1[%d] is %d\n", i, b1[i]);
102             }
103             if (b2[i] != MSG_SIZE + i) {
104                 errs++;
105                 if (errs < 16)
106                     printf("b2[%d] is %d\n", i, b2[i]);
107             }
108             if (b3[i] != 2 * MSG_SIZE + i) {
109                 errs++;
110                 if (errs < 16)
111                     printf("b3[%d] is %d\n", i, b3[i]);
112             }
113             if (b4[i] != 3 * MSG_SIZE + i) {
114                 errs++;
115                 if (errs < 16)
116                     printf("b4[%d] is %d\n", i, b4[i]);
117             }
118         }
119     }
120     else {
121         MPI_Barrier(comm);
122     }
123
124
125     MTest_Finalize(errs);
126     MPI_Finalize();
127     return 0;
128
129 }