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
This is apparently caused by the use of MPI_barrier. Because each test waits for a barrier before finishing, the failed rank(s) won't enter the barrier, causing other ranks to hang.
The text was updated successfully, but these errors were encountered:
My best bet so far is to expose Communicator to nvFuser's Python API and then a test fixture. Communicator::barrier doesn't suffer from this AFAIK. In addition, Communicator can host some common features between C++ tests and Python tests, e.g., #3091.
This is apparently caused by the use of MPI_barrier. Because each test waits for a barrier before finishing, the failed rank(s) won't enter the barrier, causing other ranks to hang.
The text was updated successfully, but these errors were encountered: