Hi,
There seems to be a problem with bplapply() on Windows in BiocParallel for version 1.2.9 and higher (I tested up to 1.3.41). While the code below works fine on BiocParallel version 1.0.3 it causes the system to hang on newer versions. Can anybody reproduce this problem or else tell me what I got wrong...
Minimal test code:
library(parallel) cl<-makeCluster(2, 'SOCK') parLapply(cl, 1:4, function(i) Sys.sleep(1)) stopCluster(cl) library(BiocParallel) register(SnowParam(workers = 2, type = 'SOCK'), default = TRUE) bpparam() bplapply(1:4, function(i) Sys.sleep(1))
While the first snippet works fine on Linux, OSX and Windows, the second one hangs up on Windows. When stopping execution, I get the following warning:
Warning message: running command 'env MASTER=localhost PORT=11521 OUT=/dev/null RPROG=C:/PROGRA~1/R/R-32~1.1/bin/R R_LIBS= C:/Users/loge/Documents/R/win-library/3.2/BiocParallel/RSOCKnode.sh' had status 127
Cheers
Lorenz
I wonder if
RPROG=C:/PROGRA~1/R/R-32~1.1/bin/R
points to the 32 or 64-bit version of the application? Also, the output ofsessionInfo()
is always helpful...Morgan, the above mentioned path leads to a local R library directory. On my current setup, there is just the x64 version installed. Find below the session info:
> sessionInfo() R version 3.2.1 (2015-06-18) Platform: x86_64-w64-mingw32/x64 (64-bit) Running under: Windows 7 x64 (build 7601) Service Pack 1
locale: [1] LC_COLLATE=Swedish_Sweden.1252 LC_CTYPE=Swedish_Sweden.1252 LC_MONETARY=Swedish_Sweden.1252 [4] LC_NUMERIC=C LC_TIME=Swedish_Sweden.1252
attached base packages: [1] stats graphics grDevices utils datasets methods base
other attached packages: [1] BiocParallel_1.3.41
loaded via a namespace (and not attached): [1] parallel_3.2.1 futile.logger_1.4.1 tools_3.2.1 lambda.r_1.1.7 [5] futile.options_1.0.0 >