Class GraphComm
- java.lang.Object
-
- mpi.Comm
-
- mpi.Intracomm
-
- mpi.GraphComm
-
-
Field Summary
-
Fields inherited from class mpi.Comm
handle, SELF, TYPE_SHARED, WORLD
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GraphCommclone()Duplicates this communicator.GraphCommdup()Duplicates this communicator.GraphCommdupWithInfo(Info info)Duplicates this communicator with the info object used in the call.GraphParmsgetDims()Returns graph topology information.DistGraphNeighborsgetDistGraphNeighbors()Gets the adjacency information for a distributed graph topology.int[]getNeighbors(int rank)Provides adjacency information for general graph topology.GraphCommiDup()Duplicates this communicator.intmap(int[] index, int[] edges)Compute an optimal placement.-
Methods inherited from class mpi.Intracomm
accept, accept, closePort, connect, connect, create, createCart, createDistGraph, createDistGraph, createDistGraphAdjacent, createDistGraphAdjacent, createGraph, createGroup, exScan, exScan, iExScan, iExScan, iScan, iScan, lookupName, lookupName, openPort, openPort, publishName, publishName, scan, scan, spawn, spawnMultiple, split, splitType, unpublishName, unpublishName
-
Methods inherited from class mpi.Comm
abort, allGather, allGather, allGatherv, allGatherv, allReduce, allReduce, allToAll, allToAllv, allToAllw, barrier, bcast, bSend, bSendInit, callErrhandler, compare, createIntercomm, createKeyval, deleteAttr, disconnect, dup, dupWithInfo, free, freeKeyval, gather, gather, gatherv, gatherv, gatherv, getAttr, getErrhandler, getGroup, getInfo, getName, getRank, getRequest, getSize, getTopology, iAllGather, iAllGather, iAllGatherv, iAllGatherv, iAllReduce, iAllReduce, iAllToAll, iAllToAllv, iAllToAllw, iBarrier, iBcast, ibSend, iDup, iGather, iGather, iGatherv, iGatherv, iGatherv, iNeighborAllGather, iNeighborAllGatherv, iNeighborAllToAll, iNeighborAllToAllv, iProbe, iRecv, iReduce, iReduce, iReduceScatter, iReduceScatter, iReduceScatterBlock, iReduceScatterBlock, irSend, iScatter, iScatter, iScatterv, iScatterv, iScatterv, iSend, isInter, isNull, isSend, neighborAllGather, neighborAllGatherv, neighborAllToAll, neighborAllToAllv, pack, packSize, probe, recv, recvInit, reduce, reduce, reduceLocal, reduceScatter, reduceScatter, reduceScatterBlock, reduceScatterBlock, rSend, rSendInit, scatter, scatter, scatterv, scatterv, scatterv, send, sendInit, sendRecv, sendRecvReplace, setAttr, setErrhandler, setInfo, setName, setType, sSend, sSendInit, unpack
-
-
-
-
Constructor Detail
-
GraphComm
protected GraphComm(long handle) throws MPIException- Throws:
MPIException
-
GraphComm
protected GraphComm(long[] commRequest)
-
-
Method Detail
-
clone
public GraphComm clone()
Duplicates this communicator.Java binding of
MPI_COMM_DUP.It is recommended to use
dup()instead ofclone()because the last can't throw anMPIException.
-
dup
public GraphComm dup() throws MPIException
Duplicates this communicator.Java binding of
MPI_COMM_DUP.- Overrides:
dupin classIntracomm- Returns:
- copy of this communicator
- Throws:
MPIException- Signals that an MPI exception of some sort has occurred.
-
iDup
public GraphComm iDup() throws MPIException
Duplicates this communicator.The new communicator can't be used before the operation completes. The request object must be obtained calling
Comm.getRequest().Java binding of
MPI_COMM_IDUP.- Overrides:
iDupin classIntracomm- Returns:
- copy of this communicator
- Throws:
MPIException- Signals that an MPI exception of some sort has occurred.
-
dupWithInfo
public GraphComm dupWithInfo(Info info) throws MPIException
Duplicates this communicator with the info object used in the call.Java binding of
MPI_COMM_DUP_WITH_INFO.- Overrides:
dupWithInfoin classIntracomm- Parameters:
info- info object to associate with the new communicator- Returns:
- copy of this communicator
- Throws:
MPIException- Signals that an MPI exception of some sort has occurred.
-
getDims
public GraphParms getDims() throws MPIException
Returns graph topology information.Java binding of the MPI operations
MPI_GRAPHDIMS_GETandMPI_GRAPH_GET.The number of nodes and number of edges can be extracted from the sizes of the
indexandedgesfields of the returned object.- Returns:
- object defining node degress and edges of graph
- Throws:
MPIException- Signals that an MPI exception of some sort has occurred.
-
getNeighbors
public int[] getNeighbors(int rank) throws MPIExceptionProvides adjacency information for general graph topology.Java binding of the MPI operations
MPI_GRAPH_NEIGHBORS_COUNTandMPI_GRAPH_NEIGHBORS.The number of neighbors can be extracted from the size of the result.
- Parameters:
rank- rank of a process in the group of this communicator- Returns:
- array of ranks of neighboring processes to one specified
- Throws:
MPIException- Signals that an MPI exception of some sort has occurred.
-
getDistGraphNeighbors
public DistGraphNeighbors getDistGraphNeighbors() throws MPIException
Gets the adjacency information for a distributed graph topology.- Returns:
- adjacency information for a distributed graph topology
- Throws:
MPIException- Signals that an MPI exception of some sort has occurred.
-
map
public int map(int[] index, int[] edges) throws MPIExceptionCompute an optimal placement.Java binding of the MPI operation
MPI_GRAPH_MAP.The number of nodes is taken to be size of the
indexargument.- Parameters:
index- node degreesedges- graph edges- Returns:
- reordered rank of calling process
- Throws:
MPIException- Signals that an MPI exception of some sort has occurred.
-
-