From a4b2dfddb489ad0c95a86537f558c7460722174b Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Tue, 23 Feb 2021 11:49:14 +0100 Subject: [PATCH] saiph: update granularity experiment --- garlic/exp/saiph/granularity.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/garlic/exp/saiph/granularity.nix b/garlic/exp/saiph/granularity.nix index 2cbde8d..43e251a 100644 --- a/garlic/exp/saiph/granularity.nix +++ b/garlic/exp/saiph/granularity.nix @@ -11,7 +11,7 @@ with stdenv.lib; let # Initial variable configuration varConf = with bsc; { - nb = [ 1 2 4 8 ]; + nb = [ 1 2 4 8 16 32 64 ]; }; # Generate the complete configuration for each unit @@ -21,7 +21,7 @@ let inherit (targetMachine.config) hw; # saiph options - nbx = c.nb; + nbx = 1; nby = c.nb; nbz = c.nb; mpi = impi; @@ -32,7 +32,7 @@ let # Resources qos = "debug"; - time = "00:30:00"; + time = "02:00:00"; ntasksPerNode = 1; nodes = 1; cpusPerTask = hw.cpusPerSocket; @@ -48,7 +48,6 @@ let inherit nextStage; env = '' export OMP_NUM_THREADS=${toString hw.cpusPerSocket} - export NANOS6_REPORT_PREFIX="#" export ASAN_SYMBOLIZER_PATH=${bsc.clangOmpss2Unwrapped}/bin/llvm-symbolizer ''; };