source: proiecte/hpl/openmpi_compiled/share/man/man3/MPI_Cancel.3 @ 97

Last change on this file since 97 was 97, checked in by (none), 14 years ago

Adding compiled files

File size: 4.1 KB
Line 
1.\"Copyright 2006-2008 Sun Microsystems, Inc.
2.\" Copyright (c) 1996 Thinking Machines Corporation
3.TH MPI_Cancel 3 "Dec 08, 2009" "1.4" "Open MPI"
4.SH NAME
5\fBMPI_Cancel\fP \- Cancels a communication request.
6
7.SH SYNTAX
8.ft R
9.SH C Syntax
10.nf
11#include <mpi.h>
12int MPI_Cancel(MPI_Request\fI *request\fP)
13
14.SH Fortran Syntax
15.nf
16INCLUDE 'mpif.h'
17MPI_CANCEL(\fIREQUEST\fP, \fIIERROR\fP)
18        INTEGER \fIREQUEST\fP, \fIIERROR\fP
19
20.SH C++ Syntax
21.nf
22#include <mpi.h>
23void Request::Cancel() const
24
25.SH INPUT PARAMETER
26.ft R
27.TP 1i
28request
29Communication request (handle).
30
31.SH OUTPUT PARAMETER
32.ft R
33.TP 1i
34IERROR
35Fortran only: Error status (integer).
36
37.SH DESCRIPTION
38.ft R
39The MPI_Cancel operation allows pending communications to be canceled. This is required for cleanup. Posting a send or a receive ties up user resources (send or receive buffers), and a cancel may be needed to free these resources gracefully.
40.sp
41A call to MPI_Cancel marks for cancellation a pending, nonblocking communication operation (send or receive). The cancel call is local. It returns immediately, possibly before the communication is actually canceled. It is still necessary to complete a communication that has been marked for cancellation, using a call to MPI_Request_free, MPI_Wait, or MPI_Test (or any of the derived operations). 
42.sp
43If a communication is marked for cancellation, then an MPI_Wait call for that communication is guaranteed to return, irrespective of the activities of other processes (i.e., MPI_Wait behaves as a local function); similarly if MPI_Test is repeatedly called in a busy wait loop for a canceled communication, then MPI_Test will eventually be successful.
44.sp
45MPI_Cancel can be used to cancel a communication that uses a persistent request (see Section 3.9 in the MPI-1 Standard, "Persistent Communication Requests") in the same way it is used for nonpersistent requests. A successful cancellation cancels the active communication, but not the request itself. After the call to MPI_Cancel and the subsequent call to MPI_Wait or MPI_Test, the request becomes inactive and can be activated for a new communication. 
46.sp
47The successful cancellation of a buffered send frees the buffer space occupied by the pending message. 
48.sp
49Either the cancellation succeeds or the communication succeeds, but not both. If a send is marked for cancellation, then it must be the case that either the send completes normally, in which case the message sent is received at the destination process, or that the send is successfully canceled, in which case no part of the message is received at the destination. Then, any matching receive has to be satisfied by another send. If a receive is marked for cancellation, then it must be the case that either the receive completes normally, or that the receive is successfully canceled, in which case no part of the receive buffer is altered. Then, any matching send has to be satisfied by another receive.
50.sp
51If the operation has been canceled, then information to that effect will be returned in the status argument of the operation that completes the communication.
52
53.SH NOTES
54.ft R
55The primary expected use of MPI_Cancel is in multi-buffering schemes,
56where speculative MPI_Irecvs are made.  When the
57computation completes, some of these requests may remain;
58using MPI_Cancel allows the user to cancel these unsatisfied requests.
59
60.SH ERRORS
61Almost all MPI routines return an error value; C routines as the value of the function and Fortran routines in the last argument. C++ functions do not return errors. If the default error handler is set to MPI::ERRORS_THROW_EXCEPTIONS, then on error the C++ exception mechanism will be used to throw an MPI:Exception object.
62.sp
63Before the error value is returned, the current MPI error handler is
64called. By default, this error handler aborts the MPI job, except for I/O function errors. The error handler may be changed with MPI_Comm_set_errhandler; the predefined error handler MPI_ERRORS_RETURN may be used to cause error values to be returned. Note that MPI does not guarantee that an MPI program can continue past an error. 
65
66.SH SEE ALSO
67.ft R
68.sp
69.nf
70MPI_Probe
71MPI_Iprobe
72MPI_Test_cancelled
73MPI_Cart_coords
74
Note: See TracBrowser for help on using the repository browser.