Using mpirun
to launch an R script does not make sense without using Rmpi.
Looking at your code, you might do want you want to do without MPI. The recipe would be as follows to use 2x16 cores.
Ask for 2 tasks and 16 cpus per task
#SBATCH --nodes 2
#SBATCH --ntasks 2
#SBATCH --cpus-per-task 16
Start your program with Slurm's srun command
srun R --no-save < file_path_R_script.R > another_file_path.Rout
The srun
command will start 2 instances of the R script on two distinct nodes and will setup an environment variable SLURM_PROCID
to be 0 on one node and 1 on the other
Use the value of SLURM_PROCID
in your Rscript to split the work among the two processes started by srun
ncores <- 16
taskID <- as.numeric(Sys.getenv('SLURM_PROCID'))
List_1 <- list(...)
List_2 <- list(...)
cl <- makeCluster(ncores)
registerDoParallel(cl)
getDoParWorkers()
Lits_1 <- split(List_1, 1:2)[[taskID+1]] # Split work based on value of SLURM_PROCID
foreach(L_1=List_1) %:%
foreach(L_2=List_2) %dopar% {
...
}
stopCluster(cl)
You will need to save the result on disk and then merge the partial results into a single full result.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…