Ignore:
Timestamp:
02/04/21 20:35:15 (3 years ago)
Author:
aclsce
Message:

Commented mpi_comm_free as it was done on branch 2.5 to avoid potential deadlocks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/client.cpp

    r1866 r2029  
    278278 
    279279 
    280       MPI_Comm_free(&interComm); 
     280      /* MPI_Comm_free(&interComm); */ // WARNING remove freeing communicator !! --> deadlock raised, to be checked 
    281281      for (std::list<MPI_Comm>::iterator it = contextInterComms.begin(); it != contextInterComms.end(); it++) 
    282         MPI_Comm_free(&(*it)); 
     282        /* MPI_Comm_free(&(*it)) */ ; // WARNING remove freeing communicator !! --> deadlock raised, to be checked 
    283283      MPI_Comm_free(&intraComm); 
    284284 
Note: See TracChangeset for help on using the changeset viewer.