bscpkgs/garlic/exp/fwi/sync_io.nix

87 lines
1.7 KiB
Nix
Raw Normal View History

# This experiment compares the effect of not using I/O versus using O_DIRECT |
# O_DSYNC enabled I/O. This is a reduced version of the strong_scaling_io
# experiment.
2020-10-30 22:58:03 +08:00
{
stdenv
, stdexp
, bsc
, targetMachine
, stages
, callPackage
2020-10-30 22:58:03 +08:00
}:
with stdenv.lib;
let
common = callPackage ./common.nix {};
inherit (common) getConfigs getResources pipeline;
inherit (targetMachine) fs;
2020-10-30 22:58:03 +08:00
# Initial variable configuration
varConf = {
gitBranch = [
"garlic/tampi+send+oss+task"
# "garlic/mpi+send+omp+task"
2021-03-27 00:34:34 +08:00
# "garlic/mpi+send+oss+task"
2021-03-05 01:41:24 +08:00
# "garlic/mpi+send+seq"
# "garlic/oss+task"
# "garlic/omp+task"
# "garlic/seq"
];
2021-03-05 01:41:24 +08:00
blocksize = [ 1 ];
n = [
{nx=500; nz=500; ny=16000;}
];
nodes = [ 4 ];
ioFreq = [ 9999 (-1) ];
2020-10-30 22:58:03 +08:00
};
machineConfig = targetMachine.config;
2020-10-30 22:58:03 +08:00
# Generate the complete configuration for each unit
genConf = with bsc; c: targetMachine.config // rec {
expName = "fwi-sync-io";
unitName = "${expName}"
+ "-ioFreq${toString ioFreq}"
+ "-${toString gitBranch}";
inherit (machineConfig) hw;
2021-03-05 01:41:24 +08:00
inherit (c) gitBranch blocksize;
inherit (c.n) nx ny nz;
# Other FWI parameters
ioFreq = c.ioFreq;
# Repeat the execution of each unit several times
loops = 10;
2020-10-30 22:58:03 +08:00
# Resources
inherit (getResources { inherit gitBranch hw; })
cpusPerTask ntasksPerNode;
nodes = c.nodes;
qos = "debug";
2020-10-30 22:58:03 +08:00
time = "02:00:00";
jobName = unitName;
enableCTF = false;
# Enable permissions to write in the local storage
extraMounts = [ fs.local.temp ];
tempDir = fs.local.temp;
2020-10-30 22:58:03 +08:00
};
configs = getConfigs {
2020-10-30 22:58:03 +08:00
inherit varConf genConf;
};
in
stdexp.genExperiment { inherit configs pipeline; }