You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MPI_Finalized is only checking if the MPI environment got terminated with MPI_Finalize. I do not understand why the call to Environment::finalized in Environment::~Environment() causes the issue.
This was found in OPAX on Gwendolen
partial ==== backtrace (tid:2019130) ====
It looks like
mca_pml_ucx_cleanup(
is triggeringompi_mpi_finalize()
and subsequently in theEnvironment
destructorbool Environment::finalized() { int flag = 0; MPI_Finalized(&flag); return (flag != 0); }
In case I do not use
Environment::finalized()
the error goes away!The text was updated successfully, but these errors were encountered: