bscpkgs/bsc/garlic/srunner.nix

69 lines
1.2 KiB
Nix
Raw Normal View History

2020-07-31 18:47:33 +02:00
{
stdenv
2020-08-04 11:51:09 +02:00
, numactl
2020-07-31 18:47:33 +02:00
}:
{
app
, argv ? ""
, binary ? "/bin/run"
, ntasks ? null
, exclusive ? true # By default we run in exclusive mode
, workdir ? "."
, qos ? null
, time ? null
, output ? "job_%j.out"
, error ? "job_%j.err"
, contiguous ? null
, extra ? null
}:
with stdenv.lib;
let
sbatchOpt = name: value: optionalString (value!=null)
"#SBATCH --${name}=${value}\n";
sbatchEnable = name: value: optionalString (value!=null)
"#SBATCH --${name}\n";
in
stdenv.mkDerivation rec {
name = "${app.name}-job";
preferLocalBuild = true;
src = ./.;
buildInputs = [ app ];
#SBATCH --tasks-per-node=48
#SBATCH --ntasks-per-socket=24
#SBATCH --cpus-per-task=1
dontBuild = true;
installPhase = ''
2020-08-04 11:51:09 +02:00
mkdir -p $out/bin
cat > $out/bin/run <<EOF
2020-07-31 18:47:33 +02:00
#!/bin/bash
#SBATCH --job-name="${name}"
''
+ sbatchOpt "ntasks" ntasks
+ sbatchOpt "ntasks" ntasks
+ sbatchOpt "workdir" workdir
+ sbatchOpt "output" output
+ sbatchOpt "error" error
+ sbatchEnable "exclusive" exclusive
+ sbatchOpt "time" time
+ sbatchOpt "qos" qos
+ optionalString (extra!=null) extra
+''
2020-08-04 11:51:09 +02:00
${numactl}/bin/numactl -s
2020-07-31 18:47:33 +02:00
2020-08-04 11:51:09 +02:00
srun ${app}${binary} ${argv}
2020-07-31 18:47:33 +02:00
EOF
2020-08-04 11:51:09 +02:00
chmod +x $out/bin/run
2020-07-31 18:47:33 +02:00
'';
}