MCPcopy Create free account
hub / github.com/Kitware/VTK / Wait

Method Wait

Parallel/MPI/vtkMPICommunicator.cxx:1345–1357  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1343
1344//------------------------------------------------------------------------------
1345void vtkMPICommunicator::Request::Wait()
1346{
1347 MPI_Status status;
1348
1349 int err = MPI_Wait(&this->Req->Handle, &status);
1350
1351 if (err != MPI_SUCCESS)
1352 {
1353 char* msg = vtkMPIController::ErrorString(err);
1354 vtkGenericWarningMacro("MPI error occurred: " << msg);
1355 delete[] msg;
1356 }
1357}
1358
1359//------------------------------------------------------------------------------
1360void vtkMPICommunicator::Request::Cancel()

Callers 14

TestSharedFuturesFunction · 0.45
CheckNoBlockRecvsFunction · 0.45
ExchangeCountsLeanMethod · 0.45
ExchangeIdArraysLeanMethod · 0.45
ExchangeIdArraysFastMethod · 0.45
OptimizeBoundingBoxMethod · 0.45
GetPointsInsideBoundsMethod · 0.45
ReceiveMethod · 0.45

Calls 1

ErrorStringFunction · 0.85

Tested by 2

TestSharedFuturesFunction · 0.36
CheckNoBlockRecvsFunction · 0.36