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

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

Adding compiled files

File size: 2.7 KB
Line 
1.\"Copyright 2007-2008 Sun Microsystems, Inc.
2.\"Copyright (c) 1996 Thinking Machines Corporation
3.TH MPI_Isend 3 "Dec 08, 2009" "1.4" "Open MPI"
4.SH NAME
5\fBMPI_Isend\fP \- Starts a standard-mode, nonblocking send.
6
7.SH SYNTAX
8.ft R
9.SH C Syntax
10.nf
11#include <mpi.h>
12int MPI_Isend(void *\fIbuf\fP, int\fI count\fP, MPI_Datatype\fI datatype\fP, int\fI dest\fP,
13        int\fI tag\fP, MPI_Comm\fI comm\fP, MPI_Request\fI *request\fP)
14
15.SH Fortran Syntax
16.nf
17INCLUDE 'mpif.h'
18MPI_ISEND(\fIBUF, COUNT, DATATYPE, DEST, TAG, COMM, REQUEST, IERROR\fP)
19        <type>  \fIBUF\fP(*)
20        INTEGER \fICOUNT, DATATYPE, DEST, TAG, COMM, REQUEST, IERROR\fP
21
22.SH C++ Syntax
23.nf
24#include <mpi.h>
25Request Comm::Isend(const void* \fIbuf\fP, int \fIcount\fP, const
26        Datatype& \fIdatatype\fP, int \fIdest\fP, int \fItag\fP) const
27
28.SH INPUT PARAMETERS
29.ft R
30.TP 1i
31buf
32Initial address of send buffer (choice).
33.TP 1i
34count
35Number of elements in send buffer (integer).
36.TP 1i
37datatype
38Datatype of each send buffer element (handle).
39.TP 1i
40dest
41Rank of destination (integer).
42.TP 1i
43tag
44Message tag (integer).
45.TP 1i
46comm
47Communicator (handle).
48
49.SH OUTPUT PARAMETERS
50.ft R
51.TP 1i
52request
53Communication request (handle).
54.ft R
55.TP 1i
56IERROR
57Fortran only: Error status (integer).
58
59.SH DESCRIPTION
60.ft R
61MPI_Isend starts a standard-mode, nonblocking send. Nonblocking calls allocate a communication request object and associate it with the request handle (the argument request). The request can be used later to query the status of the communication or wait for its completion.
62.sp
63A nonblocking send call indicates that the system may start copying data out of the send buffer. The sender should not access any part of the send buffer after a nonblocking send operation is called, until the send completes.
64.sp
65A send request can be determined being completed by calling the MPI_Wait, MPI_Waitany, MPI_Test, or MPI_Testany with request returned by this function.
66
67.SH ERRORS
68Almost 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.
69.sp
70Before the error value is returned, the current MPI error handler is
71called. 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. 
72
73.SH SEE ALSO
74MPI_Send
75MPI_Wait
76MPI_Waitany
77MPI_Test
78MPI_Testany
79.br
80
Note: See TracBrowser for help on using the repository browser.