Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
functioning MPI_Comm_get_name, MPI_Comm_set_name
[simgrid.git] / teshsuite / smpi / mpich3-test / datatype / sendrecvt4.c
1 /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
2 /*
3  *  (C) 2014 by Argonne National Laboratory.
4  *      See COPYRIGHT in top-level directory.
5  */
6 #include "mpi.h"
7 #include "mpitest.h"
8 #include <stdio.h>
9 #include "dtypes.h"
10
11
12 /*
13    This program is derived from one in the MPICH-1 test suite
14
15    This version sends and receives EVERYTHING from MPI_BOTTOM, by putting
16    the data into a structure.
17  */
18 int main(int argc, char **argv)
19 {
20     MPI_Datatype *types;
21     void **inbufs, **outbufs;
22     int *counts, *bytesize, ntype;
23     MPI_Comm comm;
24     int rank, np, partner, tag, count;
25     int j, k, err, world_rank, errloc;
26     MPI_Status status;
27     char *obuf;
28     MPI_Datatype offsettype;
29     int blen;
30     MPI_Aint displ, extent, natural_extent;
31     char myname[MPI_MAX_OBJECT_NAME];
32     int mynamelen;
33
34     MTest_Init(&argc, &argv);
35
36     MTestDatatype2Allocate(&types, &inbufs, &outbufs, &counts, &bytesize, &ntype);
37     MTestDatatype2Generate(types, inbufs, outbufs, counts, bytesize, &ntype);
38
39     MPI_Comm_rank(MPI_COMM_WORLD, &world_rank);
40
41     /* Test over a wide range of datatypes and communicators */
42     err = 0;
43     tag = 0;
44     while (MTestGetIntracomm(&comm, 2)) {
45         if (comm == MPI_COMM_NULL)
46             continue;
47         MPI_Comm_rank(comm, &rank);
48         MPI_Comm_size(comm, &np);
49         if (np < 2)
50             continue;
51         tag++;
52         for (j = 0; j < ntype; j++) {
53             MPI_Type_get_name(types[j], myname, &mynamelen);
54             if (world_rank == 0)
55                 MTestPrintfMsg(10, "Testing type %s\n", myname);
56             if (rank == 0) {
57                 MPI_Get_address(inbufs[j], &displ);
58                 blen = 1;
59                 MPI_Type_create_struct(1, &blen, &displ, types + j, &offsettype);
60                 MPI_Type_commit(&offsettype);
61                 /* Warning: if the type has an explicit MPI_UB, then using a
62                  * simple shift of the offset won't work.  For now, we skip
63                  * types whose extents are negative; the correct solution is
64                  * to add, where required, an explicit MPI_UB */
65                 MPI_Type_extent(offsettype, &extent);
66                 if (extent < 0) {
67                     if (world_rank == 0)
68                         MTestPrintfMsg(10, "... skipping (appears to have explicit MPI_UB\n");
69                     MPI_Type_free(&offsettype);
70                     continue;
71                 }
72                 MPI_Type_extent(types[j], &natural_extent);
73                 if (natural_extent != extent) {
74                     MPI_Type_free(&offsettype);
75                     continue;
76                 }
77                 partner = np - 1;
78                 MPI_Send(MPI_BOTTOM, counts[j], offsettype, partner, tag, comm);
79                 MPI_Type_free(&offsettype);
80             }
81             else if (rank == np - 1) {
82                 partner = 0;
83                 obuf = outbufs[j];
84                 for (k = 0; k < bytesize[j]; k++)
85                     obuf[k] = 0;
86                 MPI_Get_address(outbufs[j], &displ);
87                 blen = 1;
88                 MPI_Type_create_struct(1, &blen, &displ, types + j, &offsettype);
89                 MPI_Type_commit(&offsettype);
90                 /* Warning: if the type has an explicit MPI_UB, then using a
91                  * simple shift of the offset won't work.  For now, we skip
92                  * types whose extents are negative; the correct solution is
93                  * to add, where required, an explicit MPI_UB */
94                 MPI_Type_extent(offsettype, &extent);
95                 if (extent < 0) {
96                     MPI_Type_free(&offsettype);
97                     continue;
98                 }
99                 MPI_Type_extent(types[j], &natural_extent);
100                 if (natural_extent != extent) {
101                     MPI_Type_free(&offsettype);
102                     continue;
103                 }
104                 MPI_Recv(MPI_BOTTOM, counts[j], offsettype, partner, tag, comm, &status);
105                 /* Test for correctness */
106                 MPI_Get_count(&status, types[j], &count);
107                 if (count != counts[j]) {
108                     fprintf(stderr,
109                             "Error in counts (got %d expected %d) with type %s\n",
110                             count, counts[j], myname);
111                     err++;
112                 }
113                 if (status.MPI_SOURCE != partner) {
114                     fprintf(stderr,
115                             "Error in source (got %d expected %d) with type %s\n",
116                             status.MPI_SOURCE, partner, myname);
117                     err++;
118                 }
119                 if ((errloc = MTestDatatype2Check(inbufs[j], outbufs[j], bytesize[j]))) {
120                     fprintf(stderr,
121                             "Error in data with type %s (type %d on %d) at byte %d\n",
122                             myname, j, world_rank, errloc - 1);
123                     if (err < 10) {
124                         /* Give details on only the first 10 errors */
125                         unsigned char *in_p = (unsigned char *) inbufs[j],
126                             *out_p = (unsigned char *) outbufs[j];
127                         int jj;
128                         jj = errloc - 1;
129                         jj &= 0xfffffffc;       /* lop off a few bits */
130                         in_p += jj;
131                         out_p += jj;
132                         fprintf(stderr, "%02x%02x%02x%02x should be %02x%02x%02x%02x\n",
133                                 out_p[0], out_p[1], out_p[2], out_p[3],
134                                 in_p[0], in_p[1], in_p[2], in_p[3]);
135                     }
136                     err++;
137                 }
138                 MPI_Type_free(&offsettype);
139             }
140         }
141         MTestFreeComm(&comm);
142     }
143
144     MTestDatatype2Free(types, inbufs, outbufs, counts, bytesize, ntype);
145     MTest_Finalize(err);
146     MPI_Finalize();
147     return MTestReturnValue(err);
148 }