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

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

Adding compiled files

File size: 2.5 KB
Line 
1.\"Copyright 2006-2008 Sun Microsystems, Inc.
2.\" Copyright (c) 1996 Thinking Machines Corporation
3.TH MPI_Ibsend 3 "Dec 08, 2009" "1.4" "Open MPI"
4.SH NAME
5\fBMPI_Ibsend\fP \- Starts a nonblocking buffered send.
6
7.SH SYNTAX
8.ft R
9.SH C Syntax
10.nf
11#include <mpi.h>
12int MPI_Ibsend(void *\fIbuf\fP, int\fI count\fP, MPI_Datatype\fI datatype\fP,
13        int\fI dest\fP, 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_IBSEND(\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::Ibsend(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
38Data type 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_Ibsend posts a buffered-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
65.SH ERRORS
66Almost 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.
67.sp
68Before the error value is returned, the current MPI error handler is
69called. 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. 
70
71.SH SEE ALSO
72MPI_Test
73MPI_Wait
74.br
75
76
Note: See TracBrowser for help on using the repository browser.