Re: [Mpi3-ft] Defining the state of MPI after an error
Josh Did you see this? "For example, if there were a loop of 100 MPI_Bcast calls and on iteration 5, rank 3 uses a bad communicator, what is the proper state? Either a sequence number is mandated so the other ranks hang quickly or a sequence number is prohibited so everybody keeps going until the "end" when the missing MPI_Bcast becomes critical. Of course, with no sequence number, some tasks are stupidly using the iteration n-1 data for their iteration n computation. " If my MPI implementation is going to tell you it "allows for correct operation after returning that error class", the standard needs to tell me which behavior is "correct operation" and what is not "correct operation". As I mentioned to Bronis, I have no problem with an advise to implementors urging that they at least allow an option for continued use of libmpi, after an error returns, but at the users own risk. Offhand, I cannot see any harm in urging MPI implementors to promise that all locks will be released when a subroutine returns non-SUCCESS. Can you give me a use case for the added complexity of CAN_CONTINUE vs CANNOT_CONTINUE.? Consider that an error class of CAN_CONTINUE that is returned because the MPI implementor does not really know what "correct operation" means and decides to wing it is not very useful. An MPI implementor that can get in real trouble for negligence would need to be very cautious about returning CAN_CONTINUE. Just asking the MPI implementor to refrain from flagging the error "MPI disabled after prior error" on otherwise correct future calls seems as good to me. Dick Treumann - MPI Team IBM Systems & Technology Group Dept X2ZA / MS P963 -- 2455 South Road -- Poughkeepsie, NY 12601 Tele (845) 433-7846 Fax (845) 433-8363 From: Joshua Hursey <[email protected]> To: "MPI 3.0 Fault Tolerance and Dynamic Process Control working Group" <[email protected]> Date: 09/20/2010 01:51 PM Subject: Re: [Mpi3-ft] Defining the state of MPI after an error Sent by: [email protected] So the proposal makes no requirements about the state of the distributed environment after an error. All it defines is a error class to be returned by an MPI implementation once the MPI implementation can no longer function correctly. This provides a necessary feedback mechanism for the application to determine if and how the MPI implementation can be used after an error occurs. It is the responsibility of the application to avoid deadlocks and other such issues that can result from handling and recovering from errors. If an application is designed to recover from MPI_ERR_TAG that's great. If the MPI library allows for correct operation after returning that error class, then even better. If the MPI library cannot continue operation after that error then it can block subsequent operations by returning MPI_ERR_CANNOT_CONTINUE. I disagree with your assessment that this will be difficult to implement/test since a trivial implementation of this proposal is to set a global variable when an error occurs to always return MPI_ERR_CANNOT_CONTINUE when the application calls into the MPI library (it is a similar check as the 'is_mpi_initialized' check that has to be there anyway). If an implementation wants to do more (and it is definitely not required to do so) then it can define that in it's documentation. If an application wants to try to use MPI after an error it must understand that the error is local in nature (it cannot assume that every process received an error). If it can figure out how to recover from it, and the MPI implementation is able to function correctly afterward then we should let them figure it out. This allows us to define the boundaries of correct operation after an error. Before the application -could- keep using the MPI library after an error, but it was entirely undefined and not-portable what would happen. Now the application can portably attempt to use the MPI library after an error and know that it can expect either normal functionality (for those few implementations that do more than the minimum necessary) or MPI_ERR_CANNOT_CONTINUE in which the library locks them out and they then know to terminate normally. I hope this helps a bit, but maybe I am missing the core problem that you are trying to get at. -- Josh On Sep 20, 2010, at 1:09 PM, Bronis R. de Supinski wrote:
Dick:
Re:
I did not intend to ignore your use case.
No problem.
I did mention that I have no worries about asking MPI implementations to refrain from blocking future MPI calls after an error is detected. That was an implicit recognition of your use case.
OK, that helps.
The MPI standard already forbids having an MPI call on one thread block
progress on other threads. I would interpret that to include a case where a thread is blocked in a collective communication or a MPI_Recv that will never be satisfied. That is, the blocked MPI call cannot prevent other threads from using libmpi. Requiring libmpi to release any lock it took even when doing an error return would be logical but may not be implied by what is currently written.
The current text provides no such guarantee. Once anerror is returned anywhere, all bets are off (at least that is how I have read it; I would need to go back through the text to find the exact words that cause my concern).
Communicators provide a sort of isolation that keeps stray crap from failed operations from spilling over (such as eager sent message for which the MPI_Recv failed). If the tool uses its own threads and private communicators, I agree it is reasonable to ask any libmpi to avoid sabotaging that communication.
That would be perfect from my perspective.
Where I get concerned is when we start talking about affirmative requirements for distributed MPI state after an error
I don't think we can have those beyond "best effort". The errors may indicate problems that make further communication impossible -- perhaps because of the erroneous action or just due to the state of the network or other processes. I do think we can require accurate return values and have an advice to implementers that suggests best effort following errors. I believe that would satisfy my requirements.
Bronis
Dick
Dick Treumann - MPI Team IBM Systems & Technology Group Dept X2ZA / MS P963 -- 2455 South Road -- Poughkeepsie, NY 12601 Tele (845) 433-7846 Fax (845) 433-8363
From: "Bronis R. de Supinski" <[email protected]> To: "MPI 3.0 Fault Tolerance and Dynamic Process Control working
Group" <[email protected]>
Date: 09/20/2010 12:46 PM Subject: Re: [Mpi3-ft] Defining the state of MPI after an error Sent by: [email protected]
________________________________
Dick:
You seem to be ignoring my use case. Specifically, I have tool threads that use MPI. Their use of MPI should be unaffected by all of the scenarios that you are raising. However, the standard provides no way for me to tell if they work correctly in these situations. I just have to cross my fingers and hope.
FYI: Your implementation has long met this requirement (my hopes are not dashed with it). Others have begun to recently. In any event, I would like some way to tell...
Further, it is useful in many other scenarios apply to know that the implementation intends to remain usable. I am not looking for a promise of correct execution; I am looking for a promise of best effort and accurate return codes.
Bronis
On Mon, 20 Sep 2010, Richard Treumann wrote:
If there is any question about whether these calls are still valid
after an error with an error handler that returns (MPI_ERRORS_RETURN or user handler)
MPI_Abort, MPI_Error_string MPI_Error_class
I assume it should be corrected as a trivial oversight in the original
text.
I would regard the real issue as being the difficulty with assuring
the state of remote processes.
There is huge difficulty in making any promise about how an
interaction between a process that has not taken an error and one that has will behave.
For example, if there were a loop of 100 MPI_Bcast calls and on
iteration 5, rank 3 uses a bad communicator, what is the proper state? Either a sequence number is mandated so the other ranks hang quickly or a sequence number is prohibited so everybody keeps going until the "end" when the missing MPI_Bcast becomes critical. Of course, with no sequence number, some tasks are stupidly using the iteration n-1 data for their iteration n computation.
Dick Treumann - MPI Team IBM Systems & Technology Group Dept X2ZA / MS P963 -- 2455 South Road -- Poughkeepsie, NY 12601 Tele (845) 433-7846 Fax (845) 433-8363
_______________________________________________ mpi3-ft mailing list [email protected] http://BLOCKEDlists.mpi-forum.org/mailman/listinfo.cgi/mpi3-ft
_______________________________________________ mpi3-ft mailing list [email protected] http://lists.mpi-forum.org/mailman/listinfo.cgi/mpi3-ft
------------------------------------ Joshua Hursey Postdoctoral Research Associate Oak Ridge National Laboratory http://www.cs.indiana.edu/~jjhursey _______________________________________________ mpi3-ft mailing list [email protected] http://lists.mpi-forum.org/mailman/listinfo.cgi/mpi3-ft
participants (1)
-
Richard Treumann