Learn R Programming

pbdMPI (version 0.2-3)

global all pairs: Global All Pairs

Description

This function provide global all pairs.

Usage

comm.allpairs(N, diag = FALSE, symmetric = TRUE, comm = .SPMD.CT$comm)

Arguments

N
number of elements for matching, (i, j) for all 1 <= i,j="" <="N.
diag
if matching the same elements, (i, i) for all i.
symmetric
if matching upper triangular elements. TRUE for i >= j only, otherwise for all (i, j).
comm
a communicator number.

Value

  • The function returns a gbd matrix in row blocks with 2 columns named i and j. The number of rows is dependent on the options diag and symmetric. If diag = TRUE and symmetric = FALSE, then this case has the maximum number of rows, N^2.

Details

The function generates all combinations of N elements.

References

Programming with Big Data in R Website: http://r-pbd.org/

See Also

comm.dist().

Examples

Run this code
### Save code in a file "demo.r" and run with 2 processors by
### SHELL> mpiexec -np 2 Rscript demo.r

### Initial.
library(pbdMPI, quietly = TRUE)
init()

### Examples.
id.matrix <- comm.allpairs(comm.size() + 1)
comm.print(id.matrix, all.rank = TRUE)

### Finish.
finalize()

Run the code above in your browser using DataLab