Hi All,

some parallel tests have been failing for some time on Nautilus.
http://open.cdash.org/viewTest.php?onlyfailed&buildid=2684614

There are MPI calls made after finalize which cause deadlock issues on SGI MPT. It affects pvbatch for sure. The following snip-it shows the bug, and bug report here: http://paraview.org/Bug/view.php?id=13690

//----------------------------------------------------------------------------
bool vtkProcessModule::Finalize()
{

  ...

vtkProcessModule::GlobalController->Finalize(1); <-------mpi_finalize called here

  ...

#ifdef PARAVIEW_USE_MPI
  if (vtkProcessModule::FinalizeMPI)
    {
MPI_Barrier(MPI_COMM_WORLD); <-------------------------barrier after mpi_finalize MPI_Finalize(); <--------------------------------------second mpi_finalize
    }
#endif

  ...
}

Burlen


_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview

Reply via email to