From 9f014113577ef4a0e90ed19655a33aad2ca1db70 Mon Sep 17 00:00:00 2001 From: David Klein <dklein@pik-potsdam.de> Date: Thu, 20 Feb 2020 11:19:42 +0100 Subject: [PATCH] Revert "Added file for choosing the slurm config" This reverts commit 9b510e4b84b96e16cbc91a2a38ed0eaf2d53eda0. --- scripts/utils/choose_slurmConfig.R | 45 ------------------------------ 1 file changed, 45 deletions(-) delete mode 100644 scripts/utils/choose_slurmConfig.R diff --git a/scripts/utils/choose_slurmConfig.R b/scripts/utils/choose_slurmConfig.R deleted file mode 100644 index f121607..0000000 --- a/scripts/utils/choose_slurmConfig.R +++ /dev/null @@ -1,45 +0,0 @@ -####################################################################### -############### Select slurm partitiion ############################### -####################################################################### - -get_line <- function(){ - # gets characters (line) from the terminal or from a connection - # and returns it - if(interactive()){ - s <- readline() - } else { - con <- file("stdin") - s <- readLines(con, 1, warn=FALSE) - on.exit(close(con)) - } - return(s); -} - -choose_slurmConfig <- function() { - - slurm <- suppressWarnings(ifelse(system2("srun",stdout=FALSE,stderr=FALSE) != 127, TRUE, FALSE)) - if (slurm) { - modes <- c(" SLURM standby ", - " SLURM priority" - ) - - cat("\nCurrent cluster utilization:\n") - system("sclass") - cat("\n") - - cat("\nPlease choose run submission type:\n") - cat(paste(1:length(modes), modes, sep=": " ),sep="\n") - cat("Number: ") - identifier <- get_line() - identifier <- as.numeric(strsplit(identifier,",")[[1]]) - comp <- switch(identifier, - "1" = "--qos=standby --nodes=1 --tasks-per-node=1" , - "2" = "--qos=priority --nodes=1 --tasks-per-node=1" ) - - if(is.null(comp)) stop("This type is invalid. Please choose a valid type") - } else { - comp <- "direct" - } - - return(comp) -} -- GitLab