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

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

Adding compiled files

File size: 2.2 KB
Line 
1.\"Copyright 2006-2008 Sun Microsystems, Inc.
2.\" Copyright (c) 1996 Thinking Machines Corporation
3.TH MPI_File_iwrite_shared 3 "Dec 08, 2009" "1.4" "Open MPI"
4.SH NAME
5\fBMPI_File_iwrite_shared\fP \- Writes a file using the shared file pointer (nonblocking, noncollective).
6
7
8
9.SH SYNTAX
10.ft R
11.nf
12C Syntax
13    #include <mpi.h>
14    int MPI_File_(MPI_File \fIfh\fP, void \fI*buf\fP, int \fIcount\fP, MPI_Datatype
15              \fIdatatype\fP, MPI_Request \fI*request\fP)
16
17Fortran Syntax
18    INCLUDE 'mpif.h'
19    MPI_File_(\fIFH\fP, \fIBUF\fP, \fICOUNT\fP, \fIDATATYPE\fP, \fIREQUEST\fP,\fI IERROR\fP)
20                <type>          BUF(*)
21                INTEGER         FH, COUNT, DATATYPE, REQUEST, IERROR
22
23.SH C++ Syntax
24.nf
25#include <mpi.h>
26MPI::Request MPI::File::Iwrite_shared(const void* \fIbuf\fP, int \fIcount\fP,
27        const MPI::Datatype& \fIdatatype\fP)
28
29.SH INPUT/OUTPUT PARAMETER
30.ft R
31.TP 1i
32fh   
33File handle (handle).
34
35.SH INPUT PARAMETERS
36.ft R
37.TP 1i
38count
39Number of elements in buffer (integer).
40.ft R
41.TP 1i
42datatype
43Data type of each buffer element (handle).
44
45.SH OUTPUT PARAMETERS
46.ft R
47.TP 1i
48buf
49Initial address of buffer (choice).
50.TP 1i
51request
52Request object (handle).
53.TP 1i
54IERROR
55Fortran only: Error status (integer).
56
57.SH DESCRIPTION
58.ft R
59MPI_File_iwrite_shared is a nonblocking routine that uses the shared file pointer to write files. The order of serialization is not deterministic for this noncollective routine, so you need to use other methods of synchronization to impose a particular order.
60
61.SH ERRORS
62Almost 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.
63.sp
64Before the error value is returned, the current MPI error handler is
65called. For MPI I/O function errors, the default error handler is set to MPI_ERRORS_RETURN. The error handler may be changed with MPI_File_set_errhandler; the predefined error handler MPI_ERRORS_ARE_FATAL may be used to make I/O errors fatal. Note that MPI does not guarantee that an MPI program can continue past an error. 
66
Note: See TracBrowser for help on using the repository browser.