感谢您的反馈意见。parallel
在我发布这个问题后,我确实抬头看了看。
最后经过几次尝试,我让它运行起来了。我添加了下面的代码,以防它对其他人有用
library(foreach)
library(doParallel)
#setup parallel backend to use many processors
cores=detectCores()
cl <- makeCluster(cores[1]-1) #not to overload your computer
registerDoParallel(cl)
finalMatrix <- foreach(i=1:150000, .combine=cbind) %dopar% {
tempMatrix = functionThatDoesSomething() #calling a function
#do other things if you want
tempMatrix #Equivalent to finalMatrix = cbind(finalMatrix, tempMatrix)
}
#stop cluster
stopCluster(cl)
注意 - 我必须添加一个注释,如果用户分配了太多进程,那么用户可能会收到此错误:Error in serialize(data, node$con) : error writing to connection
注意 - 如果.combine
在foreach
语句中是rbind
,则返回的最终对象将通过逐行附加每个循环的输出来创建。
希望这对像我一样第一次在 R 中尝试并行处理的人有用。
参考资料:
http ://www.r-bloggers.com/parallel-r-loops-for-windows-and-linux/
https://beckmw.wordpress.com/2014/01/21/a-brief-foray- into-parallel-processing-with-r/