First attempt to create an experiment with CREAMS: strong scaling from 1 to 16 nodes using the pure MPI version

This commit is contained in:
Pedro Martinez
2020-09-30 17:32:49 +02:00
parent 50eeca2257
commit 5cbc8e4fbb
7 changed files with 594 additions and 13 deletions

View File

@@ -28,7 +28,7 @@ with stdenv.lib;
let
sbatchOpt = name: value: optionalString (value!=null)
"#SBATCH --${name}=${value}\n";
"#SBATCH --${name}=${toString value}\n";
sbatchEnable = name: value: optionalString (value!=null)
"#SBATCH --${name}\n";