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

Method EndEventSynch

Rendering/ParallelLIC/vtkParallelTimer.cxx:559–574  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

557
558//------------------------------------------------------------------------------
559void vtkParallelTimer::EndEventSynch(int rank, const char* event)
560{
561#if vtkParallelTimerDEBUG > 1
562 std::cerr << "=====vtkParallelTimer::EndEventSynch" << endl;
563#endif
564
565 if (this->Initialized)
566 {
567 MPI_Barrier(MPI_COMM_WORLD);
568 }
569 if (this->WorldRank != rank)
570 {
571 return;
572 }
573 this->EndEvent(event);
574}
575
576//------------------------------------------------------------------------------
577void vtkParallelTimer::EndEventSynch(const char* event)

Callers

nothing calls this directly

Calls 1

EndEventMethod · 0.95

Tested by

no test coverage detected