1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
/*
* Copyright (C) by Argonne National Laboratory
* See COPYRIGHT in top-level directory
*/
#include "mpi.h"
#include <stdio.h>
#include <stdlib.h>
#include "mpitest.h"
#include "mpicolltest.h"
/*
static char MTEST_Descrip[] = "Simple intercomm alltoall test";
*/
int main(int argc, char *argv[])
{
int errs = 0, err;
int *sendbuf = 0, *recvbuf = 0;
int leftGroup, i, j, idx, count, rrank, rsize;
MPI_Comm comm;
MPI_Datatype datatype;
MTest_Init(&argc, &argv);
datatype = MPI_INT;
while (MTestGetIntercomm(&comm, &leftGroup, 4)) {
if (comm == MPI_COMM_NULL)
continue;
for (count = 1; count < 66000; count = 2 * count) {
/* Get an intercommunicator */
MPI_Comm_remote_size(comm, &rsize);
MPI_Comm_rank(comm, &rrank);
sendbuf = (int *) malloc(rsize * count * sizeof(int));
recvbuf = (int *) malloc(rsize * count * sizeof(int));
for (i = 0; i < rsize * count; i++)
recvbuf[i] = -1;
if (leftGroup) {
idx = 0;
for (j = 0; j < rsize; j++) {
for (i = 0; i < count; i++) {
sendbuf[idx++] = i + rrank;
}
}
err = MTest_Alltoall(sendbuf, count, datatype, NULL, 0, datatype, comm);
if (err) {
errs++;
MTestPrintError(err);
}
} else {
int rank, size;
MPI_Comm_rank(comm, &rank);
MPI_Comm_size(comm, &size);
/* In the right group */
err = MTest_Alltoall(NULL, 0, datatype, recvbuf, count, datatype, comm);
if (err) {
errs++;
MTestPrintError(err);
}
/* Check that we have received the correct data */
idx = 0;
for (j = 0; j < rsize; j++) {
for (i = 0; i < count; i++) {
if (recvbuf[idx++] != i + j) {
errs++;
if (errs < 10)
fprintf(stderr, "buf[%d] = %d on %d\n", i, recvbuf[i], rank);
}
}
}
}
free(recvbuf);
free(sendbuf);
}
MTestFreeComm(&comm);
}
MTest_Finalize(errs);
return MTestReturnValue(errs);
}
|