R Under development (unstable) (2024-07-26 r86926 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > source("incl/start.R") > > message("*** availableWorkers() ...") *** availableWorkers() ... > > ## The default > w <- availableWorkers() > print(w) [1] "localhost" "localhost" > stopifnot(is.character(w), length(w) >= 1) > > ## Minimium of all known settings (default) > print(availableWorkers(which = "min")) [1] "localhost" > > ## Maximum of all known settings (should never be used) > print(availableWorkers(which = "max")) [1] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [7] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [13] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [19] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [25] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [31] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [37] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [43] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [49] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [55] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [61] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [67] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [73] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [79] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [85] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [91] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" > > ## All known settings > print(availableWorkers(na.rm = FALSE, which = "all")) $mc.cores [1] "localhost" "localhost" $BiocParallel character(0) $`_R_CHECK_LIMIT_CORES_` [1] "localhost" "localhost" $Bioconductor character(0) $LSF character(0) $PJM character(0) $PBS character(0) $SGE character(0) $Slurm character(0) $custom character(0) $cgroups.cpuset character(0) $cgroups.cpuquota character(0) $cgroups2.cpu.max character(0) $nproc character(0) $system [1] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [7] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [13] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [19] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [25] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [31] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [37] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [43] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [49] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [55] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [61] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [67] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [73] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [79] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [85] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [91] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" $fallback character(0) > > ## System settings > w <- availableWorkers(methods = "system") > print(w) [1] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [7] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [13] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [19] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [25] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [31] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [37] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [43] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [49] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [55] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [61] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [67] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [73] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [79] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [85] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" [91] "localhost" "localhost" "localhost" "localhost" "localhost" "localhost" > stopifnot(is.character(w), length(w) >= 1) > > ## Predefined ones for known cluster schedulers > print(availableWorkers(methods = "PBS")) [1] "localhost" > print(availableWorkers(methods = "SGE")) [1] "localhost" > print(availableWorkers(methods = "Slurm")) [1] "localhost" > print(availableWorkers(methods = "LSF")) [1] "localhost" > print(availableWorkers(methods = "PJM")) [1] "localhost" > > > message("*** HPC related ...") *** HPC related ... > > sge_expand_node_count_pairs <- parallelly:::sge_expand_node_count_pairs > read_pbs_nodefile <- parallelly:::read_pbs_nodefile > read_pjm_nodefile <- parallelly:::read_pjm_nodefile > read_pe_hostfile <- parallelly:::read_pe_hostfile > > workers0 <- c("n1", "n2", "n3", "n1", "n6", "n3", "n3", "n5") > data0 <- as.data.frame(table(workers0), stringsAsFactors = FALSE) > colnames(data0) <- c("node", "count") > data0 <- data0[order(data0$node, data0$count), ] > > > message("*** LSF ...") *** LSF ... > > Sys.setenv(LSB_HOSTS = paste(workers0, collapse = " ")) > workers <- availableWorkers(methods = "LSF") > print(workers) [1] "n1" "n2" "n3" "n1" "n6" "n3" "n3" "n5" > stopifnot(length(workers) == length(workers0)) > > message("*** LSF ... done") *** LSF ... done > > > > message("*** read_pbs_nodefile() ...") *** read_pbs_nodefile() ... > > workers <- workers0 > pathname <- tempfile() > writeLines(workers, con = pathname) > > data <- read_pbs_nodefile(pathname) > str(data) 'data.frame': 8 obs. of 1 variable: $ node: chr "n1" "n1" "n2" "n3" ... > stopifnot( + c("node") %in% colnames(data), + is.character(data$node), + !anyNA(data$node), + nrow(data$node) == length(workers), + all(sort(data$node) == sort(workers)) + ) > > Sys.setenv(PBS_NODEFILE = pathname) > Sys.setenv(PBS_NP = length(workers), + PBS_NUM_NODES = length(workers) / 2, + PBS_NUM_PPN = 2) > workers <- availableWorkers(methods = "PBS") > print(workers) [1] "n1" "n1" "n2" "n3" "n3" "n3" "n5" "n6" > stopifnot(length(workers) == length(workers0), all(workers == sort(workers0))) > > Sys.setenv(PBS_NUM_PPN = 3) > res <- tryCatch({ + workers <- availableWorkers(methods = "PBS") + }, warning = identity) > stopifnot(inherits(res, "warning")) > > Sys.setenv(PBS_NP = length(workers) + 1) > res <- tryCatch({ + workers <- availableWorkers(methods = "PBS") + }, warning = identity) > stopifnot(inherits(res, "warning")) > > ## Exceptions > workersE <- c(workers, "n 3") > pathname <- tempfile() > writeLines(workersE, con = pathname) > res <- tryCatch(read_pbs_nodefile(pathname), error = identity) > print(res) > stopifnot(inherits(res, "error")) > > Sys.setenv(PBS_NODEFILE = "") > res <- tryCatch({ + workers <- availableWorkers(methods = "PBS") + }, warning = identity) > stopifnot(inherits(res, "warning")) > > message("*** read_pbs_nodefile() ... DONE") *** read_pbs_nodefile() ... DONE > > > > > message("*** read_pjm_nodefile() ...") *** read_pjm_nodefile() ... > > workersT <- unique(workers0) > pathname <- tempfile() > writeLines(workersT, con = pathname) > > data <- read_pjm_nodefile(pathname) > str(data) 'data.frame': 5 obs. of 1 variable: $ node: chr "n1" "n2" "n3" "n5" ... > stopifnot( + c("node") %in% colnames(data), + is.character(data$node), + !anyNA(data$node), + nrow(data$node) == length(workersT), + all(sort(data$node) == sort(workersT)), + identical(data$node, unique(data$node)) + ) > > Sys.setenv(PJM_O_NODEINF = pathname) > > message("- PJM_VNODE_CORE=1") - PJM_VNODE_CORE=1 > Sys.setenv(PJM_VNODE_CORE = "1") > workers <- availableWorkers(methods = "PJM") > print(workers) [1] "n1" "n2" "n3" "n6" "n5" > stopifnot( + length(workers) == length(workersT), + all(sort(workers) == sort(workersT)) + ) > > message("- PJM_VNODE=", length(workersT)) - PJM_VNODE=5 > message("- PJM_VNODE_CORE=2") - PJM_VNODE_CORE=2 > Sys.setenv(PJM_VNODE = length(workersT)) > Sys.setenv(PJM_VNODE_CORE = "2") > workers <- availableWorkers(methods = "PJM") > print(workers) [1] "n1" "n1" "n2" "n2" "n3" "n3" "n6" "n6" "n5" "n5" > stopifnot( + length(workers) == 2L * length(workersT), + all(workers %in% workersT), + all(workersT %in% workers) + ) > > > message("- PJM_VNODE=1 (incompatible => warning)") - PJM_VNODE=1 (incompatible => warning) > message("- PJM_VNODE_CORE=2") - PJM_VNODE_CORE=2 > Sys.setenv(PJM_VNODE = "1") > Sys.setenv(PJM_VNODE_CORE = "2") > workers <- availableWorkers(methods = "PJM") Warning: Environment variable 'PJM_VNODE' does not agree with the number of hosts in file 'PJM_O_NODEINF': 1 != 5 > print(workers) [1] "n1" "n1" "n2" "n2" "n3" "n3" "n6" "n6" "n5" "n5" > stopifnot( + length(workers) == 2L * length(workersT), + all(workers %in% workersT), + all(workersT %in% workers) + ) > > > message("- PJM_O_NODEINF = ") - PJM_O_NODEINF = > Sys.setenv(PJM_O_NODEINF = "") > res <- tryCatch({ + workers <- availableWorkers(methods = "PJM") + }, warning = identity) > stopifnot(inherits(res, "warning")) > > message("*** read_pjm_nodefile() ... DONE") *** read_pjm_nodefile() ... DONE > > > > message("*** read_pe_hostfile() ...") *** read_pe_hostfile() ... > > workers <- workers0 > pathname <- tempfile() > write.table(data0, file = pathname, quote = FALSE, row.names = FALSE, col.names = FALSE) > lines <- readLines(pathname) > print(lines) [1] "n1 2" "n2 1" "n3 3" "n5 1" "n6 1" > data <- read_pe_hostfile(pathname, expand = FALSE) > print(data) node count 1 n1 2 2 n2 1 3 n3 3 4 n5 1 5 n6 1 > stopifnot( + is.character(data$node), + !anyNA(data$node), + is.integer(data$count), + !anyNA(data$count), + all(is.finite(data$count)), + all(data$count > 0), + nrow(data) == nrow(data0), + all.equal(data[, c("node", "count")], data0[, c("node", "count")]) + ) > > workers <- sge_expand_node_count_pairs(data) > stopifnot(length(workers) == length(workers0), all(workers == sort(workers0))) > > Sys.setenv(PE_HOSTFILE = pathname) > Sys.setenv(NSLOTS = length(workers0)) ## Use to validate results > workers <- availableWorkers(methods = "SGE") Warning: Identified 8 workers from the 'PE_HOSTFILE' file ('D:\temp\RtmpKeY2vL\file1dc642476252c'), which is more than environment variable 'NSLOTS' = 8 > print(workers) [1] "n1" "n1" "n2" "n3" "n3" "n3" "n5" "n6" > stopifnot(length(workers) == length(workers0), all(workers == sort(workers0))) > > ## Test validation > Sys.setenv(NSLOTS = length(workers0) + 1L) > workers <- tryCatch(availableWorkers(methods = "SGE"), warning = identity) > print(workers) > stopifnot(inherits(workers, "warning")) > > Sys.setenv(PE_HOSTFILE = "") > res <- tryCatch({ + workers <- availableWorkers(methods = "SGE") + }, warning = identity) > stopifnot(inherits(res, "warning")) > > message("*** read_pe_hostfile() ... DONE") *** read_pe_hostfile() ... DONE > > > message("*** Slurm w/ SLURM_JOB_NODELIST ...") *** Slurm w/ SLURM_JOB_NODELIST ... > > slurm_expand_nodelist <- parallelly:::slurm_expand_nodelist > > specs <- list( + "n1" = c("n1"), + " n1" = c("n1"), + "n1,, n3" = c("n1", "n3"), + "n1, n3" = c("n1", "n3"), + "n3 n1" = c("n3", "n1"), + "n[1-13]" = sprintf("n%d", c(1:13)), + ## scontrol show hostname treats "n[1,3-4, 11-13]" == "n[1,3-4,0011-13]" + "n[1,3-4, 11-13]" = c("n1", "n3", "n4", "n0011", "n0012", "n0013"), + "a1,b[ 02-04,6-7]" = c("a1", "b00002", "b00003", "b00004", "b6", "b7") + ) > > ## All combined > all <- list(unlist(specs, use.names = FALSE)) > names(all) <- paste(names(specs), collapse = ",") > specs <- c(specs, all) > > ## Again, all combined but in reverse order > all <- list(unlist(rev(specs), use.names = FALSE)) > names(all) <- paste(rev(names(specs)), collapse = ",") > specs <- c(specs, all) > > for (kk in seq_along(specs)) { + message(sprintf("- Specification #%d of %d", kk, length(specs))) + nodelist <- names(specs)[kk] + truth <- specs[[kk]] + cat(sprintf("nodelist: %s\n", sQuote(nodelist))) + expanded <- slurm_expand_nodelist(nodelist, manual = TRUE) + cat(sprintf("expanded: c(%s)\n", paste(sQuote(expanded), collapse = ", "))) + cat(sprintf("truth: c(%s)\n", paste(sQuote(truth), collapse = ", "))) + stopifnot( + is.character(expanded), + !any(is.na(expanded)), + length(expanded) == length(truth), + identical(expanded, truth) + ) + + Sys.unsetenv(c("SLURM_JOB_NODELIST", "SLURM_NODELIST", + "SLURM_JOB_CPUS_PER_NODE", "SLURM_TASKS_PER_NODE")) + + ## Test without SLURM_JOB_CPUS_PER_NODE/SLURM_TASKS_PER_NODE + Sys.setenv(SLURM_JOB_NODELIST = nodelist) + for (name in c("SLURM_JOB_NODELIST", "SLURM_JOB_CPUS_PER_NODE")) { + cat(sprintf("%s = %s\n", name, sQuote(Sys.getenv(name)))) + } + workers <- availableWorkers(methods = "Slurm") + cat(sprintf("workers: c(%s)\n", paste(sQuote(workers), collapse = ", "))) + stopifnot(identical(workers, truth)) + + + ## Test with SLURM_JOB_CPUS_PER_NODE/SLURM_TASKS_PER_NODE + nhosts <- length(expanded) + ncores_per_host <- sample(1:10, size = nhosts, replace = TRUE) + + ## Handle the case when 'nodelist' result in a non-ordered 'expanded' + expanded2 <- as.list(expanded) + for (kk in seq_along(expanded2)) { + expanded2[[kk]] <- rep(expanded2[[kk]], times = ncores_per_host[kk]) + } + expanded2 <- unlist(expanded2, use.names = FALSE) + + Sys.setenv(SLURM_JOB_NODELIST = nodelist) + Sys.setenv(SLURM_JOB_CPUS_PER_NODE = paste(ncores_per_host, collapse = ",")) + + for (name in c("SLURM_JOB_NODELIST", "SLURM_JOB_CPUS_PER_NODE")) { + cat(sprintf("%s = %s\n", name, sQuote(Sys.getenv(name)))) + } + workers <- availableWorkers(methods = "Slurm") + cat(sprintf("workers: c(%s)\n", paste(sQuote(workers), collapse = ", "))) + stopifnot(identical(unique(workers), unique(truth))) + counts <- table(workers) + counts <- counts[unique(workers)] + print(counts) + counts2 <- table(expanded2) + counts2 <- counts2[unique(expanded2)] + print(counts2) + stopifnot( + sum(counts) == sum(ncores_per_host), + sum(counts) == sum(counts2), + all(counts == counts2) + ) + + Sys.unsetenv(c("SLURM_JOB_NODELIST", "SLURM_JOB_CPUS_PER_NODE")) + } - Specification #1 of 10 nodelist: 'n1' expanded: c('n1') truth: c('n1') SLURM_JOB_NODELIST = 'n1' SLURM_JOB_CPUS_PER_NODE = '' Warning in availableWorkers(methods = "Slurm") : Expected either environment variable 'SLURM_JOB_CPUS_PER_NODE' or 'SLURM_TASKS_PER_NODE' to be set. Will assume one core per node. workers: c('n1') SLURM_JOB_NODELIST = 'n1' SLURM_JOB_CPUS_PER_NODE = '2' workers: c('n1', 'n1') n1 2 n1 2 - Specification #2 of 10 nodelist: ' n1' expanded: c('n1') truth: c('n1') SLURM_JOB_NODELIST = ' n1' SLURM_JOB_CPUS_PER_NODE = '' Warning in availableWorkers(methods = "Slurm") : Expected either environment variable 'SLURM_JOB_CPUS_PER_NODE' or 'SLURM_TASKS_PER_NODE' to be set. Will assume one core per node. workers: c('n1') SLURM_JOB_NODELIST = ' n1' SLURM_JOB_CPUS_PER_NODE = '6' workers: c('n1', 'n1', 'n1', 'n1', 'n1', 'n1') n1 6 n1 6 - Specification #3 of 10 nodelist: 'n1,, n3' expanded: c('n1', 'n3') truth: c('n1', 'n3') SLURM_JOB_NODELIST = 'n1,, n3' SLURM_JOB_CPUS_PER_NODE = '' Warning in availableWorkers(methods = "Slurm") : Expected either environment variable 'SLURM_JOB_CPUS_PER_NODE' or 'SLURM_TASKS_PER_NODE' to be set. Will assume one core per node. workers: c('n1', 'n3') SLURM_JOB_NODELIST = 'n1,, n3' SLURM_JOB_CPUS_PER_NODE = '1,10' workers: c('n1', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3') workers n1 n3 1 10 expanded2 n1 n3 1 10 - Specification #4 of 10 nodelist: 'n1, n3' expanded: c('n1', 'n3') truth: c('n1', 'n3') SLURM_JOB_NODELIST = 'n1, n3' SLURM_JOB_CPUS_PER_NODE = '' Warning in availableWorkers(methods = "Slurm") : Expected either environment variable 'SLURM_JOB_CPUS_PER_NODE' or 'SLURM_TASKS_PER_NODE' to be set. Will assume one core per node. workers: c('n1', 'n3') SLURM_JOB_NODELIST = 'n1, n3' SLURM_JOB_CPUS_PER_NODE = '9,2' workers: c('n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n3', 'n3') workers n1 n3 9 2 expanded2 n1 n3 9 2 - Specification #5 of 10 nodelist: 'n3 n1' expanded: c('n3', 'n1') truth: c('n3', 'n1') SLURM_JOB_NODELIST = 'n3 n1' SLURM_JOB_CPUS_PER_NODE = '' Warning in availableWorkers(methods = "Slurm") : Expected either environment variable 'SLURM_JOB_CPUS_PER_NODE' or 'SLURM_TASKS_PER_NODE' to be set. Will assume one core per node. workers: c('n3', 'n1') SLURM_JOB_NODELIST = 'n3 n1' SLURM_JOB_CPUS_PER_NODE = '4,9' workers: c('n3', 'n3', 'n3', 'n3', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1') workers n3 n1 4 9 expanded2 n3 n1 4 9 - Specification #6 of 10 nodelist: 'n[1-13]' expanded: c('n1', 'n2', 'n3', 'n4', 'n5', 'n6', 'n7', 'n8', 'n9', 'n10', 'n11', 'n12', 'n13') truth: c('n1', 'n2', 'n3', 'n4', 'n5', 'n6', 'n7', 'n8', 'n9', 'n10', 'n11', 'n12', 'n13') SLURM_JOB_NODELIST = 'n[1-13]' SLURM_JOB_CPUS_PER_NODE = '' Warning in availableWorkers(methods = "Slurm") : Expected either environment variable 'SLURM_JOB_CPUS_PER_NODE' or 'SLURM_TASKS_PER_NODE' to be set. Will assume one core per node. workers: c('n1', 'n2', 'n3', 'n4', 'n5', 'n6', 'n7', 'n8', 'n9', 'n10', 'n11', 'n12', 'n13') SLURM_JOB_NODELIST = 'n[1-13]' SLURM_JOB_CPUS_PER_NODE = '2,5,3,8,4,8,9,6,2,10,10,8,6' workers: c('n1', 'n1', 'n2', 'n2', 'n2', 'n2', 'n2', 'n3', 'n3', 'n3', 'n4', 'n4', 'n4', 'n4', 'n4', 'n4', 'n4', 'n4', 'n5', 'n5', 'n5', 'n5', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n7', 'n7', 'n7', 'n7', 'n7', 'n7', 'n7', 'n7', 'n7', 'n8', 'n8', 'n8', 'n8', 'n8', 'n8', 'n9', 'n9', 'n10', 'n10', 'n10', 'n10', 'n10', 'n10', 'n10', 'n10', 'n10', 'n10', 'n11', 'n11', 'n11', 'n11', 'n11', 'n11', 'n11', 'n11', 'n11', 'n11', 'n12', 'n12', 'n12', 'n12', 'n12', 'n12', 'n12', 'n12', 'n13', 'n13', 'n13', 'n13', 'n13', 'n13') workers n1 n2 n3 n4 n5 n6 n7 n8 n9 n10 n11 n12 n13 2 5 3 8 4 8 9 6 2 10 10 8 6 expanded2 n1 n2 n3 n4 n5 n6 n7 n8 n9 n10 n11 n12 n13 2 5 3 8 4 8 9 6 2 10 10 8 6 - Specification #7 of 10 nodelist: 'n[1,3-4, 11-13]' expanded: c('n1', 'n3', 'n4', 'n0011', 'n0012', 'n0013') truth: c('n1', 'n3', 'n4', 'n0011', 'n0012', 'n0013') SLURM_JOB_NODELIST = 'n[1,3-4, 11-13]' SLURM_JOB_CPUS_PER_NODE = '' Warning in availableWorkers(methods = "Slurm") : Expected either environment variable 'SLURM_JOB_CPUS_PER_NODE' or 'SLURM_TASKS_PER_NODE' to be set. Will assume one core per node. workers: c('n1', 'n3', 'n4', 'n0011', 'n0012', 'n0013') SLURM_JOB_NODELIST = 'n[1,3-4, 11-13]' SLURM_JOB_CPUS_PER_NODE = '2,10,7,5,4,2' workers: c('n1', 'n1', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n4', 'n4', 'n4', 'n4', 'n4', 'n4', 'n4', 'n0011', 'n0011', 'n0011', 'n0011', 'n0011', 'n0012', 'n0012', 'n0012', 'n0012', 'n0013', 'n0013') workers n1 n3 n4 n0011 n0012 n0013 2 10 7 5 4 2 expanded2 n1 n3 n4 n0011 n0012 n0013 2 10 7 5 4 2 - Specification #8 of 10 nodelist: 'a1,b[ 02-04,6-7]' expanded: c('a1', 'b00002', 'b00003', 'b00004', 'b6', 'b7') truth: c('a1', 'b00002', 'b00003', 'b00004', 'b6', 'b7') SLURM_JOB_NODELIST = 'a1,b[ 02-04,6-7]' SLURM_JOB_CPUS_PER_NODE = '' Warning in availableWorkers(methods = "Slurm") : Expected either environment variable 'SLURM_JOB_CPUS_PER_NODE' or 'SLURM_TASKS_PER_NODE' to be set. Will assume one core per node. workers: c('a1', 'b00002', 'b00003', 'b00004', 'b6', 'b7') SLURM_JOB_NODELIST = 'a1,b[ 02-04,6-7]' SLURM_JOB_CPUS_PER_NODE = '1,6,6,4,7,3' workers: c('a1', 'b00002', 'b00002', 'b00002', 'b00002', 'b00002', 'b00002', 'b00003', 'b00003', 'b00003', 'b00003', 'b00003', 'b00003', 'b00004', 'b00004', 'b00004', 'b00004', 'b6', 'b6', 'b6', 'b6', 'b6', 'b6', 'b6', 'b7', 'b7', 'b7') workers a1 b00002 b00003 b00004 b6 b7 1 6 6 4 7 3 expanded2 a1 b00002 b00003 b00004 b6 b7 1 6 6 4 7 3 - Specification #9 of 10 nodelist: 'n1, n1,n1,, n3,n1, n3,n3 n1,n[1-13],n[1,3-4, 11-13],a1,b[ 02-04,6-7]' expanded: c('n1', 'n1', 'n1', 'n3', 'n1', 'n3', 'n3', 'n1', 'n1', 'n2', 'n3', 'n4', 'n5', 'n6', 'n7', 'n8', 'n9', 'n10', 'n11', 'n12', 'n13', 'n1', 'n3', 'n4', 'n0011', 'n0012', 'n0013', 'a1', 'b00002', 'b00003', 'b00004', 'b6', 'b7') truth: c('n1', 'n1', 'n1', 'n3', 'n1', 'n3', 'n3', 'n1', 'n1', 'n2', 'n3', 'n4', 'n5', 'n6', 'n7', 'n8', 'n9', 'n10', 'n11', 'n12', 'n13', 'n1', 'n3', 'n4', 'n0011', 'n0012', 'n0013', 'a1', 'b00002', 'b00003', 'b00004', 'b6', 'b7') SLURM_JOB_NODELIST = 'n1, n1,n1,, n3,n1, n3,n3 n1,n[1-13],n[1,3-4, 11-13],a1,b[ 02-04,6-7]' SLURM_JOB_CPUS_PER_NODE = '' Warning in availableWorkers(methods = "Slurm") : Expected either environment variable 'SLURM_JOB_CPUS_PER_NODE' or 'SLURM_TASKS_PER_NODE' to be set. Will assume one core per node. workers: c('n1', 'n1', 'n1', 'n3', 'n1', 'n3', 'n3', 'n1', 'n1', 'n2', 'n3', 'n4', 'n5', 'n6', 'n7', 'n8', 'n9', 'n10', 'n11', 'n12', 'n13', 'n1', 'n3', 'n4', 'n0011', 'n0012', 'n0013', 'a1', 'b00002', 'b00003', 'b00004', 'b6', 'b7') SLURM_JOB_NODELIST = 'n1, n1,n1,, n3,n1, n3,n3 n1,n[1-13],n[1,3-4, 11-13],a1,b[ 02-04,6-7]' SLURM_JOB_CPUS_PER_NODE = '6,3,10,1,10,9,4,9,1,5,1,2,7,10,10,4,8,6,7,8,2,10,2,1,9,1,2,2,4,4,9,5,3' workers: c('n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n3', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n2', 'n2', 'n2', 'n2', 'n2', 'n3', 'n4', 'n4', 'n5', 'n5', 'n5', 'n5', 'n5', 'n5', 'n5', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n7', 'n7', 'n7', 'n7', 'n7', 'n7', 'n7', 'n7', 'n7', 'n7', 'n8', 'n8', 'n8', 'n8', 'n9', 'n9', 'n9', 'n9', 'n9', 'n9', 'n9', 'n9', 'n10', 'n10', 'n10', 'n10', 'n10', 'n10', 'n11', 'n11', 'n11', 'n11', 'n11', 'n11', 'n11', 'n12', 'n12', 'n12', 'n12', 'n12', 'n12', 'n12', 'n12', 'n13', 'n13', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n3', 'n3', 'n4', 'n0011', 'n0011', 'n0011', 'n0011', 'n0011', 'n0011', 'n0011', 'n0011', 'n0011', 'n0012', 'n0013', 'n0013', 'a1', 'a1', 'b00002', 'b00002', 'b00002', 'b00002', 'b00003', 'b00003', 'b00003', 'b00003', 'b00004', 'b00004', 'b00004', 'b00004', 'b00004', 'b00004', 'b00004', 'b00004', 'b00004', 'b6', 'b6', 'b6', 'b6', 'b6', 'b7', 'b7', 'b7') workers n1 n3 n2 n4 n5 n6 n7 n8 n9 n10 n11 49 17 5 3 7 10 10 4 8 6 7 n12 n13 n0011 n0012 n0013 a1 b00002 b00003 b00004 b6 b7 8 2 9 1 2 2 4 4 9 5 3 expanded2 n1 n3 n2 n4 n5 n6 n7 n8 n9 n10 n11 49 17 5 3 7 10 10 4 8 6 7 n12 n13 n0011 n0012 n0013 a1 b00002 b00003 b00004 b6 b7 8 2 9 1 2 2 4 4 9 5 3 - Specification #10 of 10 nodelist: 'n1, n1,n1,, n3,n1, n3,n3 n1,n[1-13],n[1,3-4, 11-13],a1,b[ 02-04,6-7],a1,b[ 02-04,6-7],n[1,3-4, 11-13],n[1-13],n3 n1,n1, n3,n1,, n3, n1,n1' expanded: c('n1', 'n1', 'n1', 'n3', 'n1', 'n3', 'n3', 'n1', 'n1', 'n2', 'n3', 'n4', 'n5', 'n6', 'n7', 'n8', 'n9', 'n10', 'n11', 'n12', 'n13', 'n1', 'n3', 'n4', 'n0011', 'n0012', 'n0013', 'a1', 'b00002', 'b00003', 'b00004', 'b6', 'b7', 'a1', 'b00002', 'b00003', 'b00004', 'b6', 'b7', 'n1', 'n3', 'n4', 'n0011', 'n0012', 'n0013', 'n1', 'n2', 'n3', 'n4', 'n5', 'n6', 'n7', 'n8', 'n9', 'n10', 'n11', 'n12', 'n13', 'n3', 'n1', 'n1', 'n3', 'n1', 'n3', 'n1', 'n1') truth: c('n1', 'n1', 'n1', 'n3', 'n1', 'n3', 'n3', 'n1', 'n1', 'n2', 'n3', 'n4', 'n5', 'n6', 'n7', 'n8', 'n9', 'n10', 'n11', 'n12', 'n13', 'n1', 'n3', 'n4', 'n0011', 'n0012', 'n0013', 'a1', 'b00002', 'b00003', 'b00004', 'b6', 'b7', 'a1', 'b00002', 'b00003', 'b00004', 'b6', 'b7', 'n1', 'n3', 'n4', 'n0011', 'n0012', 'n0013', 'n1', 'n2', 'n3', 'n4', 'n5', 'n6', 'n7', 'n8', 'n9', 'n10', 'n11', 'n12', 'n13', 'n3', 'n1', 'n1', 'n3', 'n1', 'n3', 'n1', 'n1') SLURM_JOB_NODELIST = 'n1, n1,n1,, n3,n1, n3,n3 n1,n[1-13],n[1,3-4, 11-13],a1,b[ 02-04,6-7],a1,b[ 02-04,6-7],n[1,3-4, 11-13],n[1-13],n3 n1,n1, n3,n1,, n3, n1,n1' SLURM_JOB_CPUS_PER_NODE = '' Warning in availableWorkers(methods = "Slurm") : Expected either environment variable 'SLURM_JOB_CPUS_PER_NODE' or 'SLURM_TASKS_PER_NODE' to be set. Will assume one core per node. workers: c('n1', 'n1', 'n1', 'n3', 'n1', 'n3', 'n3', 'n1', 'n1', 'n2', 'n3', 'n4', 'n5', 'n6', 'n7', 'n8', 'n9', 'n10', 'n11', 'n12', 'n13', 'n1', 'n3', 'n4', 'n0011', 'n0012', 'n0013', 'a1', 'b00002', 'b00003', 'b00004', 'b6', 'b7', 'a1', 'b00002', 'b00003', 'b00004', 'b6', 'b7', 'n1', 'n3', 'n4', 'n0011', 'n0012', 'n0013', 'n1', 'n2', 'n3', 'n4', 'n5', 'n6', 'n7', 'n8', 'n9', 'n10', 'n11', 'n12', 'n13', 'n3', 'n1', 'n1', 'n3', 'n1', 'n3', 'n1', 'n1') SLURM_JOB_NODELIST = 'n1, n1,n1,, n3,n1, n3,n3 n1,n[1-13],n[1,3-4, 11-13],a1,b[ 02-04,6-7],a1,b[ 02-04,6-7],n[1,3-4, 11-13],n[1-13],n3 n1,n1, n3,n1,, n3, n1,n1' SLURM_JOB_CPUS_PER_NODE = '6,10,4,2,7,10,1,8,2,7,1,3,10,10,2,7,6,4,2,3,2,3,3,4,9,4,5,8,2,9,8,2,10,6,7,6,6,5,1,9,3,6,1,4,2,5,7,10,2,3,8,8,5,9,2,1,3,6,10,1,7,4,10,8,7,3' workers: c('n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n3', 'n3', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n2', 'n2', 'n2', 'n2', 'n2', 'n2', 'n2', 'n3', 'n4', 'n4', 'n4', 'n5', 'n5', 'n5', 'n5', 'n5', 'n5', 'n5', 'n5', 'n5', 'n5', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n7', 'n7', 'n8', 'n8', 'n8', 'n8', 'n8', 'n8', 'n8', 'n9', 'n9', 'n9', 'n9', 'n9', 'n9', 'n10', 'n10', 'n10', 'n10', 'n11', 'n11', 'n12', 'n12', 'n12', 'n13', 'n13', 'n1', 'n1', 'n1', 'n3', 'n3', 'n3', 'n4', 'n4', 'n4', 'n4', 'n0011', 'n0011', 'n0011', 'n0011', 'n0011', 'n0011', 'n0011', 'n0011', 'n0011', 'n0012', 'n0012', 'n0012', 'n0012', 'n0013', 'n0013', 'n0013', 'n0013', 'n0013', 'a1', 'a1', 'a1', 'a1', 'a1', 'a1', 'a1', 'a1', 'b00002', 'b00002', 'b00003', 'b00003', 'b00003', 'b00003', 'b00003', 'b00003', 'b00003', 'b00003', 'b00003', 'b00004', 'b00004', 'b00004', 'b00004', 'b00004', 'b00004', 'b00004', 'b00004', 'b6', 'b6', 'b7', 'b7', 'b7', 'b7', 'b7', 'b7', 'b7', 'b7', 'b7', 'b7', 'a1', 'a1', 'a1', 'a1', 'a1', 'a1', 'b00002', 'b00002', 'b00002', 'b00002', 'b00002', 'b00002', 'b00002', 'b00003', 'b00003', 'b00003', 'b00003', 'b00003', 'b00003', 'b00004', 'b00004', 'b00004', 'b00004', 'b00004', 'b00004', 'b6', 'b6', 'b6', 'b6', 'b6', 'b7', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n3', 'n3', 'n3', 'n4', 'n4', 'n4', 'n4', 'n4', 'n4', 'n0011', 'n0012', 'n0012', 'n0012', 'n0012', 'n0013', 'n0013', 'n1', 'n1', 'n1', 'n1', 'n1', 'n2', 'n2', 'n2', 'n2', 'n2', 'n2', 'n2', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n4', 'n4', 'n5', 'n5', 'n5', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n6', 'n7', 'n7', 'n7', 'n7', 'n7', 'n7', 'n7', 'n7', 'n8', 'n8', 'n8', 'n8', 'n8', 'n9', 'n9', 'n9', 'n9', 'n9', 'n9', 'n9', 'n9', 'n9', 'n10', 'n10', 'n11', 'n12', 'n12', 'n12', 'n13', 'n13', 'n13', 'n13', 'n13', 'n13', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n3', 'n3', 'n3', 'n3', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n3', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1', 'n1') workers n1 n3 n2 n4 n5 n6 n7 n8 n9 n10 n11 82 52 14 15 13 18 10 12 15 6 3 n12 n13 n0011 n0012 n0013 a1 b00002 b00003 b00004 b6 b7 6 8 10 8 7 14 9 15 14 7 11 expanded2 n1 n3 n2 n4 n5 n6 n7 n8 n9 n10 n11 82 52 14 15 13 18 10 12 15 6 3 n12 n13 n0011 n0012 n0013 a1 b00002 b00003 b00004 b6 b7 6 8 10 8 7 14 9 15 14 7 11 > > message("*** Slurm w/ SLURM_JOB_NODELIST ... DONE") *** Slurm w/ SLURM_JOB_NODELIST ... DONE > > > message("*** Slurm w/ SLURM_TASKS_PER_NODE ...") *** Slurm w/ SLURM_TASKS_PER_NODE ... > > slurm_expand_nodecounts <- parallelly:::slurm_expand_nodecounts > > specs <- list( + "1" = c(1L), + "1,3" = c(1L,3L), + "1, 3" = c(1L,3L), + "2(x3)" = rep(2L, times = 3L), + "2(x3),3,4(x1)" = c(rep(2L, times = 3L), 3L, 4L) + ) > > for (kk in seq_along(specs)) { + message(sprintf("- Specification #%d of %d", kk, length(specs))) + nodecounts <- names(specs)[kk] + truth <- specs[[kk]] + cat(sprintf("nodecounts: %s\n", sQuote(nodecounts))) + expanded <- slurm_expand_nodecounts(nodecounts) + cat(sprintf("expanded: c(%s)\n", paste(sQuote(expanded), collapse = ", "))) + cat(sprintf("truth: c(%s)\n", paste(sQuote(truth), collapse = ", "))) + stopifnot( + is.integer(expanded), + !any(is.na(expanded)), + length(expanded) == length(truth), + identical(expanded, truth) + ) + } - Specification #1 of 5 nodecounts: '1' expanded: c('1') truth: c('1') - Specification #2 of 5 nodecounts: '1,3' expanded: c('1', '3') truth: c('1', '3') - Specification #3 of 5 nodecounts: '1, 3' expanded: c('1', '3') truth: c('1', '3') - Specification #4 of 5 nodecounts: '2(x3)' expanded: c('2', '2', '2') truth: c('2', '2', '2') - Specification #5 of 5 nodecounts: '2(x3),3,4(x1)' expanded: c('2', '2', '2', '3', '4') truth: c('2', '2', '2', '3', '4') > > message("*** Slurm w/ SLURM_TASKS_PER_NODE ... DONE") *** Slurm w/ SLURM_TASKS_PER_NODE ... DONE > > > > message("*** HPC related ... DONE") *** HPC related ... DONE > > > ## Any R options and system environment variable > print(availableWorkers(methods = c("width", "FOO_BAR_ENV"), + na.rm = FALSE, which = "all")) $width [1] "80" $FOO_BAR_ENV character(0) > > ## Exception handling > Sys.setenv("FOO_BAR_ENV" = "0") > res <- tryCatch(availableWorkers(methods = "FOO_BAR_ENV"), error = identity) [12:31:18.420] Detected invalid (zero or less) core settings: 'FOO_BAR_ENV' = 0 > stopifnot(inherits(res, "error")) > > message("*** availableWorkers() ... DONE") *** availableWorkers() ... DONE > > source("incl/end.R") > > proc.time() user system elapsed 0.42 0.14 0.54