Lines Matching refs:sendReq
9 MPI_Request sendReq; in doubleNonblocking() local
10 …MPI_Isend(&buf, 1, MPI_DOUBLE, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-note{{Request is previ… in doubleNonblocking()
11 …MPI_Irecv(&buf, 1, MPI_DOUBLE, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-warning{{Double nonblo… in doubleNonblocking()
12 MPI_Wait(&sendReq, MPI_STATUS_IGNORE); in doubleNonblocking()
17 MPI_Request sendReq; in missingWait() local
18 …MPI_Ireduce(MPI_IN_PLACE, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &sendReq); // expected-… in missingWait()
27 MPI_Request sendReq; in tripleNonblocking() local
28 …MPI_Isend(&buf, 1, MPI_DOUBLE, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-note 2{{Request is pre… in tripleNonblocking()
29 …MPI_Irecv(&buf, 1, MPI_DOUBLE, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-warning{{Double nonblo… in tripleNonblocking()
31 …MPI_Isend(&buf, 1, MPI_DOUBLE, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-warning{{Double nonblo… in tripleNonblocking()
33 MPI_Wait(&sendReq, MPI_STATUS_IGNORE); in tripleNonblocking()