如何在Windows上进行并行化 - 例如?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Windows上进行并行化 - 例如?相关的知识,希望对你有一定的参考价值。
如何在Windows中使用r的代码并行化代码?包括一个简单的例子。发布这个自我回答的问题,因为这对于工作是相当不愉快的。你会发现包并行不能单独工作,但包雪工作得非常好。
发布这个是因为这让我感到血腥永远。这是r中并行化的一个简单示例,它可以让您测试事情是否适合您并让您走上正确的道路。
library(snow)
z=vector('list',4)
z=1:4
system.time(lapply(z,function(x) Sys.sleep(1)))
cl<-makeCluster(###YOUR NUMBER OF CORES GOES HERE ###,type="SOCK")
system.time(clusterApply(cl, z,function(x) Sys.sleep(1)))
stopCluster(cl)
您还应该使用库doSNOW将foreach注册到snow集群,这将导致许多程序包自动并行化。要注册的命令是registerDoSNOW(cl)
(cl
是来自makeCluster()
的返回值),撤消注册的命令是registerDoSEQ()
。不要忘记关闭群集。
这对我有用,我用的是doParallel包,需要3行代码:
# process in parallel
library(doParallel)
cl <- makeCluster(detectCores(), type='PSOCK')
registerDoParallel(cl)
# turn parallel processing off and run sequentially again:
registerDoSEQ()
随机森林的计算从180秒减少到120秒(在具有4个核心的Windows计算机上)。
我认为这些库可以帮助您:
foreach (facilitates executing the loop in parallel)
doSNOW (I think you already use it)
doMC (multicore functionality of the parallel package)
愿这些文章也能帮到你
http://vikparuchuri.com/blog/parallel-r-loops-for-windows-and-linux/
http://www.joyofdata.de/blog/parallel-computing-r-windows-using-dosnow-foreach/
基于here的信息,我能够将以下代码转换为在Windows 7上的R Studio下工作的并行化版本。
原始代码:
#
# Basic elbow plot function
#
wssplot <- function(data, nc=20, seed=1234){
wss <- (nrow(data)-1)*sum(apply(data,2,var))
for (i in 2:nc){
set.seed(seed)
wss[i] <- sum(kmeans(data, centers=i, iter.max=30)$withinss)}
plot(1:nc, wss, type="b", xlab="Number of clusters",
ylab="Within groups sum of squares")
}
并行代码:
library("parallel")
workerFunc <- function(nc) {
set.seed(1234)
return(sum(kmeans(my_data_frame, centers=nc, iter.max=30)$withinss)) }
num_cores <- detectCores()
cl <- makeCluster(num_cores)
clusterExport(cl, varlist=c("my_data_frame"))
values <- 1:20 # this represents the "nc" variable in the wssplot function
system.time(
result <- parLapply(cl, values, workerFunc) ) # paralel execution, with time wrapper
stopCluster(cl)
plot(values, unlist(result), type="b", xlab="Number of clusters", ylab="Within groups sum of squares")
并不是说它是完美的甚至是最好的,只是一个初学者证明并行似乎在Windows下工作。希望能帮助到你。
以上是关于如何在Windows上进行并行化 - 例如?的主要内容,如果未能解决你的问题,请参考以下文章
如何准备代码库以在基于 Windows 和 Unix 的系统上进行编译