Fix tampi experiment to use multiple CPUs per task

This commit is contained in:
Rodrigo Arias 2020-10-05 10:47:16 +02:00
parent d4ea0fe607
commit 533d8e9768

View File

@ -25,12 +25,12 @@ let
gitBranch = "garlic/tampi+send+oss+task";
# nbody runtime options
particles = 1024*128;
timesteps = 20;
particles = 1024*4;
timesteps = 10;
# Resources
ntasksPerNode = "48";
nodes = "1";
ntasksPerNode = "2";
nodes = "2";
# Stage configuration
enableSbatch = true;
@ -76,7 +76,7 @@ let
srun = {stage, conf, ...}: with conf; w.srun {
program = stageProgram stage;
srunOptions = "--cpu-bind=verbose,rank";
srunOptions = "--cpu-bind=verbose,socket";
inherit nixPrefix;
};