From 6a2ae54d7e140b859cddc62384dede39643c9767 Mon Sep 17 00:00:00 2001 From: Ovidiu Mircescu Date: Tue, 18 Oct 2016 15:52:17 +0200 Subject: [PATCH] Change the translation of the parameter "QUEUE" for slurm. The translation of the generic parameter "QUEUE" for slurm is changed from "partition" to "qos" because it is considered more accurate. --- src/Slurm/BatchManager_Slurm.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Slurm/BatchManager_Slurm.cxx b/src/Slurm/BatchManager_Slurm.cxx index 7c42367..8199cb5 100644 --- a/src/Slurm/BatchManager_Slurm.cxx +++ b/src/Slurm/BatchManager_Slurm.cxx @@ -151,7 +151,7 @@ namespace Batch { else if (params.find(MEMPERCPU) != params.end()) tempOutputFile << "#SBATCH --mem-per-cpu=" << params[MEMPERCPU] << endl; if (params.find(QUEUE) != params.end()) - tempOutputFile << "#SBATCH --partition=" << params[QUEUE] << endl; + tempOutputFile << "#SBATCH --qos=" << params[QUEUE] << endl; if (params.find(WCKEY) != params.end()) tempOutputFile << "#SBATCH --wckey=" << params[WCKEY] << endl; if (params.find(EXTRAPARAMS) != params.end()) -- 2.39.2