inst/examples/test_performance/demo_allgather_spmd.r

suppressMessages(library(pbdMPI, quietly = TRUE))

time.proc <- list()

time.proc$default <- system.time({
  for(i in 1:1000){
    y <- allgather(list(x = 1:10000))
  }
  barrier()
})

time.proc$matrix <- system.time({
  for(i in 1:1000){
    y <- allgather(matrix(1:10000, nrow = 100))
  }
  barrier()
})

comm.print(time.proc, quiet = TRUE)
finalize()

Try the pbdMPI package in your browser

Any scripts or data that you put into this service are public.

pbdMPI documentation built on Sept. 10, 2023, 5:06 p.m.