Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / teshsuite / smpi / mpich3-test / pt2pt / bsend4.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 <stdio.h>
7 #include "mpi.h"
8 #include "mpitest.h"
9
10 #define BUFSIZE 2000
11 int main(int argc, char *argv[])
12 {
13     MPI_Status status;
14     MPI_Request request;
15     int a[10], b[10];
16     int buf[BUFSIZE], *bptr, bl, i, j, rank, size, errs = 0;
17
18     MTest_Init(0, 0);
19     MPI_Comm_rank(MPI_COMM_WORLD, &rank);
20     MPI_Comm_size(MPI_COMM_WORLD, &size);
21     MPI_Buffer_attach(buf, BUFSIZE);
22
23     for (j = 0; j < 10; j++) {
24         for (i = 0; i < 10; i++) {
25             a[i] = (rank + 10 * j) * size + i;
26         }
27         MPI_Ibsend(a, 10, MPI_INT, 0, 27 + j, MPI_COMM_WORLD, &request);
28         MPI_Wait(&request, &status);
29     }
30     if (rank == 0) {
31
32         for (i = 0; i < size; i++) {
33             for (j = 0; j < 10; j++) {
34                 int k;
35                 status.MPI_TAG = -10;
36                 status.MPI_SOURCE = -20;
37                 MPI_Recv(b, 10, MPI_INT, i, 27 + j, MPI_COMM_WORLD, &status);
38
39                 if (status.MPI_TAG != 27 + j) {
40                     errs++;
41                     printf("Wrong tag = %d\n", status.MPI_TAG);
42                 }
43                 if (status.MPI_SOURCE != i) {
44                     errs++;
45                     printf("Wrong source = %d\n", status.MPI_SOURCE);
46                 }
47                 for (k = 0; k < 10; k++) {
48                     if (b[k] != (i + 10 * j) * size + k) {
49                         errs++;
50                         printf("received b[%d] = %d from %d tag %d\n", k, b[k], i, 27 + j);
51                     }
52                 }
53             }
54         }
55     }
56     MPI_Buffer_detach(&bptr, &bl);
57
58     MTest_Finalize(errs);
59     MPI_Finalize();
60     return 0;
61 }