WIP: trying to make mpi branch working

This commit is contained in:
Raúl Peñacoba
2020-10-13 14:59:49 +02:00
parent 6bd7e12cff
commit 7bf3e81233
4 changed files with 179 additions and 7 deletions

View File

@@ -16,9 +16,7 @@ let
varConfig = {
cc = [ bsc.icc ];
gitBranch = [ "garlic/seq" ];
nx = [ 104 64 ];
ny = [ 104 64 ];
nz = [ 104 64 ];
n = [ 104 64 ];
};
# Common configuration
@@ -106,9 +104,9 @@ let
argv = {stage, conf, ...}: with conf; w.argv {
program = stageProgram stage;
argv = ''(
--nx=${toString nx}
--ny=${toString ny}
--nz=${toString nz}
--nx=${toString n}
--ny=${toString n}
--nz=${toString n}
)'';
};
@@ -158,7 +156,7 @@ let
# Optionally profile nanos6 with the new ctf
++ optional enableCtf ctf
# Execute the nbody app with the argv and env vars
# Execute the hpcg app with the argv and env vars
++ [ argv hpcgFn ];
# List of actual programs to be executed