Properly terminate verbatim nroff sequences (so that webified man
pages are rendered properly!). This commit was SVN r23865.
Этот коммит содержится в:
родитель
21a5f855e5
Коммит
b7d48fce0c
@ -1,4 +1,4 @@
|
||||
.\"Copyright 2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Abort 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Abort(MPI_Comm \fIcomm\fP, int\fI errorcode\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.ft R
|
||||
.nf
|
||||
@ -19,11 +20,13 @@ INCLUDE 'mpif.h'
|
||||
MPI_ABORT(\fICOMM\fP, \fIERRORCODE\fP, \fIIERROR\fP)
|
||||
INTEGER \fICOMM\fP,\fI ERRORCODE\fP,\fI IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void Comm::Abort(int \fIerrorcode\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Accumulate 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -15,6 +15,7 @@ int MPI_Accumulate(void *\fIorigin_addr\fP, int \fIorigin_count\fP,
|
||||
MPI_Aint \fItarget_disp\fP, int \fItarget_count\fP,
|
||||
MPI_Datatype \fItarget_datatype\fP, MPI_Op \fIop\fP, MPI_Win \fIwin\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax (see FORTRAN 77 NOTES)
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -25,6 +26,7 @@ MPI_ACCUMULATE(\fIORIGIN_ADDR, ORIGIN_COUNT, ORIGIN_DATATYPE, TARGET_RANK,
|
||||
INTEGER \fIORIGIN_COUNT, ORIGIN_DATATYPE, TARGET_RANK, TARGET_COUNT,
|
||||
TARGET_DATATYPE, OP, WIN, IERROR \fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -33,6 +35,7 @@ void MPI::Win::Accumulate(const void* \fIorigin_addr\fP, int \fIorigin_count\fP,
|
||||
MPI::Aint \fItarget_disp\fP, int \fItarget_count\fP, const MPI::Datatype&
|
||||
\fItarget_datatype\fP, const MPI::Op& \fIop\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Add_error_class 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
.nf
|
||||
\fBMPI_Add_error_class\fP \- Creates a new error class and returns its value
|
||||
|
||||
.fi
|
||||
.SH SYNTAX
|
||||
.ft R
|
||||
|
||||
@ -15,17 +16,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Add_error_class(int *\fIerrorclass\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_ADD_ERROR_CLASS(\fIERRORCLASS, IERROR\fP)
|
||||
INTEGER \fIERRORCLASS, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
int MPI::Add_error_class()
|
||||
|
||||
.fi
|
||||
.SH OUTPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1.4i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Add_error_code 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
|
||||
@ -15,17 +15,20 @@ with \fIerrorclass\fP
|
||||
#include <mpi.h>
|
||||
int MPI_Add_error_code(int \fIerrorclass\fP, int *\fIerrorcode\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_ADD_ERROR_CODE(\fIERRORCLASS, ERRORCODE, IERROR\fP)
|
||||
INTEGER \fI ERRORCLASS, ERRORCODE, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
int MPI::Add_error_code(int \fIerrorclass\fP, int* \fIerrorcode\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1.4i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Add_error_string 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
.nf
|
||||
\fBMPI_Add_error_string\fP \- Associates a string with an error code or class
|
||||
|
||||
.fi
|
||||
.SH SYNTAX
|
||||
.ft R
|
||||
|
||||
@ -15,6 +16,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Add_error_string(int \fIerrorcode\fP, char *\fIstring\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -22,11 +24,13 @@ MPI_ADD_ERROR_STRING(\fIERRORCODE, STRING, IERROR\fP)
|
||||
INTEGER \fIERRORCODE, IERROR\fP
|
||||
CHARACTER*(*) \fISTRING\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::Add_error_string(int \fIerrorcode\fP, const char* \fIstring\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1.4i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Address 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Address(void *\fIlocation\fP, MPI_Aint\fP *address\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -20,6 +21,7 @@ MPI_ADDRESS(\fILOCATION\fP,\fI ADDRESS\fP,\fI IERROR\fP)
|
||||
INTEGER \fIADDRESS\fP,\fI IERROR\fP
|
||||
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
@ -48,6 +50,7 @@ Example: Using MPI_Address for an array.
|
||||
.sp
|
||||
.nf
|
||||
REAL A(100,100)
|
||||
.fi
|
||||
.br
|
||||
INTEGER I1, I2, DIFF
|
||||
.br
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Allgather 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -14,6 +14,7 @@ int MPI_Allgather(void\fI *sendbuf\fP, int \fI sendcount\fP,
|
||||
MPI_Datatype\fI sendtype\fP, void\fI *recvbuf\fP, int\fI recvcount\fP,
|
||||
MPI_Datatype\fI recvtype\fP, MPI_Comm\fI comm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -23,6 +24,7 @@ MPI_ALLGATHER(\fISENDBUF\fP,\fI SENDCOUNT\fP,\fI SENDTYPE\fP,\fI RECVBUF\fP,\fI
|
||||
INTEGER \fISENDCOUNT\fP,\fI SENDTYPE\fP,\fI RECVCOUNT\fP,\fI RECVTYPE\fP,\fI COMM\fP,
|
||||
INTEGER \fIIERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -30,6 +32,7 @@ void MPI::Comm::Allgather(const void* \fIsendbuf\fP, int \fIsendcount\fP, const
|
||||
MPI::Datatype& \fIsendtype\fP, void* \fIrecvbuf\fP, int \fIrecvcount\fP,
|
||||
const MPI::Datatype& \fIrecvtype\fP) const = 0
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
@ -72,6 +75,7 @@ The outcome of a call to MPI_Allgather(\&...) is as if all processes executed n
|
||||
.nf
|
||||
MPI_Gather(sendbuf,sendcount,sendtype,recvbuf,recvcount,
|
||||
recvtype,root,comm),
|
||||
.fi
|
||||
.sp
|
||||
.fi
|
||||
for root = 0 , ..., n-1. The rules for correct usage of MPI_Allgather are easily found from the corresponding rules for MPI_Gather.
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2007-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2007-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Allgatherv 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -14,6 +14,7 @@ int MPI_Allgatherv(void\fI *sendbuf\fP, int\fI sendcount\fP,
|
||||
MPI_Datatype\fI sendtype\fP, void\fI *recvbuf\fP, int\fI *recvcount\fP,
|
||||
int\fI *displs\fP, MPI_Datatype\fI recvtype\fP, MPI_Comm\fI comm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -23,6 +24,7 @@ MPI_ALLGATHERV(\fISENDBUF\fP,\fI SENDCOUNT\fP, \fISENDTYPE\fP,\fI RECVBUF\fP,
|
||||
INTEGER \fISENDCOUNT\fP,\fI SENDTYPE\fP, \fIRECVCOUNT\fP(*),
|
||||
INTEGER \fIDISPLS\fP(*),\fI RECVTYPE\fP,\fI COMM\fP,\fI IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -31,6 +33,7 @@ void MPI::Comm::Allgatherv(const void* \fIsendbuf\fP, int \fIsendcount\fP,
|
||||
const int \fIrecvcounts\fP[], const int \fIdispls\fP[],
|
||||
const MPI::Datatype& \fIrecvtype\fP) const = 0
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Alloc_mem 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Alloc_mem(MPI_Aint \fIsize\fP, MPI_Info \fIinfo\fP, void *\fIbaseptr\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax (see FORTRAN NOTES)
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -19,11 +20,13 @@ MPI_ALLOC_MEM(\fISIZE, INFO, BASEPTR, IERROR\fP)
|
||||
INTEGER \fIINFO, IERROR\fP
|
||||
INTEGER(KIND=MPI_ADDRESS_KIND) \fISIZE, BASEPTR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void* MPI::Alloc_mem(MPI::Aint \fIsize\fP, const MPI::Info& \fIinfo\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2007-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2007-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Allreduce 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,6 +13,7 @@
|
||||
int MPI_Allreduce(void \fI*sendbuf\fP, void \fI*recvbuf\fP, int\fI count\fP,
|
||||
MPI_Datatype\fI datatype\fP, MPI_Op\fI op\fP, MPI_Comm\fI comm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -21,6 +22,7 @@ MPI_ALLREDUCE(\fISENDBUF\fP,\fI RECVBUF\fP, \fICOUNT\fP,\fI DATATYPE\fP,\fI OP\f
|
||||
<type> \fISENDBUF\fP(*), \fIRECVBUF\fP(*)
|
||||
INTEGER \fICOUNT\fP,\fI DATATYPE\fP,\fI OP\fP,\fI COMM\fP,\fI IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -28,6 +30,7 @@ void MPI::Comm::Allreduce(const void* \fIsendbuf\fP, void* \fIrecvbuf\fP,
|
||||
int \fIcount\fP, const MPI::Datatype& \fIdatatype\fP, const
|
||||
MPI::Op& \fIop\fP) const=0
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Alltoall 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
|
||||
@ -16,6 +16,7 @@ int MPI_Alltoall(void *\fIsendbuf\fP, int \fIsendcount\fP,
|
||||
MPI_Datatype \fIsendtype\fP, void *\fIrecvbuf\fP, int \fIrecvcount\fP,
|
||||
MPI_Datatype \fIrecvtype\fP, MPI_Comm \fIcomm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -26,6 +27,7 @@ MPI_ALLTOALL(\fISENDBUF, SENDCOUNT, SENDTYPE, RECVBUF, RECVCOUNT,
|
||||
INTEGER \fISENDCOUNT, SENDTYPE, RECVCOUNT, RECVTYPE\fP
|
||||
INTEGER \fICOMM, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -33,6 +35,7 @@ void MPI::Comm::Alltoall(const void* \fIsendbuf\fP, int \fIsendcount\fP,
|
||||
const MPI::Datatype& \fIsendtype\fP, void* \fIrecvbuf\fP,
|
||||
int \fIrecvcount\fP, const MPI::Datatype& \fIrecvtype\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1.2i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Alltoallv 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
|
||||
@ -16,6 +16,7 @@ int MPI_Alltoallv(void *\fIsendbuf\fP, int *\fIsendcounts\fP,
|
||||
void *\fIrecvbuf\fP, int\fI *recvcounts\fP,
|
||||
int *\fIrdispls\fP, MPI_Datatype \fIrecvtype\fP, MPI_Comm \fIcomm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -28,6 +29,7 @@ MPI_ALLTOALLV(\fISENDBUF, SENDCOUNTS, SDISPLS, SENDTYPE,
|
||||
INTEGER \fIRECVCOUNTS(*), RDISPLS(*), RECVTYPE\fP
|
||||
INTEGER \fICOMM, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -37,6 +39,7 @@ void MPI::Comm::Alltoallv(const void* \fIsendbuf\fP,
|
||||
const int \fIrecvcounts\fP[], const int \fIrdispls\fP[],
|
||||
const MPI::Datatype& \fIrecvtype\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1.2i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Alltoallw 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
|
||||
@ -17,6 +17,7 @@ int MPI_Alltoallw(void *\fIsendbuf\fP, int *\fIsendcounts\fP,
|
||||
void *\fIrecvbuf\fP, int *\fIrecvcounts\fP,
|
||||
int *\fIrdispls\fP, MPI_Datatype *\fIrecvtypes\fP, MPI_Comm \fIcomm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -28,6 +29,7 @@ MPI_ALLTOALLW(\fISENDBUF, SENDCOUNTS, SDISPLS, SENDTYPES,
|
||||
INTEGER \fIRECVCOUNTS(*), RDISPLS(*), RECVTYPES(*)\fP
|
||||
INTEGER \fICOMM, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -37,6 +39,7 @@ void MPI::Comm::Alltoallw(const void* \fIsendbuf\fP,
|
||||
const int \fIrecvcounts\fP[], const int \fIrdispls\fP[],
|
||||
const MPI::Datatype \fIrecvtypes\fP[])
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1.2i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Attr_delete 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Attr_delete(MPI_Comm\fI comm\fP, int\fI keyval\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -19,6 +20,7 @@ MPI_ATTR_DELETE(\fICOMM\fP,\fI KEYVAL\fP, \fIIERROR\fP)
|
||||
INTEGER \fICOMM\fP,\fI KEYVAL\fP,\fI IERROR\fP
|
||||
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Attr_get 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,6 +13,7 @@
|
||||
int MPI_Attr_get(MPI_Comm \fIcomm\fP, int\fI keyval\fP,void\fI *attribute_val\fP,
|
||||
int\fI *flag \fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -21,6 +22,7 @@ MPI_ATTR_GET(\fICOMM\fP,\fI KEYVAL\fP, \fIATTRIBUTE_VAL\fP,\fI FLAG\fP,\fI IERRO
|
||||
LOGICAL \fIFLAG\fP
|
||||
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Attr_put 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Attr_put(MPI_Comm \fIcomm\fP, int\fI keyval\fP, void\fI *attribute_val\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -19,6 +20,7 @@ MPI_ATTR_PUT(\fICOMM\fP,\fI KEYVAL\fP, \fIATTRIBUTE_VAL\fP,\fI IERROR\fP)
|
||||
INTEGER \fICOMM\fP,\fI KEYVAL\fP,\fI ATTRIBUTE_VAL\fP,\fI IERROR
|
||||
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Barrier 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Barrier(MPI_Comm \fIcomm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_BARRIER(\fICOMM\fP,\fI IERROR\fP)
|
||||
INTEGER \fICOMM\fP,\fI IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::Comm::Barrier() const = 0
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Bcast 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,6 +13,7 @@
|
||||
int MPI_Bcast(void \fI*buffer\fP, int\fI count\fP, MPI_Datatype\fI datatype\fP,
|
||||
int\fI root\fP, MPI_Comm\fI comm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -20,12 +21,14 @@ MPI_BCAST(\fIBUFFER\fP,\fI COUNT\fP, \fIDATATYPE\fP,\fI ROOT\fP,\fI COMM\fP,\fI
|
||||
<type> \fIBUFFER\fP(*)
|
||||
INTEGER \fICOUNT\fP,\fI DATATYPE\fP,\fI ROOT\fP,\fI COMM\fP,\fI IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::Comm::Bcast(void* \fIbuffer\fP, int \fIcount\fP,
|
||||
const MPI::Datatype& \fIdatatype\fP, int \fIroot\fP) const = 0
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Bsend 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,6 +13,7 @@
|
||||
int MPI_Bsend(void \fI*buf\fP, int\fI count\fP, MPI_Datatype\fI datatype\fP,
|
||||
int\fI dest\fP, int\fI tag\fP, MPI_Comm\fI comm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -20,12 +21,14 @@ MPI_BSEND(\fIBUF\fP,\fI COUNT\fP,\fIDATATYPE\fP,\fI DEST\fP,\fI TAG\fP,\fI COMM\
|
||||
<type> \fIBUF\fP(*)
|
||||
INTEGER \fICOUNT\fP,\fI DATATYPE\fP,\fI DEST\fP,\fI TAG\fP,\fI COMM\fP,\fI IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void Comm::Bsend(const void* \fIbuf\fP, int \fIcount\fP, const
|
||||
Datatype& \fIdatatype\fP, int \fIdest\fP, int \fItag\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Bsend_init 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,6 +13,7 @@
|
||||
int MPI_Bsend_init(void \fI*buf\fP, int\fI count\fP, MPI_Datatype\fI datatype\fP,
|
||||
int\fI dest\fP, int\fI tag\fP, MPI_Comm\fI comm\fP, MPI_Request\fI *request\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -22,12 +23,14 @@ MPI_BSEND_INIT(\fIBUF\fP,\fI COUNT\fP, \fIDATATYPE\fP,\fI DEST\fP,\fI TAG\fP,\fI
|
||||
INTEGER \fICOUNT\fP,\fI DATATYPE\fP, \fIDEST\fP,\fI TAG\fP,
|
||||
INTEGER \fICOMM\fP,\fI REQUEST\fP,\fI IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
Prequest Comm::Bsend_init(const void* \fIbuf\fP, int \fIcount\fP, const
|
||||
Datatype& \fIdatatype\fP, int \fIdest\fP, int \fItag\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\"Copyright (c) 1996 Thinking Machines
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines
|
||||
.TH MPI_Buffer_attach 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Buffer_attach\fP \- Attaches a user-defined buffer for sending.
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Buffer_attach(void \fI*buf\fP, int\fI size\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -19,11 +20,13 @@ MPI_BUFFER_ATTACH(\fIBUF\fP,\fI SIZE\fP, \fIIERROR\fP)
|
||||
<type> \fIBUF\fP(\fI*\fP)
|
||||
INTEGER \fISIZE\fP,\fI IERROR \fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void Attach_buffer(void* \fIbuffer\fP, int \fIsize\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Buffer_detach 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Buffer_detach(void \fI*buf\fP, int\fI *size\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -19,11 +20,13 @@ MPI_BUFFER_DETACH(\fIBUF\fP,\fI SIZE\fP, \fIIERROR\fP)
|
||||
<type> \fIBUF\fP(\fI*\fP)
|
||||
INTEGER \fISIZE\fP,\fI IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
int Detach_buffer(void*& \fIbuffer\fP)
|
||||
|
||||
.fi
|
||||
.SH OUTPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Cancel 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Cancel(MPI_Request\fI *request\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_CANCEL(\fIREQUEST\fP, \fIIERROR\fP)
|
||||
INTEGER \fIREQUEST\fP, \fIIERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void Request::Cancel() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Cart_coords 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,18 +13,21 @@
|
||||
int MPI_Cart_coords(MPI_Comm \fIcomm\fP, int\fI rank\fP, int\fI maxdims\fP,
|
||||
int\fI *coords\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_CART_COORDS(\fICOMM\fP,\fI RANK\fP,\fI MAXDIMS\fP,\fI COORDS\fP, \fIIERROR\fP)
|
||||
INTEGER \fICOMM\fP,\fI RANK\fP,\fI MAXDIMS\fP,\fI COORDS(\fI*\fP)\fP,\fI IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void Cartcomm::Get_coords(int \fIrank\fP, int \fImaxdims\fP,
|
||||
int \fIcoords\fP[]) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Cart_create 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,6 +13,7 @@
|
||||
int MPI_Cart_create(MPI_Comm\fI comm_old\fP, int\fI ndims\fP, int\fI *dims\fP,
|
||||
int\fI *periods\fP, int\fI reorder\fP, MPI_Comm\fI *comm_cart\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -21,12 +22,14 @@ MPI_CART_CREATE(\fICOMM_OLD\fP,\fI NDIMS\fP,\fI DIMS\fP,\fI PERIODS\fP,\fI REORD
|
||||
INTEGER \fICOMM_OLD\fP,\fI NDIMS\fP,\fI DIMS\fP(*),\fI COMM_CART\fP,\fI IERROR\fP
|
||||
LOGICAL \fIPERIODS\fI(*),\fI REORDER\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
Cartcomm Intracomm::Create_cart(int \fIndims\fP, const int \fIdims\fP[],
|
||||
const bool \fIperiods\fP[], bool \fIreorder\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Cart_get 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,6 +13,7 @@
|
||||
int MPI_Cart_get(MPI_Comm\fI comm\fP, int\fI maxdims\fP, int\fI *dims\fP, int\fI *periods\fP,
|
||||
int\fI *coords\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -20,12 +21,14 @@ MPI_CART_GET(\fICOMM\fP, \fIMAXDIMS\fP, \fIDIMS\fP, \fIPERIODS\fP, \fICOORDS\fP,
|
||||
INTEGER \fICOMM\fP, \fIMAXDIMS\fP, \fIDIMS\fP(*), \fICOORDS\fP(*), \fIIERROR\fP
|
||||
LOGICAL \fIPERIODS\fP(*)
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void Cartcomm::Get_topo(int \fImaxdims\fP, int \fIdims\fP[],
|
||||
bool \fIperiods\fP[], int \fIcoords\fP[]) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Cart_map 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,6 +13,7 @@
|
||||
int MPI_Cart_map(MPI_Comm \fIcomm\fP, int\fI ndims\fP, int\fI *dims\fP,
|
||||
int\fI *periods\fP, int\fI *newrank\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -20,12 +21,14 @@ MPI_CART_MAP(\fICOMM, NDIMS, DIMS, PERIODS, NEWRANK, IERROR\fP)
|
||||
INTEGER \fICOMM, NDIMS, DIMS(*), NEWRANK, IERROR\fP
|
||||
LOGICAL \fIPERIODS\fP(*)
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
int Cartcomm::Map(int \fIndims\fP, const int \fIdims\fP[],
|
||||
const bool \fIperiods\fP[]) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Cart_rank 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Cart_rank(MPI_Comm \fIcomm\fP, int\fI *coords\fP, int\fI *rank\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_CART_RANK(\fICOMM, COORDS, RANK, IERROR\fP)
|
||||
INTEGER \fICOMM, COORDS(*), RANK, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
int Cartcomm::Get_cart_rank(const int \fIcoords\fP[]) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\"Copyright (c) 1996 Thinking Machines
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines
|
||||
.TH MPI_Cart_shift 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Cart_shift \fP \- Returns the shifted source and destination ranks, given a shift direction and amount.
|
||||
@ -13,6 +13,7 @@
|
||||
int MPI_Cart_shift(MPI_Comm \fIcomm\fP, int\fI direction\fP, int\fI disp\fP,
|
||||
int\fI *rank_source\fP, int\fI *rank_dest\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -21,12 +22,14 @@ MPI_CART_SHIFT(\fICOMM, DIRECTION, DISP, RANK_SOURCE,
|
||||
INTEGER \fICOMM, DIRECTION, DISP, RANK_SOURCE\fP
|
||||
INTEGER \fIRANK_DEST, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void Cartcomm::Shift(int \fIdirection\fP, int \fIdisp\fP, int& \fIrank_source\fP,
|
||||
int& \fIrank_dest\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Cart_sub 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Cart_sub(MPI_Comm \fIcomm\fP, int\fI *remain_dims\fP, MPI_Comm\fI *comm_new\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -19,11 +20,13 @@ MPI_CART_SUB(\fICOMM, REMAIN_DIMS, COMM_NEW, IERROR\fP)
|
||||
INTEGER \fICOMM, COMM_NEW, IERROR\fP
|
||||
LOGICAL \fIREMAIN_DIMS\fP(*)
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
Cartcomm Cartcomm::Sub(const bool \fIremain_dims\fP[]) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Cartdim_get 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Cartdim_get(MPI_Comm\fI comm\fP, int\fI *ndims\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_CARTDIM_GET(\fICOMM, NDIMS, IERROR\fP)
|
||||
INTEGER \fICOMM, NDIMS, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
int Cartcomm::Get_dim() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Close_port 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Close_port(char *\fIport_name\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -19,11 +20,13 @@ MPI_CLOSE_PORT(\fIPORT_NAME, IERROR\fP)
|
||||
CHARACTER*(*) \fIPORT_NAME\fP
|
||||
INTEGER \fIIERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::Close_port(const char* \fIport_name\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2009-2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2007, Sun Microsystems, Inc.
|
||||
.\" Copyright 2009-2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2007, Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_accept 3OpenMPI "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_accept(char *\fIport_name\fP, MPI_Info \fIinfo\fP, int \fIroot\fP, MPI_Comm \fIcomm\fP, MPI_Comm *\fInewcomm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -19,12 +20,14 @@ MPI_COMM_ACCEPT(\fIPORT_NAME, INFO, ROOT, COMM, NEWCOMM, IERROR\fP)
|
||||
CHARACTER*(*) \fIPORT_NAME\fP
|
||||
INTEGER \fIINFO, ROOT, COMM, NEWCOMM, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Intercomm MPI::Intracomm::Accept(const char* \fIport_name\fP,
|
||||
const MPI::Info& \fIinfo\fP, int \fIroot\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_call_errhandler 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -15,17 +15,20 @@ error handler assigned to a communicator
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_call_errhandler(MPI_Comm \fIcomm\fP, int \fIerrorcode\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_CALL_ERRHANDLER(\fICOMM, ERRORCODE, IERROR\fP)
|
||||
INTEGER \fICOMM, ERRORCODE, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::Comm::Call_errhandler(int \fIerrorcode\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1.4i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_compare 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_compare(MPI_Comm \fIcomm1\fP, MPI_Comm\fI comm2\fP, int\fI *result\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_COMPARE(\fICOMM1, COMM2, RESULT, IERROR\fP)
|
||||
INTEGER \fICOMM1, COMM2, RESULT, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
static int Comm::Compare(const Comm& \fIcomm1\fP, const Comm& \fIcomm2\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2007-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2007-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_connect 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,6 +13,7 @@
|
||||
int MPI_Comm_connect(char *\fIport_name\fP, MPI_Info \fIinfo\fP, int \fIroot\fP,
|
||||
MPI_Comm \fIcomm\fP, MPI_Comm *\fInewcomm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -20,12 +21,14 @@ MPI_COMM_CONNECT(\fIPORT_NAME, INFO, ROOT, COMM, NEWCOMM, IERROR\fP)
|
||||
CHARACTER*(*) \fIPORT_NAME\fP
|
||||
INTEGER \fIINFO, ROOT, COMM, NEWCOMM, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Intercomm MPI::Intracomm::Connect(const char* \fIport_name\fP,
|
||||
const MPI::Info& \fIinfo\fP, int \fIroot\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_create 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,12 +12,14 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_create(MPI_Comm \fIcomm\fP, MPI_Group\fI group\fP, MPI_Comm\fI *newcomm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_CREATE(\fICOMM, GROUP, NEWCOMM, IERROR\fP)
|
||||
INTEGER \fICOMM, GROUP, NEW, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -25,6 +27,7 @@ MPI::Intercomm MPI::Intercomm::Create(const Group& \fIgroup\fP) const
|
||||
|
||||
MPI::Intracomm MPI::Intracomm::Create(const Group& \fIgroup\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2009-2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2009-2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_create_errhandler 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,6 +13,7 @@
|
||||
int MPI_Comm_create_errhandler(MPI_Comm_errhandler_function \fI*function\fP,
|
||||
MPI_Errhandler *\fIerrhandler\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -20,6 +21,7 @@ MPI_COMM_CREATE_ERRHANDLER(\fIFUNCTION, ERRHANDLER, IERROR\fP)
|
||||
EXTERNAL \fIFUNCTION\fP
|
||||
INTEGER \fIERRHANDLER, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -27,6 +29,7 @@ static MPI::Errhandler
|
||||
MPI::Comm::Create_errhandler(MPI::Comm::Errhandler_function*
|
||||
\fIfunction\fP)
|
||||
|
||||
.fi
|
||||
.SH DEPRECATED TYPE NAME NOTE
|
||||
.ft R
|
||||
MPI-2.2 deprecated the MPI_Comm_errhandler_fn and
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\"Copyright (c) 1996 Thinking Machines
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines
|
||||
.TH MPI_Comm_create_keyval 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Comm_create_keyval\fP \- Generates a new attribute key.
|
||||
@ -15,6 +15,7 @@ int MPI_Comm_create_keyval(MPI_Comm_copy_attr_function
|
||||
*\fIcomm_delete_attr_fn\fP, int *\fIcomm_keyval\fP,
|
||||
void *\fIextra_state\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax (see FORTRAN 77 NOTES)
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -25,6 +26,7 @@ MPI_COMM_CREATE_KEYVAL(\fICOMM_COPY_ATTR_FN, COMM_DELETE_ATTR_FN,
|
||||
INTEGER \fICOMM_KEYVAL, IERROR \fP
|
||||
INTEGER(KIND=MPI_ADDRESS_KIND) \fIEXTRA_STATE\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -33,6 +35,7 @@ static in MPI::Comm::Create_keyval(MPI::Comm::Copy_attr_function*
|
||||
MPI::Comm::Delete_attr_function* \fIcomm_delete_attr_fn\fP,
|
||||
void* \fIextra_state\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\"Copyright (c) 1996 Thinking Machines
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines
|
||||
.TH MPI_Comm_delete_attr 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Comm_delete_attr\fP \- Deletes attribute value associated with a key.
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_delete_attr(MPI_Comm \fIcomm\fP, int \fIcomm_keyval\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_Comm_delete_attr(\fICOMM, COMM_KEYVAL, IERROR\fP)
|
||||
INTEGER \fICOMM, COMM_KEYVAL, IERROR \fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::Comm::Delete_attr(int \fIcomm_keyval\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\"Copyright (c) 1996 Thinking Machines
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines
|
||||
.TH MPI_Comm_disconnect 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Comm_disconnect\fP \- Deallocates communicator object and sets handle to MPI_COMM_NULL.
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_disconnect(MPI_Comm *\fIcomm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_DISCONNECT(\fICOMM, IERROR\fP)
|
||||
INTEGER \fICOMM, IERROR \fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::Comm::Disconnect()
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_dup 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,12 +12,14 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_dup(MPI_Comm \fIcomm\fP, MPI_Comm\fI *newcomm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_DUP(\fICOMM, NEWCOMM, IERROR\fP)
|
||||
INTEGER \fICOMM, NEWCOMM, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -25,6 +27,7 @@ Intracomm Intracomm::Dup() const
|
||||
|
||||
Intercomm Intercomm::Dup() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_f2c 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -33,6 +33,7 @@ MPI_Fint MPI_Type_c2f(MPI_Datatype \fIdatatype\fP)
|
||||
MPI_Win MPI_Win_f2c(MPI_Fint \fIwin\fP)
|
||||
MPI_Fint MPI_Win_c2f(MPI_Win \fIwin\fP)
|
||||
|
||||
.fi
|
||||
.SH DESCRIPTION
|
||||
.ft R
|
||||
Handles are passed between Fortran and C or C++ by using an explicit C wrapper to convert Fortran handles to C handles. There is no direct access to C or C++ handles in Fortran. Handles are passed between C and C++ using overloaded C++ operators called from C++ code. There is no direct access to C++ objects from C. The type definition \fIMPI_Fint\fP is provided in C/C++ for an integer of the size that matches a Fortran \fIINTEGER\fP; usually, \fIMPI_Fint\fP will be equivalent to \fIint\fP. The handle translation functions are provided in C to convert from a Fortran handle (which is an integer) to a C handle, and vice versa.
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_free 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_free(MPI_Comm *\fIcomm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_FREE(\fICOMM, IERROR\fP)
|
||||
INTEGER \fICOMM, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void Comm::Free()
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\"Copyright (c) 1996 Thinking Machines
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines
|
||||
.TH MPI_Comm_free_keyval 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Comm_free_keyval\fP \- Frees attribute key for communicator cache attribute.
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_free_keyval(int *\fIcomm_keyval\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_FREE_KEYVAL(\fICOMM_KEYVAL, IERROR\fP)
|
||||
INTEGER \fICOMM_KEYVAL, IERROR \fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
static void MPI::Comm::Free_keyval(int& \fIcomm_keyval\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\"Copyright (c) 1996 Thinking Machines
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines
|
||||
.TH MPI_Comm_get_attr 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Comm_get_attr\fP \- Retrieves attribute value by key.
|
||||
@ -13,6 +13,7 @@
|
||||
int MPI_Comm_get_attr(MPI_Comm \fIcomm\fP, int \fIcomm_keyval\fP,
|
||||
void *\fIattribute_val\fP, int *\fIflag\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax (see FORTRAN 77 NOTES)
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -21,12 +22,14 @@ MPI_COMM_GET_ATTR(\fICOMM, COMM_KEYVAL, ATTRIBUTE_VAL, IERROR\fP)
|
||||
INTEGER(KIND=MPI_ADDRESS_KIND) \fIATTRIBUTE_VAL\fP
|
||||
LOGICAL \fIFLAG\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
bool MPI::Comm::Get_attr(int \fIcomm_keyval\fP, void* \fIattribute_val\fP)
|
||||
const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_get_errhandler 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,17 +13,20 @@
|
||||
int MPI_Comm_get_errhandler(MPI_Comm \fIcomm\fP,
|
||||
MPI_Errhandler *\fIerrhandler\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_GET_ERRHANDLER(\fICOMM, ERRHANDLER, IERROR\fP)
|
||||
INTEGER \fICOMM, ERRHANDLER, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Errhandler MPI::Comm::Get_errhandler() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\"Copyright (c) 1996 Thinking Machines
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines
|
||||
.TH MPI_Comm_get_name 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Comm_get_name\fP \- Returns the name that was most recently associated with a communicator.
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_get_name(MPI_Comm \fIcomm\fP, char *\fIcomm_name\fP, int *\fIresultlen\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -19,11 +20,13 @@ MPI_COMM_GET_NAME(\fICOMM, COMM_NAME, RESULTLEN, IERROR\fP)
|
||||
INTEGER \fICOMM, RESULTLEN, IERROR \fP
|
||||
CHARACTER*(*) \fICOMM_NAME\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::Comm::Get_name(char* \fIcomm_name\fP, int& \fIresultlen\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\"Copyright (c) 1996 Thinking Machines
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines
|
||||
.TH MPI_Comm_get_parent 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Comm_get_parent\fP \- Returns the parent intercommunicator of current spawned process.
|
||||
@ -12,18 +12,21 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_get_parent(MPI_Comm *\fIparent\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_GET_PARENT(\fIPARENT, IERROR\fP)
|
||||
INTEGER \fIPARENT, IERROR \fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
static MPI::Intercomm MPI::Comm::Get_parent()
|
||||
|
||||
|
||||
.fi
|
||||
.SH OUTPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_group 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_group(MPI_Comm \fIcomm\fP, MPI_Group *\fIgroup\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_GROUP(\fICOMM, GROUP, IERROR\fP)
|
||||
INTEGER \fICOMM, GROUP, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
Group Comm::Get_group() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_join 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
|
||||
@ -14,17 +14,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_join(int \fIfd\fP, MPI_Comm *\fIintercomm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_JOIN(\fIFD, INTERCOMM, IERROR\fP)
|
||||
INTEGER \fIFD, INTERCOMM, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Intercomm MPI::Comm::Join(const int \fIfd\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_rank 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_rank(MPI_Comm \fIcomm\fP, int\fI *rank\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_RANK(\fICOMM, RANK, IERROR\fP)
|
||||
INTEGER \fICOMM, RANK, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
int Comm::Get_rank() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_remote_group 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_remote_group(MPI_Comm \fIcomm\fP, MPI_Group\fI *group\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_REMOTE_GROUP(\fICOMM, GROUP, IERROR\fP)
|
||||
INTEGER \fICOMM, GROUP, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
Group Intercomm::Get_remote_group() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_remote_size 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_remote_size(MPI_Comm \fIcomm\fP, int\fI *size\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_REMOTE_SIZE(\fICOMM, SIZE, IERROR\fP)
|
||||
INTEGER \fICOMM, SIZE, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
int Intercomm::Get_remote_size() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\"Copyright (c) 1996 Thinking Machines
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines
|
||||
.TH MPI_Comm_set_attr 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Comm_set_attr\fP \- Stores attribute value associated with a key.
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_set_attr(MPI_Comm \fIcomm\fP, int \fIcomm_keyval\fP, void *\fIattribute_val\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax (see FORTRAN 77 NOTES)
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -19,11 +20,13 @@ MPI_COMM_SET_ATTR(\fICOMM, COMM_KEYVAL, ATTRIBUTE_VAL, IERROR\fP)
|
||||
INTEGER \fICOMM, COMM_KEYVAL, IERROR \fP
|
||||
INTEGER(KIND=MPI_ADDRESS_KIND) \fIATTRIBUTE_VAL\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::Comm::Set_attr(int \fIcomm_keyval\fP, const void* \fIattribute_val\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_set_errhandler 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,17 +13,20 @@
|
||||
int MPI_Comm_set_errhandler(MPI_Comm \fIcomm\fP,
|
||||
MPI_Errhandler \fIerrhandler\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_SET_ERRHANDLER(\fICOMM, ERRHANDLER, IERROR\fP)
|
||||
INTEGER \fICOMM, ERRHANDLER, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::Comm::Set_errhandler(const MPI::Errhandler& \fIerrhandler\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\"Copyright (c) 1996 Thinking Machines
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines
|
||||
.TH MPI_Comm_set_name 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Comm_set_name\fP \- Associates a name with a communicator.
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_set_name(MPI_Comm \fIcomm\fP, char *\fIcomm_name\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -19,11 +20,13 @@ MPI_COMM_SET_NAME(\fICOMM, COMM_NAME, IERROR\fP)
|
||||
INTEGER \fICOMM, IERROR \fP
|
||||
CHARACTER*(*) \fICOMM_NAME\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::Comm::Set_name(const char* \fIcomm_name\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_size 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_size(MPI_Comm \fIcomm\fP, int *\fIsize\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_SIZE(\fICOMM, SIZE, IERROR\fP)
|
||||
INTEGER \fICOMM, SIZE, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
int Comm::Get_size() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\" Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_spawn 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -14,6 +14,7 @@ int MPI_Comm_spawn(char *\fIcommand\fP, char *\fIargv\fP[], int \fImaxprocs\fP,
|
||||
MPI_Info \fIinfo\fP, int \fIroot\fP, MPI_Comm \fIcomm\fP,
|
||||
MPI_Comm *\fIintercomm\fP, int \fIarray_of_errcodes\fP[])
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -24,6 +25,7 @@ MPI_COMM_SPAWN(\fICOMMAND, ARGV, MAXPROCS, INFO, ROOT, COMM,
|
||||
INTEGER \fIINFO, MAXPROCS, ROOT, COMM, INTERCOMM,
|
||||
ARRAY_OF_ERRORCODES(*), IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -35,6 +37,7 @@ MPI::Intercomm MPI::Intracomm::Spawn(const char* \fIcommand\fP,
|
||||
const char* \fIargv\fP[], int \fImaxprocs\fP, const MPI::Info& \fIinfo\fP,
|
||||
int \fIroot\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\" Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_spawn_multiple 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -15,6 +15,7 @@ int MPI_Comm_spawn_multiple(int \fIcount\fP, char *\fIarray_of_commands\fP[],
|
||||
\fIarray_of_info\fP[], int \fIroot\fP, MPI_Comm \fIcomm\fP, MPI_Comm *\fIintercomm\fP,
|
||||
int \fIarray_of_errcodes\fP[])
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -25,6 +26,7 @@ MPI_COMM_SPAWN_MULTIPLE(\fICOUNT, ARRAY_OF_COMMANDS, ARRAY_OF_ARGV,
|
||||
COMM, INTERCOMM, ARRAY_OF_ERRCODES(*), IERROR\fP
|
||||
CHARACTER*(*) \fIARRAY_OF_COMMANDS\fP(*), \fIARRAY_OF_ARGV\fP(\fICOUNT\fP, *)
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -38,6 +40,7 @@ MPI::Intercomm MPI::Intracomm::Spawn_multiple(int \fIcount\fP,
|
||||
const int \fIarray_of_maxprocs\fP[], const MPI::Info \fIarray_of_info\fP[],
|
||||
int \fIroot\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_split 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,12 +13,14 @@
|
||||
int MPI_Comm_split(MPI_Comm \fIcomm\fP, int\fI color\fP, int\fI key\fP,
|
||||
MPI_Comm *\fInewcomm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_COMM_SPLIT(\fICOMM, COLOR, KEY, NEWCOMM, IERROR\fP)
|
||||
INTEGER \fICOMM, COLOR, KEY, NEWCOMM, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -26,6 +28,7 @@ MPI::Intercomm MPI::Intercomm::Split(int \fIcolor\fP, int \fIkey\fP) const
|
||||
|
||||
MPI::Intracomm MPI::Intracomm::Split(int \fIcolor\fP, int \fIkey\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Comm_test_inter 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Comm_test_inter(MPI_Comm \fIcomm\fP, int\fI *flag\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -19,11 +20,13 @@ MPI_COMM_TEST_INTER(\fICOMM, FLAG, IERROR\fP)
|
||||
INTEGER \fICOMM, IERROR\fP
|
||||
LOGICAL \fIFLAG \fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
bool Comm::Is_inter() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Dims_create 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Dims_create(int \fInnodes\fP, int\fI ndims\fP, int\fI *dims\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_DIMS_CREATE(\fINNODES, NDIMS, DIMS, IERROR\fP)
|
||||
INTEGER \fINNODES, NDIMS, DIMS(*), IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void Compute_dims(int \fInnodes\fP, int \fIndims\fP, int \fIdims\fP[])
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
@ -67,6 +70,7 @@ call function call on return
|
||||
(0,3,0) MPI_Dims_create(7, 3, dims) erroneous call
|
||||
------------------------------------------------------
|
||||
|
||||
.fi
|
||||
.SH ERRORS
|
||||
Almost 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.
|
||||
.sp
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Errhandler_create 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,6 +13,7 @@
|
||||
int MPI_Errhandler_create(MPI_Handler_function *\fIfunction\fP,
|
||||
MPI_Errhandler *\fIerrhandler\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -21,6 +22,7 @@ MPI_ERRHANDLER_CREATE(\fIFUNCTION, ERRHANDLER, IERROR\fP)
|
||||
INTEGER \fIERRHANDLER, IERROR\fP
|
||||
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Errhandler_free 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Errhandler_free(MPI_Errhandler *\fIerrhandler\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_ERRHANDLER_FREE(\fIERRHANDLER, IERROR\fP)
|
||||
INTEGER \fIERRHANDLER, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void Errhandler::Free()
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Errhandler_get 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Errhandler_get(MPI_Comm \fIcomm\fP, MPI_Errhandler\fI *errhandler\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -19,6 +20,7 @@ MPI_ERRHANDLER_GET(\fICOMM, ERRHANDLER, IERROR\fP)
|
||||
INTEGER \fICOMM, ERRHANDLER, IERROR\fP
|
||||
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Errhandler_set 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -11,6 +11,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Errhandler_set(MPI_Comm \fIcomm\fP, MPI_Errhandler \fIerrhandler\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -18,6 +19,7 @@ MPI_ERRHANDLER_SET(\fICOMM, ERRHANDLER, IERROR\fP)
|
||||
INTEGER \fICOMM, ERRHANDLER, IERROR\fP
|
||||
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Error_class 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,17 +12,20 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Error_class(int \fIerrorcode\fP, int\fI *errorclass\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_ERROR_CLASS(\fIERRORCODE, ERRORCLASS, IERROR\fP)
|
||||
INTEGER \fIERRORCODE, ERRORCLASS, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
int Get_error_class(int \fIerrorcode\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Error_string 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -12,6 +12,7 @@
|
||||
#include <mpi.h>
|
||||
int MPI_Error_string(int \fIerrorcode\fP, char\fI *string\fP, int\fI *resultlen\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -19,11 +20,13 @@ MPI_ERROR_STRING(\fIERRORCODE, STRING, RESULTLEN, IERROR\fP)
|
||||
INTEGER \fIERRORCODE, RESULTLEN, IERROR\fP
|
||||
CHARACTER*(*) \fISTRING\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void Get_error_string(int \fIerrorcode\fP, char* \fIname\fP, int& \fIresultlen\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_Exscan 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
|
||||
@ -15,6 +15,7 @@
|
||||
int MPI_Exscan(void *\fIsendbuf\fP, void *\fIrecvbuf\fP, int \fIcount\fP,
|
||||
MPI_Datatype \fIdatatype\fP, MPI_Op \fIop\fP, MPI_Comm \fIcomm\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -22,6 +23,7 @@ MPI_SCAN(\fISENDBUF, RECVBUF, COUNT, DATATYPE, OP, COMM, IERROR\fP)
|
||||
<type> \fISENDBUF(*), RECVBUF(*)\fP
|
||||
INTEGER \fICOUNT, DATATYPE, OP, COMM, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -29,6 +31,7 @@ void MPI::Intracomm::Exscan(const void* \fIsendbuf\fP, void* \fIrecvbuf\fP,
|
||||
int \fIcount\fP, const MPI::Datatype& \fIdatatype\fP,
|
||||
const MPI::Op& \fIop\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_call_errhandler 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
|
||||
@ -15,17 +15,20 @@ error handler assigned to a file
|
||||
#include <mpi.h>
|
||||
int MPI_File_call_errhandler(MPI_File \fIfh\fP, int \fIerrorcode\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_FILE_CALL_ERRHANDLER(\fIFH, ERRORCODE, IERROR\fP)
|
||||
INTEGER \fIFH, IERRORCODE, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::File::Call_errhandler(int \fIerrorcode\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1.4i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_close 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -17,11 +17,13 @@ Fortran Syntax
|
||||
MPI_FILE_CLOSE(\fIFH\fP,\fI IERROR\fP)
|
||||
INTEGER FH, IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::File::Close()
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\"Copyright 2009-2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2009-2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_create_errhandler 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,6 +13,7 @@
|
||||
int MPI_File_create_errhandler(MPI_File_errhandler_function \fI*function\fP,
|
||||
MPI_Errhandler \fI*errhandler\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
@ -20,6 +21,7 @@ MPI_FILE_CREATE_ERRHANDLER(\fIFUNCTION, ERRHANDLER, IERROR\fP)
|
||||
EXTERNAL \fIFUNCTION\fP
|
||||
INTEGER \fIERRHANDLER, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -27,6 +29,7 @@ static MPI::Errhandler
|
||||
MPI::File::Create_errhandler(MPI::File::Errhandler_function*
|
||||
\fIfunction\fP)
|
||||
|
||||
.fi
|
||||
.SH DEPRECATED TYPE NAME NOTE
|
||||
.ft R
|
||||
MPI-2.2 deprecated the MPI_File_errhandler_fn and
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_delete 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -18,12 +18,14 @@ Fortran Syntax
|
||||
CHARACTER*(*) \fIFILENAME\fP
|
||||
INTEGER \fIINFO, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
static void MPI::File::Delete(const char* \fIfilename\fP, const
|
||||
MPI::Info& \fIinfo\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_get_amode 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -17,11 +17,13 @@ Fortran Syntax
|
||||
MPI_FILE_GET_AMODE(\fIFH\fP,\fI AMODE\fP, \fI IERROR\fP)
|
||||
INTEGER FH, AMODE, IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
int MPI::File::Get_amode() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_get_atomicity 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -18,11 +18,13 @@ Fortran Syntax
|
||||
INTEGER \FIFH, IERROR\FP
|
||||
LOGICAL \FIFLAG\FP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
bool MPI::File::Get_atomicity() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_get_byte_offset 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -19,12 +19,14 @@ Fortran Syntax (see FORTRAN 77 NOTES)
|
||||
INTEGER \fIFH, IERROR\fP
|
||||
INTEGER(KIND=MPI_OFFSET_KIND) \fIOFFSET, DISP\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Offset MPI::File::Get_byte_offset(const MPI::Offset \fIdisp\fP)
|
||||
const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_get_errhandler 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -13,17 +13,20 @@
|
||||
int MPI_File_get_errhandler(MPI_File \fIfile\fP, MPI_Errhandler\fI
|
||||
*errhandler\fP)
|
||||
|
||||
.fi
|
||||
.SH Fortran Syntax
|
||||
.nf
|
||||
INCLUDE 'mpif.h'
|
||||
MPI_FILE_GET_ERRHANDLER(\fIFILE, ERRHANDLER, IERROR\fP)
|
||||
INTEGER \fIFILE, ERRHANDLER, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
#include <mpi.h>
|
||||
.nf
|
||||
MPI::Errhandler MPI::File::Get_errhandler() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_get_group 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -17,11 +17,13 @@ Fortran Syntax
|
||||
MPI_FILE_GET_GROUP(\fIFH\fP,\fI GROUP\fP, \fI IERROR\fP)
|
||||
INTEGER FH, GROUP, IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Group MPI::File::Get_group() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_get_info 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -18,11 +18,13 @@ Fortran Syntax
|
||||
MPI_FILE_GET_INFO(\fIFH\fP, \fIINFO_USED\fP, \fIIERROR\fP)
|
||||
INTEGER FH, INFO_USED, IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Info MPI::File::Get_info() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_get_position 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -18,11 +18,13 @@ Fortran Syntax (see FORTRAN 77 NOTES)
|
||||
INTEGER \fIFH, IERROR\fP
|
||||
INTEGER(KIND=MPI_OFFSET_KIND) \fIOFFSET\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Offset MPI::File::Get_position() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_get_position_shared 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -18,11 +18,13 @@ Fortran Syntax (see FORTRAN 77 NOTES)
|
||||
INTEGER \fIFH, IERROR\fP
|
||||
INTEGER(KIND=MPI_OFFSET_KIND) \fIOFFSET\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Offset MPI::File::Get_position_shared() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_get_size 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -18,11 +18,13 @@ Fortran Syntax (see FORTRAN 77 NOTES)
|
||||
INTEGER \fIFH, ERROR\fP
|
||||
INTEGER(KIND=MPI_OFFSET_KIND) \fISIZE\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Offset MPI::File::Get_size() const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_get_type_extent 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -19,12 +19,14 @@ Fortran Syntax (see FORTRAN 77 NOTES)
|
||||
INTEGER \fIFH, DATATYPE, IERROR\fP
|
||||
INTEGER(KIND=MPI_ADDRESS_KIND) \fIEXTENT\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Aint MPI::File::Get_type_extent(const MPI::Datatype&
|
||||
\fIdatatype\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_get_view 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -22,6 +22,7 @@ Fortran Syntax (see FORTRAN 77 NOTES)
|
||||
CHARACTER*(*) \fIDATAREP\fP
|
||||
INTEGER(KIND=MPI_OFFSET_KIND) \fIDISP\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -29,6 +30,7 @@ void MPI::File::Get_view(MPI::Offset& \fIdisp\fP,
|
||||
MPI::Datatype& \fIetype\fP,
|
||||
MPI::Datatype& \fIfiletype\fP, char* \fIdatarep\fP) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_iread 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -19,12 +19,14 @@ Fortran Syntax
|
||||
<type> BUF(*)
|
||||
INTEGER FH, COUNT, DATATYPE, REQUEST, IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Request MPI::File::Iread(void* \fIbuf\fP, int \fIcount\fP,
|
||||
const MPI::Datatype& \fIdatatype\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_iread_at 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -21,12 +21,14 @@ Fortran Syntax (see FORTRAN 77 NOTES)
|
||||
INTEGER \fIFH, COUNT, DATATYPE, REQUEST, IERROR\fP
|
||||
INTEGER(KIND=MPI_OFFSET_KIND) \fIOFFSET\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Request MPI::File::Iread_at(MPI::Offset \fIoffset\fP, void* \fIbuf\fP,
|
||||
int \fIcount\fP, const MPI::Datatype& \fIdatatype\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_iread_shared 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -19,12 +19,14 @@ Fortran Syntax
|
||||
<type> BUF(*)
|
||||
INTEGER FH, COUNT, DATATYPE, REQUEST, IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Request MPI::File::Iread_shared(void* \fIbuf\fP, int \fIcount\fP,
|
||||
const MPI::Datatype& \fIdatatype\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_iwrite 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -19,12 +19,14 @@ Fortran Syntax
|
||||
<TYPE> BUF(*)
|
||||
INTEGER FH, COUNT, DATATYPE, REQUEST, IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Request MPI::File::Iwrite(const void* \fIbuf\fP, int \fIcount\fP,
|
||||
const MPI::Datatype& \fIdatatype\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_iwrite_at 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -20,12 +20,14 @@ Fortran Syntax (see FORTRAN 77 NOTES)
|
||||
INTEGER \fIFH, COUNT, DATATYPE, REQUEST, IERROR\fP
|
||||
INTEGER(KIND=MPI_OFFSET_KIND) \fIOFFSET\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Request MPI::File::Iwrite_at(MPI::Offset \fIoffset\fP, const void* \fIbuf\fP,
|
||||
int \fIcount\fP, const MPI::Datatype& \fIdatatype\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_iwrite_shared 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -21,12 +21,14 @@ Fortran Syntax
|
||||
<type> BUF(*)
|
||||
INTEGER FH, COUNT, DATATYPE, REQUEST, IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
MPI::Request MPI::File::Iwrite_shared(const void* \fIbuf\fP, int \fIcount\fP,
|
||||
const MPI::Datatype& \fIdatatype\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_open 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -20,12 +20,14 @@ Fortran Syntax
|
||||
CHARACTER*(*) FILENAME
|
||||
INTEGER COMM, AMODE, INFO, FH, IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
static MPI::File MPI::File::Open(const MPI::Intracomm& \fIcomm\fP,
|
||||
const char* \fIfilename\fP, int \fIamode\fP, const MPI::Info& \fIinfo\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_preallocate 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -18,11 +18,13 @@ Fortran Syntax (see FORTRAN 77 NOTES)
|
||||
INTEGER \fIFH, IERROR\fP
|
||||
INTEGER(KIND=MPI_OFFSET_KIND) \fISIZE\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::File::Preallocate(MPI::Offset \fIsize\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_read 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -21,6 +21,7 @@ Fortran Syntax
|
||||
INTEGER FH, COUNT, DATATYPE, STATUS(MPI_STATUS_SIZE),
|
||||
IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -30,6 +31,7 @@ void MPI::File::Read(void* \fIbuf\fP, int \fIcount\fP,
|
||||
void MPI::File::Read(void* \fIbuf\fP, int \fIcount\fP,
|
||||
const MPI::Datatype& \fIdatatype\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_read_all 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -21,6 +21,7 @@ Fortran Syntax
|
||||
INTEGER FH, COUNT, DATATYPE, STATUS(MPI_STATUS_SIZE),
|
||||
IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -30,6 +31,7 @@ void MPI::File::Read_all(void* \fIbuf\fP, int \fIcount\fP,
|
||||
void MPI::File::Read_all(void* \fIbuf\fP, int \fIcount\fP,
|
||||
const MPI::Datatype& \fIdatatype\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_read_all_begin 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -19,12 +19,14 @@ Fortran Syntax
|
||||
<TYPE> \fIBUF\fP(*)
|
||||
INTEGER \fIFH, COUNT, DATATYPE, IERROR\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::File::Read_all_begin(void* \fIbuf\fP, int \fIcount\fP,
|
||||
const MPI::Datatype& \fIdatatype\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_read_all_end 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -19,6 +19,7 @@ Fortran Syntax
|
||||
<type> BUF(*)
|
||||
INTEGER FH, STATUS(MPI_STATUS_SIZE), IERROR
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -26,6 +27,7 @@ void MPI::File::Read_all_end(void* \fIbuf\fP, MPI::Status& \fIstatus\fP)
|
||||
|
||||
void MPI::File::Read_all_end(void* \fIbuf\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETER
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_read_at 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -22,6 +22,7 @@ Fortran Syntax (see FORTRAN 77 NOTES)
|
||||
INTEGER \fIFH, COUNT, DATATYPE, STATUS(MPI_STATUS_SIZE), IERROR\fP
|
||||
INTEGER(KIND=MPI_OFFSET_KIND) \fIOFFSET\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -32,6 +33,7 @@ void MPI::File::Read_at(MPI::Offset \fIoffset\fP, void* \fIbuf\fP,
|
||||
void MPI::File::Read_at(MPI::Offset \fIoffset\fP, void* \fIbuf\fP,
|
||||
int \fIcount\fP, const MPI::Datatype& \fIdatatype\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\"Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\"Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.TH MPI_File_read_at_all 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
@ -22,6 +22,7 @@ Fortran Syntax (see FORTRAN 77 NOTES)
|
||||
INTEGER \fIFH, COUNT, DATATYPE, STATUS(MPI_STATUS_SIZE), IERROR\fP
|
||||
INTEGER(KIND=MPI_OFFSET_KIND) \fIOFFSET\fP
|
||||
|
||||
.fi
|
||||
.SH C++ Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
@ -31,6 +32,7 @@ void MPI::File::Read_at_all(MPI::Offset \fIoffset\fP, void* \fIbuf\fP,
|
||||
void MPI::File::Read_at_all(MPI::Offset \fIoffset\fP, void* \fIbuf\fP,
|
||||
int \fIcount\fP, const MPI::Datatype& \fIdatatype\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче
Block a user