From 9c20537f911b5a4244f4ed2412e0a2b77fe64d7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Pe=C3=B1acoba?= Date: Fri, 30 Oct 2020 15:10:47 +0100 Subject: [PATCH] Since mpi+omp version uses 6 threads, change nblocks values --- garlic/exp/hpcg/mpi+omp.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/garlic/exp/hpcg/mpi+omp.nix b/garlic/exp/hpcg/mpi+omp.nix index 5605901..dfe4696 100644 --- a/garlic/exp/hpcg/mpi+omp.nix +++ b/garlic/exp/hpcg/mpi+omp.nix @@ -12,7 +12,7 @@ let # Initial variable configuration varConf = with bsc; { n = [ { x = 128; y = 192; z = 192; } ]; - nblocks = [ 12 24 48 96 192 384 ]; + nblocks = [ 6 12 24 48 96 192 ]; }; # Generate the complete configuration for each unit @@ -51,6 +51,7 @@ let "--nx=${toString n.x}" "--ny=${toString n.y}" "--nz=${toString n.z}" + "--nblocks=${toString nblocks}" ]; };