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

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

Adding compiled files

File size: 5.5 KB
Line 
1.\"Copyright 2007-2008 Sun Microsystems, Inc.
2.\" Copyright (c) 1996 Thinking Machines Corporation
3.TH MPI_Recv 3 "Dec 08, 2009" "1.4" "Open MPI"
4.SH NAME
5\fBMPI_Recv\fP \- Performs a standard-mode blocking receive.
6
7.SH SYNTAX
8.ft R
9.SH C Syntax
10.nf
11#include <mpi.h>
12int MPI_Recv(void *\fIbuf\fP, int\fI count\fP, MPI_Datatype\fI datatype\fP,
13        int\fI source\fP, int\fI tag\fP, MPI_Comm\fI comm\fP, MPI_Status\fI *status\fP)
14
15.SH Fortran Syntax
16.nf
17INCLUDE 'mpif.h'
18MPI_RECV(\fIBUF, COUNT, DATATYPE, SOURCE, TAG, COMM, STATUS, IERROR\fP)
19        <type>  \fIBUF\fP(*)
20        INTEGER \fICOUNT, DATATYPE, SOURCE, TAG, COMM\fP
21        INTEGER \fISTATUS(MPI_STATUS_SIZE), IERROR\fP
22
23.SH C++ Syntax
24.nf
25#include <mpi.h>
26void Comm::Recv(void* \fIbuf\fP, int \fIcount\fP, const Datatype& \fIdatatype\fP,
27        int \fIsource\fP, int \fItag\fP, Status& \fIstatus\fP) const
28
29void Comm::Recv(void* \fIbuf\fP, int \fIcount\fP, const Datatype& \fIdatatype\fP,
30        int \fIsource\fP, int \fItag\fP) const
31
32.SH INPUT PARAMETERS
33.ft R
34.TP 1i
35count
36Maximum number of elements to receive (integer).
37.TP 1i
38datatype
39Datatype of each receive buffer entry (handle).
40.TP 1i
41source
42Rank of source (integer).
43.TP 1i
44tag
45Message tag (integer).
46.TP 1i
47comm
48Communicator (handle).
49
50.SH OUTPUT PARAMETERS
51.ft R
52.TP 1i
53buf
54Initial address of receive buffer (choice).
55.TP 1i
56status
57Status object (status).
58.ft R
59.TP 1i
60IERROR
61Fortran only: Error status (integer).
62
63.SH DESCRIPTION
64.ft R
65This basic receive operation, MPI_Recv, is blocking: it returns only after the receive buffer contains the newly received message. A receive can complete before the matching send has completed (of course, it can complete only after the matching send has started).
66.sp
67The blocking semantics of this call are described in Section 3.4 of the MPI-1 Standard, "Communication Modes."
68.sp
69The receive buffer contains a number (defined by the value of \fIcount\fP) of consecutive elements. The first element in the set of elements is located at \fIaddress_buf\fP. The type of each of these elements is specified by \fIdatatype\fP.
70.sp
71The length of the received message must be less than or equal to the length of the receive buffer. An  MPI_ERR_TRUNCATE is returned upon the overflow condition.
72.sp
73If a message that is shorter than the length of the receive buffer arrives, then only
74those locations corresponding to the (shorter) received message are modified.
75
76.SH NOTES
77The \fIcount\fP argument indicates the maximum number of entries of type \fIdatatype\fP that can be received in a message. Once a message is received, use the MPI_Get_count function to determine the actual number of entries within that message.
78.sp
79To receive messages of unknown length, use the MPI_Probe function. (For more information about MPI_Probe and MPI_Cancel, see their respective man pages; also, see Section 3.8 of the MPI-1 Standard, "Probe and Cancel.")
80.sp
81A message can be received by a receive operation only if it is addressed to the receiving process, and if its source, tag, and communicator (comm) values match the source, tag, and comm values specified by the receive operation. The receive operation may specify a wildcard value for source and/or tag, indicating that any source and/or tag are acceptable. The wildcard value for source is source = MPI_ANY_SOURCE. The wildcard value for tag is tag = MPI_ANY_TAG. There is no wildcard value for comm. The scope of these wildcards is limited to the proceses in the group of the specified communicator.
82.sp
83The message tag is specified by the tag argument of the receive operation.
84.sp
85The argument source, if different from MPI_ANY_SOURCE, is specified as a rank within the process group associated with that same communicator (remote process group, for intercommunicators). Thus, the range of valid values for the source argument is {0,...,n-1} {MPI_ANY_SOURCE}, where n is the number of processes in this group.
86.sp
87Note the asymmetry between send and receive operations: A receive operation may accept messages from an arbitrary sender; on the other hand, a send operation must specify a unique receiver. This matches a "push" communication mechanism, where data transfer is effected by the sender (rather than a "pull" mechanism, where data transfer is effected by the receiver).
88.sp
89Source = destination is allowed, that is, a process can send a message to itself. However, it is not recommended for a process to send messages to itself using the blocking send and receive operations described above, since this may lead to deadlock. See Section 3.5 of the MPI-1 Standard, "Semantics of Point-to-Point Communication."
90.sp
91If your application does not need to examine the \fIstatus\fP field, you can save resources by using the predefined constant MPI_STATUS_IGNORE as a special value for the \fIstatus\fP argument.
92
93.SH ERRORS
94Almost 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.
95.sp
96Before the error value is returned, the current MPI error handler is
97called. 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.
98
99.SH SEE ALSO
100.ft R
101.nf
102MPI_Irecv
103MPI_Probe
104
105
106
Note: See TracBrowser for help on using the repository browser.