forked from rarias/bscpkgs
nbody: Fix test experiment
This commit is contained in:
parent
3bd4e61f3f
commit
a66cdb52fb
@ -14,12 +14,17 @@ let
|
|||||||
blocksize = [ 128 256 512 1024 2048 4096 ];
|
blocksize = [ 128 256 512 1024 2048 4096 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
machineConfig = targetMachine.config;
|
||||||
|
|
||||||
# Generate the complete configuration for each unit
|
# Generate the complete configuration for each unit
|
||||||
genConf = with bsc; c: targetMachine.config // rec {
|
genConf = with bsc; c: targetMachine.config // rec {
|
||||||
|
inherit (machineConfig) hw;
|
||||||
# nbody options
|
# nbody options
|
||||||
particles = 1024 * 64;
|
particles = 1024 * 64;
|
||||||
timesteps = 10;
|
timesteps = 10;
|
||||||
inherit (c) blocksize;
|
inherit (c) blocksize;
|
||||||
|
totalTasks = ntasksPerNode * nodes;
|
||||||
|
particlesPerTask = particles / totalTasks;
|
||||||
cc = icc;
|
cc = icc;
|
||||||
mpi = impi;
|
mpi = impi;
|
||||||
gitBranch = "garlic/mpi+send";
|
gitBranch = "garlic/mpi+send";
|
||||||
@ -33,7 +38,7 @@ let
|
|||||||
nodes = 1;
|
nodes = 1;
|
||||||
time = "02:00:00";
|
time = "02:00:00";
|
||||||
cpuBind = "sockets,verbose";
|
cpuBind = "sockets,verbose";
|
||||||
jobName = "nbody-bs-${toString blocksize}-${gitBranch}";
|
jobName = "bs-${toString blocksize}-${gitBranch}-nbody";
|
||||||
|
|
||||||
# Experiment revision: this allows a user to run again a experiment already
|
# Experiment revision: this allows a user to run again a experiment already
|
||||||
# executed
|
# executed
|
||||||
|
Loading…
x
Reference in New Issue
Block a user