X-Git-Url: https://git.auder.net/assets/current/git-logo.png?a=blobdiff_plain;f=code%2Fstage1%2Fwrapper.R;h=e1fa30e4333b0191ba994eb6feb98ac7551e7005;hb=687aed4fb154f6945fd8e2fbb2b387906c88beff;hp=2549f1fa3d60fb09cdf68d05a1d011aa1e4e79fb;hpb=f1fea2229d365a222b5aff0cb1b4d346c4437e8b;p=epclust.git diff --git a/code/stage1/wrapper.R b/code/stage1/wrapper.R index 2549f1f..e1fa30e 100644 --- a/code/stage1/wrapper.R +++ b/code/stage1/wrapper.R @@ -1,9 +1,15 @@ -ppam_exe = function(pathToExe, nbProcess, ...) +ppam_exe = function(path=".", np=parallel::detectCores(), data=NULL, args="DontLetMeEmpty") { - command_line = paste("mpirun -np ",nbProcess," ",pathToExe,"/ppam.exe",sep="") - args = list(...) - for (i in 1:length(args)) - command_line = paste(command_line, args[[i]]) - print(paste("EXECUTE: '", command_line,"'",sep="")) + command_line = paste("mpirun -np ",np," ",path,"/ppam.exe cluster",sep="") + + #if data provided (as data.frame or matrix...): binarize it, and add it as first argument + if (!is.null(data)) + { + write.csv(data, "/tmp/data_csv") + system(paste(path,"/ppam.exe serialize /tmp/data_csv /tmp/data_bin 0 0",sep="")) + command_line = paste(command_line," ","/tmp/data_bin",sep="") + } + + command_line = paste(command_line," ",args,sep="") system(command_line) }