In R a lot of operations will take advantage of parallel processing, provided the BLAS being used supports it. As in python it’s also possible to manually split calculations up between multiple cores. The code below uses the doParallel
package and a foreach
loop combined with %dopar%
to split up a matrix multiplication task. If I limit the BLAS to using one thread, this will speed up the calculation. This sort of construction could also be used to run independent simulations.
I think this is a lot more intuitive than the parallel python implementation (see post). I’m curious to look at other parallel processing python modules to see how they compare.
require(parallel) require(doParallel) library(foreach) library(iterators) parFun <- function(A, B){ A%*%B } nCores <- 2 n <- 4000 # for this toy code, make sure n is divisible by nCores a <- rnorm(n*n) A <- matrix(a, ncol=n) registerDoParallel(nCores) systime <- system.time( result <- foreach(i = 1:nCores, .combine = cbind) %dopar% { rows <- ((i - 1)*n/nCores + 1):(i*n/nCores) out <- parFun(A, A[, rows]) } ) print(paste("Cores = ", nCores)) print(systime)