From 76b0a239e3e75fc647141794da81ee5ed8ceefef Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Mon, 24 Aug 2020 18:07:09 +0200 Subject: [PATCH] sbatch: Add reservation flag --- bsc/garlic/sbatch.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bsc/garlic/sbatch.nix b/bsc/garlic/sbatch.nix index dfdc313..41bffb1 100644 --- a/bsc/garlic/sbatch.nix +++ b/bsc/garlic/sbatch.nix @@ -14,6 +14,7 @@ , nodes ? null , exclusive ? true # By default we run in exclusive mode , qos ? null +, reservation ? null , time ? null , output ? "job_%j.out" , error ? "job_%j.err" @@ -60,6 +61,7 @@ stdenv.mkDerivation rec { + sbatchEnable "exclusive" exclusive + sbatchOpt "time" time + sbatchOpt "qos" qos + + sbatchOpt "reservation" reservation + optionalString (extra!=null) extra + ''