родитель
64fae47d85
Коммит
ec7808cd27
@ -1,6 +1,7 @@
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Abort 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Abort\fP \- Terminates MPI execution environment.
|
||||
@ -26,12 +27,6 @@ MPI_ABORT(\fICOMM\fP, \fIERRORCODE\fP, \fIIERROR\fP)
|
||||
#include <mpi.h>
|
||||
void Comm::Abort(int \fIerrorcode\fP)
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
void MPI.Abort(int \fIerrorcode\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
@ -56,12 +51,12 @@ action with the error code. However, a UNIX or POSIX
|
||||
environment should handle this as a return errorcode from the main program
|
||||
or an abort (errorcode).
|
||||
.sp
|
||||
The long-term goal of the Open MPI implementation is to terminate all processes in all tasks that contain a process in \fIcomm\fP, and the error code is not returned to the invoking environment. At the moment, this isn't fully implemented and MPI_Abort will terminate the entire job. The Java implementation currently does not allow specification of a communicator and aborts the entire job - this will be updated to support the long-term implementation at a later date.
|
||||
The long-term goal of the Open MPI implementation is to terminate all processes in all tasks that contain a process in \fIcomm\fP, and the error code is not returned to the invoking environment. At the moment, this isn't fully implemented and MPI_Abort will terminate the entire job.
|
||||
.sp
|
||||
Note: All associated processes are sent a SIGTERM.
|
||||
|
||||
.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++ and Java 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 - similar behavior is followed by Java.
|
||||
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
|
||||
Before the error value is returned, the current MPI error handler is
|
||||
called. By default, this error handler aborts the MPI job, except for I/O function errors. The error handler
|
||||
|
@ -1,8 +1,9 @@
|
||||
.\" -*- nroff -*-
|
||||
.\" Copyright 2013 Los Alamos National Security, LLC. All rights reserved.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Allgather 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Allgather, MPI_Iallgather\fP \- Gathers data from all processes and distributes it to all processes
|
||||
@ -44,13 +45,6 @@ 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 Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
void MPI.COMM_WORLD.Allgather(Object \fIsendbuf\fP, int \fIsendoffset\fP, int \fIsendcount\fP, MPI.Datatype \fIsendtype\fP,
|
||||
Object \fIrecvbuf\fP, int \fIrecvoffset\fP, int \fIrecvcount\fP, Datatype \fIrecvtype\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
@ -58,9 +52,6 @@ void MPI.COMM_WORLD.Allgather(Object \fIsendbuf\fP, int \fIsendoffset\fP, int \f
|
||||
sendbuf
|
||||
Starting address of send buffer (choice).
|
||||
.TP 1i
|
||||
sendoffset
|
||||
Number of elements to skip at beginning of buffer (integer, Java-only).
|
||||
.TP 1i
|
||||
sendcount
|
||||
Number of elements in send buffer (integer).
|
||||
.TP 1i
|
||||
@ -70,9 +61,6 @@ Datatype of send buffer elements (handle).
|
||||
recvbuf
|
||||
Starting address of recv buffer (choice).
|
||||
.TP 1i
|
||||
recvoffset
|
||||
Number of elements to skip at beginning of buffer (integer, Java-only).
|
||||
.TP 1i
|
||||
recvcount
|
||||
Number of elements received from any process (integer).
|
||||
.TP 1i
|
||||
|
@ -1,8 +1,9 @@
|
||||
.\" -*- nroff -*-
|
||||
.\" Copyright 2013 Los Alamos National Security, LLC. All rights reserved.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2007-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Allgatherv 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Allgatherv, MPI_Iallgatherv\fP \- Gathers data from all processes and delivers it to all. Each process may contribute a different amount of data.
|
||||
@ -46,14 +47,6 @@ 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 Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
void MPI.COMM_WORLD.Allgatherv(Object \fIsendbuf\fP, int \fIsendoffset\fP, int \fIsendcount\fP, MPI.Datatype \fIsendtype\fP,
|
||||
Object \fIrecvbuf\fP, int \fIrecvoffset\fP, int \fI*recvcount\fP, int \fI*displs\fP,
|
||||
Datatype \fIrecvtype\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
@ -61,18 +54,12 @@ void MPI.COMM_WORLD.Allgatherv(Object \fIsendbuf\fP, int \fIsendoffset\fP, int \
|
||||
sendbuf
|
||||
Starting address of send buffer (choice).
|
||||
.TP 1i
|
||||
sendoffset
|
||||
Number of elements to skip at beginning of buffer (integer, Java-only).
|
||||
.TP 1i
|
||||
sendcount
|
||||
Number of elements in send buffer (integer).
|
||||
.TP 1i
|
||||
sendtype
|
||||
Datatype of send buffer elements (handle).
|
||||
.TP 1i
|
||||
recvoffset
|
||||
Number of elements to skip at beginning of buffer (integer, Java-only).
|
||||
.TP 1i
|
||||
recvcount
|
||||
Integer array (of length group size) containing the number of elements that are received from each process.
|
||||
.TP 1i
|
||||
|
@ -1,6 +1,7 @@
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Alloc_mem 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Alloc_mem \fP \- Allocates a specified memory segment.
|
||||
@ -84,9 +85,7 @@ For example,
|
||||
|
||||
CALL MPI_FREE_MEM(A, IERR)
|
||||
.fi
|
||||
.SH JAVA NOTES
|
||||
.ft R
|
||||
There is no Java syntax for using MPI_Alloc_mem.
|
||||
|
||||
.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.
|
||||
|
@ -1,8 +1,9 @@
|
||||
.\" -*- nroff -*-
|
||||
.\" Copyright 2013 Los Alamos National Security, LLC. All rights reserved.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2007-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Allreduce 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Allreduce, MPI_Iallreduce\fP \- Combines values from all processes and distributes the result back to all processes.
|
||||
@ -40,29 +41,15 @@ void MPI::Comm::Allreduce(const void* \fIsendbuf\fP, void* \fIrecvbuf\fP,
|
||||
MPI::Op& \fIop\fP) const=0
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
void MPI.COMM_WORLD.Allreduce(Object \fIsendbuf\fP, int \fIsendoffset\fP,
|
||||
Object \fIrecvbuf\fP, int \fIrecvoffset\fP,
|
||||
int \fIcount\fP, MPI.Datatype \fIsendtype\fP,
|
||||
MPI.Op \fIop\fP)
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1i
|
||||
sendbuf
|
||||
Starting address of send buffer (choice).
|
||||
.TP 1i
|
||||
sendoffset
|
||||
Number of elements to skip at beginning of buffer (integer, Java-only).
|
||||
.TP 1i
|
||||
count
|
||||
Number of elements in send buffer (integer).
|
||||
.TP 1i
|
||||
recvoffset
|
||||
Number of elements to skip at beginning of buffer (integer, Java-only).
|
||||
.TP 1i
|
||||
datatype
|
||||
Datatype of elements of send buffer (handle).
|
||||
.TP 1i
|
||||
|
@ -1,8 +1,9 @@
|
||||
.\" -*- nroff -*-
|
||||
.\" Copyright 2013 Los Alamos National Security, LLC. All rights reserved.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Alltoall 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
|
||||
.SH NAME
|
||||
@ -49,30 +50,18 @@ void MPI::Comm::Alltoall(const void* \fIsendbuf\fP, int \fIsendcount\fP,
|
||||
int \fIrecvcount\fP, const MPI::Datatype& \fIrecvtype\fP)
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
void MPI.COMM_WORLD.Alltoall(Object \fIsendbuf\fP, int \fIsendoffset\fP, int \fIsendcount\fP, MPI.Datatype \fIsendtype\fP,
|
||||
Object \fIrecvbuf\fP, int \fIrecvoffset\fP, int \fIrecvcount\fP, MPI.Datatype \fIrecvtype\fP)
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1.2i
|
||||
sendbuf
|
||||
Starting address of send buffer (choice).
|
||||
.TP 1.2i
|
||||
sendoffset
|
||||
Number of elements to skip at beginning of buffer (integer, Java-only).
|
||||
.TP 1.2i
|
||||
sendcount
|
||||
Number of elements to send to each process (integer).
|
||||
.TP 1.2i
|
||||
sendtype
|
||||
Datatype of send buffer elements (handle).
|
||||
.TP 1.2i
|
||||
recvoffset
|
||||
Number of elements to skip at beginning of buffer (integer, Java-only).
|
||||
.TP 1.2i
|
||||
recvcount
|
||||
Number of elements to receive from each process (integer).
|
||||
.TP 1.2i
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\" -*- nroff -*-
|
||||
.\" Copyright 2013 Los Alamos National Security, LLC. All rights reserved.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
@ -57,23 +57,12 @@ void MPI::Comm::Alltoallv(const void* \fIsendbuf\fP,
|
||||
const MPI::Datatype& \fIrecvtype\fP)
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
void MPI.COMM_WORLD.Alltoallv(Object \fIsendbuf\fP, int \fIsendoffset\fP, int \fIsendcount\fP[],
|
||||
int \fIsdispls\fP[], MPI.Datatype \fIsendtype\fP,
|
||||
Object \fIrecvbuf\fP, int \fIrecvoffset\fP, int \fIrecvcount\fP[],
|
||||
int \fIrdispls\fP[], MPI.Datatype \fIrecvtype\fP)
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
.TP 1.2i
|
||||
sendbuf
|
||||
Starting address of send buffer.
|
||||
.TP 1.2i
|
||||
sendoffset
|
||||
Initial number of elements to skip at beginning of buffer (integer, Java-only).
|
||||
.TP 1.2i
|
||||
sendcounts
|
||||
Integer array, where entry i specifies the number of elements to send
|
||||
to rank i.
|
||||
@ -86,9 +75,6 @@ rank i.
|
||||
sendtype
|
||||
Datatype of send buffer elements.
|
||||
.TP 1.2i
|
||||
recvoffset
|
||||
Initial number of elements to skip at beginning of buffer (integer, Java-only).
|
||||
.TP 1.2i
|
||||
recvcounts
|
||||
Integer array, where entry j specifies the number of elements to
|
||||
receive from rank j.
|
||||
|
@ -1,6 +1,7 @@
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Attr_delete 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Attr_delete\fP \- Deletes attribute value associated with a key -- use of this routine is deprecated.
|
||||
@ -20,12 +21,6 @@ MPI_ATTR_DELETE(\fICOMM\fP,\fI KEYVAL\fP, \fIIERROR\fP)
|
||||
INTEGER \fICOMM\fP,\fI KEYVAL\fP,\fI IERROR\fP
|
||||
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
int MPI.COMM_WORLD.Attr_delete(MPI.\fIkeyval\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
|
@ -1,6 +1,7 @@
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Attr_get 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Attr_get\fP \- Retrieves attribute value by key -- use of this routine is deprecated.
|
||||
@ -22,12 +23,6 @@ MPI_ATTR_GET(\fICOMM\fP,\fI KEYVAL\fP, \fIATTRIBUTE_VAL\fP,\fI FLAG\fP,\fI IERRO
|
||||
LOGICAL \fIFLAG\fP
|
||||
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
int MPI.COMM_WORLD.Attr_get(MPI.\fIkeyval\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
|
@ -1,6 +1,7 @@
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Attr_put 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Attr_put\fP \- Stores attribute value associated with a key -- use of this routine is deprecated.
|
||||
@ -20,12 +21,6 @@ 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 Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
int MPI.COMM_WORLD.Attr_put(MPI.\fIkeyval\fP, int \fIattribute_val\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
|
@ -1,6 +1,7 @@
|
||||
.\" Copyright 2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Barrier 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Barrier, MPI_Ibcarrier\fP \- Synchronization between MPI processes in a group
|
||||
@ -30,14 +31,6 @@ MPI_IBARRIER(\fICOMM\fP,\fI IERROR\fP)
|
||||
import mpi.*;
|
||||
void MPI.COMM_WORLD.Barrier()
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
void MPI::Comm::Barrier() const = 0
|
||||
|
||||
void MPI::Comm::Ibarrier() const = 0
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
|
@ -1,6 +1,7 @@
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Bcast 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Bcast, MPI_Ibcast\fP \- Broadcasts a message from the process with rank \fIroot\fP to all other processes of the group.
|
||||
@ -35,13 +36,6 @@ MPI_IBCAST(\fIBUFFER\fP,\fI COUNT\fP, \fIDATATYPE\fP,\fI ROOT\fP,\fI COMM\fP, \f
|
||||
void MPI::Comm::Bcast(void* \fIbuffer\fP, int \fIcount\fP,
|
||||
const MPI::Datatype& \fIdatatype\fP, int \fIroot\fP) const = 0
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
void MPI.COMM_WORLD.Bcast(Object \fIbuffer\fP, int \fIoffset\fP, int \fIcount\fP,
|
||||
MPI.Datatype \fIdatatype\fP, int \fIroot\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT/OUTPUT PARAMETERS
|
||||
.ft R
|
||||
@ -49,9 +43,6 @@ void MPI.COMM_WORLD.Bcast(Object \fIbuffer\fP, int \fIoffset\fP, int \fIcount\fP
|
||||
buffer
|
||||
Starting address of buffer (choice).
|
||||
.TP 1i
|
||||
offset
|
||||
Offset of starting point in buffer (Java-only)
|
||||
.TP 1i
|
||||
count
|
||||
Number of entries in buffer (integer).
|
||||
.TP 1i
|
||||
|
@ -1,8 +1,9 @@
|
||||
.\" -*- nroff -*-
|
||||
.\" Copyright 2013 Los Alamos National Security, LLC. All rights reserved.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Bsend 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Bsend\fP \- Basic send with user-specified buffering.
|
||||
@ -30,13 +31,6 @@ MPI_BSEND(\fIBUF\fP,\fI COUNT\fP,\fIDATATYPE\fP,\fI DEST\fP,\fI TAG\fP,\fI COMM\
|
||||
void Comm::Bsend(const void* \fIbuf\fP, int \fIcount\fP, const
|
||||
Datatype& \fIdatatype\fP, int \fIdest\fP, int \fItag\fP) const
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
void MPI.COMM_WORLD.Bsend(Object \fIbuf\fP, int \fIoffset\fP, int \fIcount\fP,
|
||||
MPI.Datatype \fIdatatype\fP, int \fIdest\fP, int \fItag\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
@ -44,9 +38,6 @@ void MPI.COMM_WORLD.Bsend(Object \fIbuf\fP, int \fIoffset\fP, int \fIcount\fP,
|
||||
buf
|
||||
Initial address of send buffer (choice).
|
||||
.TP 1i
|
||||
offset
|
||||
Offset of starting point in buffer (Java-only).
|
||||
.TP 1i
|
||||
count
|
||||
Number of entries in send buffer (nonnegative integer).
|
||||
.TP 1i
|
||||
|
@ -1,8 +1,9 @@
|
||||
.\" -*- nroff -*-
|
||||
.\" Copyright 2013 Los Alamos National Security, LLC. All rights reserved.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Bsend_init 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Bsend_init\fP \- Builds a handle for a buffered send.
|
||||
@ -32,13 +33,6 @@ import mpi.*;
|
||||
Prequest MPI.COMM_WORLD.Bsend_init(const void* \fIbuf\fP, int \fIcount\fP, const
|
||||
Datatype& \fIdatatype\fP, int \fIdest\fP, int \fItag\fP) const
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
#include <mpi.h>
|
||||
Prequest Comm::Bsend_init(Object \fIbuf\fP, int \fIoffset\fP, int \fIcount\fP,
|
||||
MPI.Datatype \fIdatatype\fP, int \fIdest\fP, int \fItag\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
@ -46,9 +40,6 @@ Prequest Comm::Bsend_init(Object \fIbuf\fP, int \fIoffset\fP, int \fIcount\fP,
|
||||
buf
|
||||
Initial address of send buffer (choice).
|
||||
.TP 1i
|
||||
offset
|
||||
Offset of starting point in buffer (Java-only).
|
||||
.TP 1i
|
||||
count
|
||||
Number of elements sent (integer).
|
||||
.TP 1i
|
||||
|
@ -1,6 +1,7 @@
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Buffer_attach 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Buffer_attach\fP \- Attaches a user-defined buffer for sending.
|
||||
@ -26,12 +27,6 @@ MPI_BUFFER_ATTACH(\fIBUF\fP,\fI SIZE\fP, \fIIERROR\fP)
|
||||
#include <mpi.h>
|
||||
void Attach_buffer(void* \fIbuffer\fP, int \fIsize\fP)
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
void MPI.Buffer_attach(byte[] \fIbuffer\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
|
@ -1,6 +1,7 @@
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Buffer_detach 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Buffer_detach\fP \- Removes an existing buffer (for use in MPI_Bsend, etc.)
|
||||
@ -26,12 +27,6 @@ MPI_BUFFER_DETACH(\fIBUF\fP,\fI SIZE\fP, \fIIERROR\fP)
|
||||
#include <mpi.h>
|
||||
int Detach_buffer(void*& \fIbuffer\fP)
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
byte[] MPI.Buffer_detach()
|
||||
|
||||
.fi
|
||||
.SH OUTPUT PARAMETERS
|
||||
.ft R
|
||||
|
@ -1,6 +1,7 @@
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Cancel 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Cancel\fP \- Cancels a communication request.
|
||||
@ -25,12 +26,6 @@ MPI_CANCEL(\fIREQUEST\fP, \fIIERROR\fP)
|
||||
#include <mpi.h>
|
||||
void Request::Cancel() const
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
void MPI.Request.Cancel()
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETER
|
||||
.ft R
|
||||
|
@ -1,6 +1,7 @@
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Cart_coords 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Cart_coords\fP \- Determines process coords in Cartesian topology given rank in group.
|
||||
@ -27,12 +28,6 @@ MPI_CART_COORDS(\fICOMM\fP,\fI RANK\fP,\fI MAXDIMS\fP,\fI COORDS\fP, \fIIERROR\f
|
||||
void Cartcomm::Get_coords(int \fIrank\fP, int \fImaxdims\fP,
|
||||
int \fIcoords\fP[]) const
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
int[] Cartcomm.Coords(int \fIrank\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
|
@ -1,8 +1,9 @@
|
||||
.\" -*- nroff -*-
|
||||
.\" Copyright 2013 Los Alamos National Security, LLC. All rights reserved.
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Cart_create 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Cart_create\fP \- Makes a new communicator to which Cartesian topology information has been attached.
|
||||
@ -31,12 +32,6 @@ MPI_CART_CREATE(\fICOMM_OLD\fP,\fI NDIMS\fP,\fI DIMS\fP,\fI PERIODS\fP,\fI REORD
|
||||
Cartcomm Intracomm.Create_cart(int[] \fIndims\fP, int[] \fIdims\fP[],
|
||||
const bool \fIperiods\fP[], bool \fIreorder\fP) const
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
Cartcomm Intracomm.Create_cart(int \fIdims\fP[], const bool \fIperiods\fP[], bool \fIreorder\fP)
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
|
@ -1,6 +1,7 @@
|
||||
.\" Copyright 2010 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2014 Cisco Systems, Inc. All rights reserved.
|
||||
.\" Copyright 2006-2008 Sun Microsystems, Inc.
|
||||
.\" Copyright (c) 1996 Thinking Machines Corporation
|
||||
.\" $COPYRIGHT$
|
||||
.TH MPI_Cart_get 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
|
||||
.SH NAME
|
||||
\fBMPI_Cart_get\fP \- Retrieves Cartesian topology information associated with a communicator.
|
||||
@ -28,13 +29,6 @@ MPI_CART_GET(\fICOMM\fP, \fIMAXDIMS\fP, \fIDIMS\fP, \fIPERIODS\fP, \fICOORDS\fP,
|
||||
void Cartcomm::Get_topo(int \fImaxdims\fP, int \fIdims\fP[],
|
||||
bool \fIperiods\fP[], int \fIcoords\fP[]) const
|
||||
|
||||
.fi
|
||||
.SH Java Syntax
|
||||
.nf
|
||||
import mpi.*;
|
||||
void Cartcomm.Get_topo(int \fImaxdims\fP, int \fIdims\fP[],
|
||||
bool \fIperiods\fP[], int \fIcoords\fP[]) const
|
||||
|
||||
.fi
|
||||
.SH INPUT PARAMETERS
|
||||
.ft R
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user