Page
Library
Module
Module type
Parameter
Class
Class type
Source
MpiThe type of communicators. Communicators are groups of nodes (processing elements) that can exchange data.
The type of communicators. Communicators are groups of nodes (processing elements) that can exchange data.
The type of ranks of nodes. Nodes in a given communicator are assigned integer ranks 0, 1, ..., N-1 where N is the size of the communicator.
val comm_world : communicatorThe type of ranks of nodes. Nodes in a given communicator are assigned integer ranks 0, 1, ..., N-1 where N is the size of the communicator.
The global communicator.
val comm_size : communicator -> intThe global communicator.
Return the size (number of nodes) in the given communicator.
val comm_rank : communicator -> rankReturn the size (number of nodes) in the given communicator.
Return the rank of the calling node in the given communicator. The rank Mpi.comm_rank c is between 0 (inclusive) and Mpi.comm_size c (exclusive).
The type of tags associated with messages in point-to-point communications. Tags are positive integers in the range 0...32767.
val send : 'a -> rank -> tag -> communicator -> unitMpi.send d dst tag comm sends a message containing data d to the node that has rank dst in communicator comm. The message is sent with tag tag. Depending on the underlying MPI implementation, message sending can be synchronous or asynchronous; that is, Mpi.send can block until the target node receives the message, or Mpi.send can return before the target node has received the message.
val receive : rank -> tag -> communicator -> 'aMpi.receive src tag comm blocks until a message is available, and returns the data contained in that message. The src argument selects the desired source for the message: if src is Mpi.any_source, messages from any node in communicator comm are accepted; otherwise, only messages sent by the node having rank src in comm are accepted. Similarly, the tag argument selects messages by their tag: if tag is Mpi.any_tag, messages are accepted regardless of their tags; otherwise, only messages with tag equal to tag are accepted.
Warning: just like the Marshal.from_* functions, Mpi.receive is not type-safe. The Caml value returned by Mpi.receive does not possess type 'a for all 'a; it has one, unique type which cannot be determined at compile-type. The programmer should be careful about using the returned value with the right type.
val receive_status : rank -> tag -> communicator -> 'a * rank * tagMpi.receive src tag comm blocks until a message is available, and returns the data contained in that message. The src argument selects the desired source for the message: if src is Mpi.any_source, messages from any node in communicator comm are accepted; otherwise, only messages sent by the node having rank src in comm are accepted. Similarly, the tag argument selects messages by their tag: if tag is Mpi.any_tag, messages are accepted regardless of their tags; otherwise, only messages with tag equal to tag are accepted.
Warning: just like the Marshal.from_* functions, Mpi.receive is not type-safe. The Caml value returned by Mpi.receive does not possess type 'a for all 'a; it has one, unique type which cannot be determined at compile-type. The programmer should be careful about using the returned value with the right type.
Same as Mpi.receive, but returns a triple (d, src, tag) where d is the data associated with the message, src the rank of the node that sent the message, and tag the actual tag attached to the message.
val probe : rank -> tag -> communicator -> rank * tagSame as Mpi.receive, but returns a triple (d, src, tag) where d is the data associated with the message, src the rank of the node that sent the message, and tag the actual tag attached to the message.
Mpi.probe src tag comm blocks until a message is available on communicator comm, with source and tag matching the src and tag arguments as described in Mpi.receive. It then returns the rank of the node that sent the message and the actual tag attached to the message. The message itself is not read, and can be retrieved later with Mpi.receive or Mpi.receive_status.
val iprobe : rank -> tag -> communicator -> (rank * tag) optionMpi.probe src tag comm blocks until a message is available on communicator comm, with source and tag matching the src and tag arguments as described in Mpi.receive. It then returns the rank of the node that sent the message and the actual tag attached to the message. The message itself is not read, and can be retrieved later with Mpi.receive or Mpi.receive_status.
Mpi.iprobe src tag comm is a non-blocking counterpart to probe. If there is no matching message waiting it returns None. Otherwise, it returns Some (rank, tag) like probe.
val any_tag : tagval any_source : rankThe special values of the tag and src arguments of Mpi.receive, Mpi.receive_status and Mpi.probe, indicating that any message tag is acceptable (for Mpi.any_tag) or any message source is acceptable (for Mpi.any_source).
val send_int : int -> rank -> tag -> communicator -> unitval receive_int : rank -> tag -> communicator -> intval send_float : float -> rank -> tag -> communicator -> unitval receive_float : rank -> tag -> communicator -> floatval send_int_array : int array -> rank -> tag -> communicator -> unitval receive_int_array : int array -> rank -> tag -> communicator -> unitval send_float_array : float array -> rank -> tag -> communicator -> unitval receive_float_array : float array -> rank -> tag -> communicator -> unitval send_bigarray :
('a, 'b, 'c) Bigarray.Genarray.t ->
rank ->
tag ->
communicator ->
unitval send_bigarray0 :
('a, 'b, 'c) Bigarray.Array0.t ->
rank ->
tag ->
communicator ->
unitval send_bigarray1 :
('a, 'b, 'c) Bigarray.Array1.t ->
rank ->
tag ->
communicator ->
unitval send_bigarray2 :
('a, 'b, 'c) Bigarray.Array2.t ->
rank ->
tag ->
communicator ->
unitval send_bigarray3 :
('a, 'b, 'c) Bigarray.Array3.t ->
rank ->
tag ->
communicator ->
unitval receive_bigarray :
('a, 'b, 'c) Bigarray.Genarray.t ->
rank ->
tag ->
communicator ->
unitval receive_bigarray0 :
('a, 'b, 'c) Bigarray.Array0.t ->
rank ->
tag ->
communicator ->
unitval receive_bigarray1 :
('a, 'b, 'c) Bigarray.Array1.t ->
rank ->
tag ->
communicator ->
unitval receive_bigarray2 :
('a, 'b, 'c) Bigarray.Array2.t ->
rank ->
tag ->
communicator ->
unitval receive_bigarray3 :
('a, 'b, 'c) Bigarray.Array3.t ->
rank ->
tag ->
communicator ->
unitSpecialized versions of Mpi.send and Mpi.receive for communicating integers, floating-point numbers, arrays of integers, arrays of floating-point numbers and bigarrays. These specialized versions are more efficient than Mpi.send and Mpi.receive since less copying is involved. The arguments to the Mpi.send_* functions have the same meaning as for Mpi.send. The arguments to Mpi.receive_int and Mpi.receive_float have the same meaning as for Mpi.receive. Mpi.receive_int_array, Mpi.receive_float_array and Mpi.receive_bigarray* have one extra argument, which is the array in which the data of the received message is stored. The caller is responsible for pre-allocating an array large enough to hold the incoming data.
It is an error to send a message using one of the specialized Mpi.send_* functions and receive it with the generic Mpi.receive function, and conversely.
It is possible to receive a bigarray with different dimensions than those used to send it; only the total number of elements must match.
Encapsulates MPI Request object, also contains the associated send/recv buffer in the wrapper object
val null_request : requestval isend : 'a -> rank -> tag -> communicator -> requestval isend_varlength : 'a -> rank -> tag -> communicator -> request * requestPost non-blocking send operation. Mpi.send d dst tag comm posts a send operation for data d to the node that has rank dst in communicator comm with tag tag. Same parameters as Mpi.send, but returns immediately with a pair of Mpi.request objects after posting two send operations for transmission of message length and the message itself buffer. The request objects can be used to wait for the completion of the send operation.
val ireceive : int -> rank -> tag -> communicator -> requestval ireceive_varlength : rank -> tag -> communicator -> requestPost non-blocking receive operation. Same parameters as Mpi.receive, but returns with received buffer length and an Mpi.request object, which can be used to wait for the completion of the receive operation. This call currently blocks until the buffer length has been received, therefore it has to follow the asynchronous send operation in call sequence.
val wait : request -> unitWait for the completion of a non-blocking operation
Wait for the completion of an ordered pair of non-blocking operations
val wait_receive : request -> 'aWait for the completion of a non-blocking receive operation and return the received object
val barrier : communicator -> unitMpi.barrier comm suspends the calling process until all nodes in communicator comm are executing Mpi.barrier comm. Then all nodes return from Mpi.barrier and continue executing.
val broadcast : 'a -> rank -> communicator -> 'aMpi.broadcast d root comm broadcasts data d from node with rank root in comm to all other nodes in comm. All nodes in comm must call Mpi.broadcast with the same root and comm arguments. The d argument is significant only at node root; it is ignored at other nodes. Mpi.broadcast returns the broadcast data.
val broadcast_opt : 'a option -> rank -> communicator -> 'aMpi.broadcast d root comm broadcasts data d from node with rank root in comm to all other nodes in comm. All nodes in comm must call Mpi.broadcast with the same root and comm arguments. The d argument is significant only at node root; it is ignored at other nodes. Mpi.broadcast returns the broadcast data.
Same as Mpi.broadcast, except that the data (first argument) is provided as an option type. The root node must provide a first argument of the form Some d where d is the data to broadcast. The other node provide None as their first argument.
val broadcast_int : int -> rank -> communicator -> intSame as Mpi.broadcast, except that the data (first argument) is provided as an option type. The root node must provide a first argument of the form Some d where d is the data to broadcast. The other node provide None as their first argument.
val broadcast_float : float -> rank -> communicator -> floatval broadcast_int_array : int array -> rank -> communicator -> unitval broadcast_float_array : float array -> rank -> communicator -> unitval broadcast_bigarray :
('a, 'b, 'c) Bigarray.Genarray.t ->
rank ->
communicator ->
unitval broadcast_bigarray0 :
('a, 'b, 'c) Bigarray.Array0.t ->
rank ->
communicator ->
unitval broadcast_bigarray1 :
('a, 'b, 'c) Bigarray.Array1.t ->
rank ->
communicator ->
unitval broadcast_bigarray2 :
('a, 'b, 'c) Bigarray.Array2.t ->
rank ->
communicator ->
unitval broadcast_bigarray3 :
('a, 'b, 'c) Bigarray.Array3.t ->
rank ->
communicator ->
unitSpecialized versions of Mpi.broadcast for integers, floats, arrays of integers, arrays of floats and bigarrays. For Mpi.broadcast_int and Mpi.broadcast_float, the broadcast value is returned as result, and the first argument is significant only at the root node. For Mpi.broadcast_int_array, Mpi.broadcast_float_array and Mpi.broadcast_bigarray*, the broadcast value is stored in the array passed as first argument; thus, the first argument is significant at all nodes.
val scatter : 'a array -> rank -> communicator -> 'aMpi.scatter a root comm scatters the elements of array a from node root to all nodes in comm. The node with rank i in comm receives the element a.(i) and returns it as result of Mpi.scatter. The a argument is significant only at node root; an empty array [||] can be given as first argument at other nodes.
val scatter_int : int array -> rank -> communicator -> intMpi.scatter a root comm scatters the elements of array a from node root to all nodes in comm. The node with rank i in comm receives the element a.(i) and returns it as result of Mpi.scatter. The a argument is significant only at node root; an empty array [||] can be given as first argument at other nodes.
val scatter_float : float array -> rank -> communicator -> floatval scatter_from_bigarray :
('a, 'b, 'c) Bigarray.Genarray.t ->
rank ->
communicator ->
'aval scatter_from_bigarray1 :
('a, 'b, 'c) Bigarray.Array1.t ->
rank ->
communicator ->
'aval scatter_from_bigarray2 :
('a, 'b, 'c) Bigarray.Array2.t ->
rank ->
communicator ->
'aval scatter_from_bigarray3 :
('a, 'b, 'c) Bigarray.Array3.t ->
rank ->
communicator ->
'aSpecialized versions of Mpi.scatter for integers, floats and values from bigarrays.
val scatter_int_array : int array -> int array -> rank -> communicator -> unitSpecialized versions of Mpi.scatter for integers, floats and values from bigarrays.
val scatter_float_array :
float array ->
float array ->
rank ->
communicator ->
unitval scatter_bigarray :
('a, 'b, 'c) Bigarray.Genarray.t ->
('a, 'b, 'c) Bigarray.Genarray.t ->
rank ->
communicator ->
unitval scatter_bigarray1 :
('a, 'b, 'c) Bigarray.Array1.t ->
('a, 'b, 'c) Bigarray.Array1.t ->
rank ->
communicator ->
unitSpecialized versions of Mpi.scatter for arrays of integers, arrays of floats and bigarrays. Mpi.scatter_int_array src dst root comm splits the array src at node root into Mpi.comm_size comm chunks of size Array.length dst, and sends the chunks to each node, storing them into array dst at each node. The src argument is significant only at node root. Mpi.scatter_float_array and Mpi.scatter_bigarray* are similar. Use the Bigarray.genarray_of_array* functions to, for example, scatter from n dimensions to n-1 dimensions. In any case, only the total number of elements matters.
val gather : 'a -> rank -> communicator -> 'a arrayMpi.gather d root comm gathers the values of the d argument at all nodes onto node root, and returns those values as an array. At node root, Mpi.gather returns an array of size Mpi.comm_size comm; element number i is the value provided for argument d by node i. At other nodes, the empty array [||] is returned.
val gather_int : int -> int array -> rank -> communicator -> unitMpi.gather d root comm gathers the values of the d argument at all nodes onto node root, and returns those values as an array. At node root, Mpi.gather returns an array of size Mpi.comm_size comm; element number i is the value provided for argument d by node i. At other nodes, the empty array [||] is returned.
val gather_float : float -> float array -> rank -> communicator -> unitval gather_to_bigarray :
'a ->
('a, 'b, 'c) Bigarray.Genarray.t ->
rank ->
communicator ->
unitval gather_to_bigarray1 :
'a ->
('a, 'b, 'c) Bigarray.Array1.t ->
rank ->
communicator ->
unitval gather_to_bigarray2 :
'a ->
('a, 'b, 'c) Bigarray.Array2.t ->
rank ->
communicator ->
unitval gather_to_bigarray3 :
'a ->
('a, 'b, 'c) Bigarray.Array3.t ->
rank ->
communicator ->
unitSpecialized versions of Mpi.gather for integers, floats and values to bigarrays.
val gather_int_array : int array -> int array -> rank -> communicator -> unitSpecialized versions of Mpi.gather for integers, floats and values to bigarrays.
val gather_float_array :
float array ->
float array ->
rank ->
communicator ->
unitval gather_bigarray :
('a, 'b, 'c) Bigarray.Genarray.t ->
('a, 'b, 'c) Bigarray.Genarray.t ->
rank ->
communicator ->
unitval gather_bigarray1 :
('a, 'b, 'c) Bigarray.Array1.t ->
('a, 'b, 'c) Bigarray.Array1.t ->
rank ->
communicator ->
unitSpecialized versions of Mpi.gather for arrays of integers, arrays of floats and bigarrays. Mpi.gather_int_array src dst root comm sends the arrays src at each node to the node root. At node root, the arrays are concatenated and stored in the argument dst. dst is significant only at node root. Mpi.gather_float_array and Mpi.gather_bigarray* are similar. Use the Bigarray.genarray_of_array* functions to, for example, gather from n-1 dimensions to n dimensions. In any case, only the total number of elements matters.
val allgather : 'a -> communicator -> 'a arrayval allgather_int : int -> int array -> communicator -> unitval allgather_float : float -> float array -> communicator -> unitval allgather_to_bigarray :
'a ->
('a, 'b, 'c) Bigarray.Genarray.t ->
communicator ->
unitval allgather_to_bigarray1 :
'a ->
('a, 'b, 'c) Bigarray.Array1.t ->
communicator ->
unitval allgather_to_bigarray2 :
'a ->
('a, 'b, 'c) Bigarray.Array2.t ->
communicator ->
unitval allgather_to_bigarray3 :
'a ->
('a, 'b, 'c) Bigarray.Array3.t ->
communicator ->
unitval allgather_int_array : int array -> int array -> communicator -> unitval allgather_float_array : float array -> float array -> communicator -> unitval allgather_bigarray :
('a, 'b, 'c) Bigarray.Genarray.t ->
('a, 'b, 'c) Bigarray.Genarray.t ->
communicator ->
unitval allgather_bigarray1 :
('a, 'b, 'c) Bigarray.Array1.t ->
('a, 'b, 'c) Bigarray.Array1.t ->
communicator ->
unitThe Mpi.allgather* functions behave like the corresponding Mpi.gather* functions, except that the result of the gather operation is available at all nodes, not only at the root node. In other terms, Mpi.allgather is equivalent to Mpi.gather at root r followed by a broadcast of the result from node r.
val alltoall : 'a array -> communicator -> 'a arrayval alltoall_int_array : int array -> int array -> communicator -> unitval alltoall_float_array : float array -> float array -> communicator -> unitval alltoall_bigarray :
('a, 'b, 'c) Bigarray.Genarray.t ->
('a, 'b, 'c) Bigarray.Genarray.t ->
communicator ->
unitval alltoall_bigarray1 :
('a, 'b, 'c) Bigarray.Array1.t ->
('a, 'b, 'c) Bigarray.Array1.t ->
communicator ->
unitval alltoall_bigarray2 :
('a, 'b, 'c) Bigarray.Array2.t ->
('a, 'b, 'c) Bigarray.Array2.t ->
communicator ->
unitval alltoall_bigarray3 :
('a, 'b, 'c) Bigarray.Array3.t ->
('a, 'b, 'c) Bigarray.Array3.t ->
communicator ->
unitUsing the Mpi.alltoall* functions, each process effectively does an Mpi.scatter* followed by an Mpi.gather*. They can also be seen as an extension to Mpi.allgather* where each process sends distinct data to each of the receivers. Both send and receive arrays must have the same size at all nodes.
type _ op = | Max : [< `Int | `Float ] op| Min : [< `Int | `Float ] op| Sum : [< `Int | `Float ] op| Prod : [< `Int | `Float ] op| Land : [< `Int ] op| Lor : [< `Int ] op| Xor : [< `Int ] op| Int_max : [< `Int ] op| Int_min : [< `Int ] op| Int_sum : [< `Int ] op| Int_prod : [< `Int ] op| Int_land : [< `Int ] op| Int_lor : [< `Int ] op| Int_xor : [< `Int ] op| Float_max : [< `Float ] op| Float_min : [< `Float ] op| Float_sum : [< `Float ] op| Float_prod : [< `Float ] opThe operations that can be performed by a reduce or scan; some of them are only valid for integers. Max and Min are maximum and minimum; Sum and Prod are summation (+) and product (*). Land, Lor and Xor are logical (bit-per-bit) and, or and exclusive-or.
The constructors prefixed by Int_ or Float_ (e.g. Int_max, Float_sum) are type-specialized variants of the non-prefixed constructors. For example, Int_max is Max specialized to integer values, and Float_sum is Sum specialized to floating-point values. These specialized constructors are included for backward compatibility with earlier versions of this library. They will be deprecated in the future.
val reduce_int : int -> [ `Int ] op -> rank -> communicator -> intval reduce_float : float -> [ `Float ] op -> rank -> communicator -> floatMpi.reduce_int d op root comm computes the value of d0 op d1 op ... op dN, where d0 ... dN are the values of the d argument at every node in comm. The result value is returned at node with rank root. A meaningless integer is returned at other nodes. Mpi.reduce_float is similar except for the use of floating-point operations instead of integer operations.
val reduce_int_array :
int array ->
int array ->
[ `Int ] op ->
rank ->
communicator ->
unitMpi.reduce_int d op root comm computes the value of d0 op d1 op ... op dN, where d0 ... dN are the values of the d argument at every node in comm. The result value is returned at node with rank root. A meaningless integer is returned at other nodes. Mpi.reduce_float is similar except for the use of floating-point operations instead of integer operations.
val reduce_float_array :
float array ->
float array ->
[ `Float ] op ->
rank ->
communicator ->
unitval reduce_bigarray :
('a, 'b, 'c) Bigarray.Genarray.t ->
('a, 'b, 'c) Bigarray.Genarray.t ->
'any op ->
rank ->
communicator ->
unitval reduce_bigarray0 :
('a, 'b, 'c) Bigarray.Array0.t ->
('a, 'b, 'c) Bigarray.Array0.t ->
'any op ->
rank ->
communicator ->
unitval reduce_bigarray1 :
('a, 'b, 'c) Bigarray.Array1.t ->
('a, 'b, 'c) Bigarray.Array1.t ->
'any op ->
rank ->
communicator ->
unitval reduce_bigarray2 :
('a, 'b, 'c) Bigarray.Array2.t ->
('a, 'b, 'c) Bigarray.Array2.t ->
'any op ->
rank ->
communicator ->
unitval reduce_bigarray3 :
('a, 'b, 'c) Bigarray.Array3.t ->
('a, 'b, 'c) Bigarray.Array3.t ->
'any op ->
rank ->
communicator ->
unitMpi.reduce_int_array d res op root comm computes Array.length d reductions by operation op simultaneously. For every i, the values of d.(i) at every node are combined using op and the result is stored into dst.(i) at node root. For Mpi.reduce_bigarray* applied to an array of floating-point values, an exception is raised for the Land, Lor and Xor operations and the others are interpreted as floating-point operations.
val allreduce_int : int -> [ `Int ] op -> communicator -> intval allreduce_float : float -> [ `Float ] op -> communicator -> floatval allreduce_int_array :
int array ->
int array ->
[ `Int ] op ->
communicator ->
unitval allreduce_float_array :
float array ->
float array ->
[ `Float ] op ->
communicator ->
unitval allreduce_bigarray :
('a, 'b, 'c) Bigarray.Genarray.t ->
('a, 'b, 'c) Bigarray.Genarray.t ->
'any op ->
communicator ->
unitval allreduce_bigarray0 :
('a, 'b, 'c) Bigarray.Array0.t ->
('a, 'b, 'c) Bigarray.Array0.t ->
'any op ->
communicator ->
unitval allreduce_bigarray1 :
('a, 'b, 'c) Bigarray.Array1.t ->
('a, 'b, 'c) Bigarray.Array1.t ->
'any op ->
communicator ->
unitval allreduce_bigarray2 :
('a, 'b, 'c) Bigarray.Array2.t ->
('a, 'b, 'c) Bigarray.Array2.t ->
'any op ->
communicator ->
unitval allreduce_bigarray3 :
('a, 'b, 'c) Bigarray.Array3.t ->
('a, 'b, 'c) Bigarray.Array3.t ->
'any op ->
communicator ->
unitThe Mpi.allreduce_* operations are similar to the corresponding Mpi.reduce_* operations, except that the result of the reduction is made available at all nodes. For Mpi.allreduce_bigarray* applied to an array of floating-point values, an exception is raised for the Land, Lor and Xor operations and the others are interpreted as floating-point operations.
val scan_int : int -> [ `Int ] op -> communicator -> intScan
val scan_float : float -> [ `Float ] op -> communicator -> floatMpi.scan_int d res op comm performs a scan operation over the integers d at every node. Let d0 ... dN be the values of the d at every node in comm. At node with rank R, Mpi.scan_int d res op comm returns d0 op ... op dR. Mpi.scan_float is similar.
val scan_int_array :
int array ->
int array ->
[ `Int ] op ->
communicator ->
unitMpi.scan_int d res op comm performs a scan operation over the integers d at every node. Let d0 ... dN be the values of the d at every node in comm. At node with rank R, Mpi.scan_int d res op comm returns d0 op ... op dR. Mpi.scan_float is similar.
val scan_float_array :
float array ->
float array ->
[ `Float ] op ->
communicator ->
unitval scan_bigarray :
('a, 'b, 'c) Bigarray.Genarray.t ->
('a, 'b, 'c) Bigarray.Genarray.t ->
'any op ->
communicator ->
unitval scan_bigarray0 :
('a, 'b, 'c) Bigarray.Array0.t ->
('a, 'b, 'c) Bigarray.Array0.t ->
'any op ->
communicator ->
unitval scan_bigarray1 :
('a, 'b, 'c) Bigarray.Array1.t ->
('a, 'b, 'c) Bigarray.Array1.t ->
'any op ->
communicator ->
unitval scan_bigarray2 :
('a, 'b, 'c) Bigarray.Array2.t ->
('a, 'b, 'c) Bigarray.Array2.t ->
'any op ->
communicator ->
unitval scan_bigarray3 :
('a, 'b, 'c) Bigarray.Array3.t ->
('a, 'b, 'c) Bigarray.Array3.t ->
'any op ->
communicator ->
unitSame as Mpi.scan_int and Mpi.scan_float, but perform several scanning operations on the elements of the input array (first argument). The result is stored in the array passed as second argument at the root node. For Mpi.scan_bigarray* applied to an array of floating-point values, an exception is raised for the Land, Lor and Xor operations and the others are interpreted as floating-point operations.
val comm_compare : communicator -> communicator -> boolCompare two communicators and return true if they are the same, false otherwise.
val comm_split : communicator -> color -> int -> communicatorMpi.comm_split comm col key splits the communicator into several communicators based on the values of col and key at every node. For each distinct value of the col argument, a new communicator is created. It contains all nodes of comm that have presented that particular value of key to Mpi.comm_split. The ordering of nodes in the new communicator is determined by the key argument: nodes are ordered by increasing values of key, and in case of ties, by their original order in comm. Thus, to preserve the same ordering as in comm, it suffices that all nodes present 0 as the key argument. In each node, the communicator returned is the one that corresponds to the color argument of that node.
val color_none : colorIn Mpi.comm_split, a node can pass Mpi.color_none as the col argument to indicate that it does not want to be part of any of the new communicators. Mpi.comm_split then returns a null communicator (allowing no communications) in that node.
val cart_create :
communicator ->
int array ->
bool array ->
bool ->
communicatorMpi.cart_create comm dims periodic reorder embeds a cartesian topology (multi-dimensional grid) on the nodes of communicator comm, and return a new communicator with that information attached. The length of dims determines the number of dimensions of the topology. For each dimension d, dims.(d) specifies the number of nodes in that dimension, and periodic.(d) says whether that dimension is periodic (wraps around) or not. reorder determines whether the ranks of nodes in the new communicator can be reordered for better efficiency (true) or must remain the same as in comm (false). The initial communicator comm must contain at least as many nodes as specified by dims.
Mpi.cart_create comm dims periodic reorder embeds a cartesian topology (multi-dimensional grid) on the nodes of communicator comm, and return a new communicator with that information attached. The length of dims determines the number of dimensions of the topology. For each dimension d, dims.(d) specifies the number of nodes in that dimension, and periodic.(d) says whether that dimension is periodic (wraps around) or not. reorder determines whether the ranks of nodes in the new communicator can be reordered for better efficiency (true) or must remain the same as in comm (false). The initial communicator comm must contain at least as many nodes as specified by dims.
Mpi.dims_create numnodes hints helps determining a suitable dims argument to Mpi.cart_create given a number of nodes numnodes, the number of dimensions required, and optional constraints. The length of the hints array determines the number of dimensions. For each dimension d, hints.(d), if not null, is the number of nodes required along this dimension. If null, Mpi.dims_create figures out a suitable number.
For instance, Mpi.dims_create 24 [|0;0|] returns reasonable dimensions for a two-dimensional grid containing 24 nodes.
val cart_rank : communicator -> int array -> rankMpi.cart_rank comm coords return the rank of the node in the cartesian topology comm that is at coordinates coords. The coords array must have one element per dimension of the cartesian topology. Individual coordinates range between 0 (inclusive) and the corresponding dimension (exclusive).
val cart_coords : communicator -> rank -> int arrayMpi.cart_rank comm coords return the rank of the node in the cartesian topology comm that is at coordinates coords. The coords array must have one element per dimension of the cartesian topology. Individual coordinates range between 0 (inclusive) and the corresponding dimension (exclusive).
The inverse operation of Mpi.cart_rank. Mpi.cart_coords comm r returns the cartesian coordinates of the node having rank r in comm.
The type of groups. Groups represent sets of nodes (processing elements). Unlike communicators, they cannot be used directly for communication. Instead, one constructs a group representing the desired set of nodes, then build a communicator for this group.
val comm_create : communicator -> group -> communicatorMpi.comm_create comm group creates a communicator whose nodes are those described in group. comm is the initial communicator; the nodes in group must be a subset of those in comm. The null communicator is returned to the nodes that are not part of group.
val group_size : group -> intReturn the size (number of nodes) in the given group.
Return the size (number of nodes) in the given group.
Return the rank of the calling node in the given group.
Mpi.group_translate_ranks g1 ranks g2 translates the ranks of a number of nodes from one group to another. rank is an array of node ranks relative to group g1. The returned array contains the ranks for the same nodes, relative to group g2.
val comm_group : communicator -> groupMpi.comm_group comm returns the group of all nodes belonging to the communicator comm, with the same ranks as in comm.
Mpi.comm_group comm returns the group of all nodes belonging to the communicator comm, with the same ranks as in comm.
Mpi.group_incl group ranks returns the subset of group containing the nodes whose ranks are given in the array ranks.
Mpi.group_incl group ranks returns the subset of group containing the nodes whose ranks are given in the array ranks.
Mpi.group_excl group ranks returns the subset of group containing the nodes whose ranks are not given in the array ranks.
A group range represents the set of nodes whose ranks are (range_first; range_first + range_stride; ...; range_last).
val group_range_incl : group -> group_range array -> groupMpi.group_range_incl group ranges returns the subset of group containing the nodes whose ranks belong to the ranges listed in ranges.
val group_range_excl : group -> group_range array -> groupMpi.group_range_incl group ranges returns the subset of group containing the nodes whose ranks belong to the ranges listed in ranges.
Mpi.group_range_excl group ranges returns the subset of group containing the nodes whose ranks do not belong to the ranges listed in ranges.