------------------------------------------------------------------------------
| 1380 | |
| 1381 | //------------------------------------------------------------------------------ |
| 1382 | int vtkMPICommunicator::AllToAllVVoidArray(const void* sendBuffer, const int* sendCounts, |
| 1383 | const int* sendOffsets, void* recvBuffer, const int* recvCounts, const int* recvOffsets, int type) |
| 1384 | { |
| 1385 | return MPI_Alltoallv(sendBuffer, sendCounts, sendOffsets, vtkMPICommunicatorGetMPIType(type), |
| 1386 | recvBuffer, recvCounts, recvOffsets, vtkMPICommunicatorGetMPIType(type), |
| 1387 | *this->MPIComm->Handle); |
| 1388 | } |
| 1389 | |
| 1390 | //------------------------------------------------------------------------------ |
| 1391 | void vtkMPICommunicator::Barrier() |
no test coverage detected