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

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

Adding compiled files

File size: 2.6 KB
Line 
1.\"Copyright 2006-2008 Sun Microsystems, Inc.
2.\" Copyright (c) 1996 Thinking Machines Corporation
3.TH MPI_File_read_all_begin 3 "Dec 08, 2009" "1.4" "Open MPI"
4.SH NAME
5\fBMPI_File_read_all_begin\fP \- Reads a file starting at the locations specified by individual file pointers; beginning part of a split collective routine (nonblocking).
6
7.SH SYNTAX
8.ft R
9.nf
10C Syntax
11    #include <mpi.h>
12    int MPI_File_read_all_begin(MPI_File \fIfh\fP, void \fI*buf\fP,
13              int \fIcount\fP, MPI_Datatype \fIdatatype\fP)
14
15Fortran Syntax
16    INCLUDE 'mpif.h'
17    MPI_FILE_READ_ALL_BEGIN(\fIFH\fP, \fIBUF\fP, \fICOUNT\fP, \fIDATATYPE\fP,\fI IERROR\fP)
18                <TYPE>          \fIBUF\fP(*)
19                INTEGER         \fIFH, COUNT, DATATYPE, IERROR\fP
20
21.SH C++ Syntax
22.nf
23#include <mpi.h>
24void MPI::File::Read_all_begin(void* \fIbuf\fP, int \fIcount\fP,
25        const MPI::Datatype& \fIdatatype\fP)
26
27.SH INPUT/OUTPUT PARAMETER
28.ft R
29.TP 1i
30fh   
31File handle (handle).
32
33.SH INPUT PARAMETERS
34.ft R
35.TP 1i
36count
37Number of elements in buffer (integer).
38.ft R
39.TP 1i
40datatype
41Data type of each buffer element (handle).
42
43.SH OUTPUT PARAMETERS
44.ft R
45.TP 1i
46buf
47Initial address of buffer (choice).
48.TP 1i
49IERROR
50Fortran only: Error status (integer).
51
52.SH DESCRIPTION
53.ft R
54MPI_File_read_all_begin is the beginning part of a split collective operation that attempts to read from the file associated with
55.I fh
56(at the current individual file pointer position maintained by the system) a total number of
57.I count
58data items having
59.I datatype
60type into the user's buffer
61.I buf.
62The data is taken out of those parts of the
63file specified by the current view.
64
65.SH NOTES
66.ft R
67All the nonblocking collective routines for data access are "split" into two routines, each with _begin or _end as a suffix. These split collective routines are subject to the semantic rules described in Section 9.4.5 of the MPI-2 standard.
68
69.SH ERRORS
70Almost 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.
71.sp
72Before the error value is returned, the current MPI error handler is
73called. 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. 
74
Note: See TracBrowser for help on using the repository browser.