| 246 | |
| 247 | |
| 248 | NgMPI_Request ParallelBaseVector :: ISend ( int dest ) const |
| 249 | { |
| 250 | NG_MPI_Request request; |
| 251 | #ifdef PARALLEL |
| 252 | NG_MPI_Datatype mpi_t = this->paralleldofs->GetMPI_Type(dest); |
| 253 | NG_MPI_Isend( Memory(), 1, mpi_t, dest, NG_MPI_TAG_SOLVE, this->paralleldofs->GetCommunicator(), &request); |
| 254 | #endif |
| 255 | return request; |
| 256 | } |
| 257 | |
| 258 | |
| 259 |
nothing calls this directly
no test coverage detected