Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge remote-tracking branch 'origin/libdw2'
[simgrid.git] / teshsuite / smpi / mpich3-test / datatype / tresized.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 "mpi.h"
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include "mpitest.h"
11
12 /*
13 static char MTEST_Descrip[] = "Test of type resized";
14 */
15
16 int main( int argc, char *argv[] )
17 {
18     int errs = 0, i;
19     int rank, size, source, dest;
20     int count; 
21     int *buf; 
22     MPI_Comm      comm;
23     MPI_Status    status;
24     MPI_Datatype  newtype;
25
26     MTest_Init( &argc, &argv );
27
28     comm = MPI_COMM_WORLD;
29
30     /* Determine the sender and receiver */
31     MPI_Comm_rank( comm, &rank );
32     MPI_Comm_size( comm, &size );
33     source = 0;
34     dest   = size - 1;
35         
36     MPI_Type_create_resized( MPI_INT, 0, 3 * sizeof(int), &newtype );
37     MPI_Type_commit( &newtype );
38     for (count = 1; count < 65000; count = count * 2) {
39         buf = (int *)malloc( count * 3 * sizeof(int) );
40         if (!buf) {
41             MPI_Abort( comm, 1 );
42             exit(1);
43         }
44         for (i=0; i<3*count; i++) buf[i] = -1;
45         if (rank == source) {
46             for (i=0; i<count; i++) buf[3*i] = i;
47             MPI_Send( buf, count, newtype, dest, 0, comm );
48             MPI_Send( buf, count, newtype, dest, 1, comm );
49         }
50         else if (rank == dest) {
51             MPI_Recv( buf, count, MPI_INT, source, 0, comm, &status );
52             for (i=0; i<count; i++) {
53                 if (buf[i] != i) {
54                     errs++;
55                     if (errs < 10) {
56                         printf( "buf[%d] = %d\n", i, buf[i] );
57                     }
58                 }
59             }
60             for (i=0; i<count*3; i++) buf[i] = -1;
61             MPI_Recv( buf, count, newtype, source, 1, comm, &status );
62             for (i=0; i<count; i++) {
63                 if (buf[3*i] != i) {
64                     errs++;
65                     if (errs < 10) {
66                         printf( "buf[3*%d] = %d\n", i, buf[i] );
67                     }
68                 }
69             }
70         }
71     }
72
73     MPI_Type_free( &newtype );
74
75     MTest_Finalize( errs );
76     MPI_Finalize();
77     return 0;
78 }