2020-10-09 15:55:37 +02:00
|
|
|
{
|
|
|
|
stdenv
|
|
|
|
}:
|
|
|
|
|
|
|
|
{
|
|
|
|
# MareNostrum 4 configuration
|
|
|
|
mn4 = {
|
|
|
|
config = {
|
|
|
|
name = "mn4";
|
2020-10-13 14:30:03 +02:00
|
|
|
sshHost = "mn1";
|
2020-10-09 15:55:37 +02:00
|
|
|
nixPrefix = "/gpfs/projects/bsc15/nix";
|
|
|
|
march = "skylake-avx512";
|
|
|
|
mtune = "skylake-avx512";
|
2020-10-14 16:24:56 +02:00
|
|
|
hw = {
|
|
|
|
cpusPerNode = 48;
|
|
|
|
cpusPerSocket = 24;
|
|
|
|
socketsPerNode = 2;
|
|
|
|
cachelineBytes = 64;
|
|
|
|
};
|
2020-10-09 15:55:37 +02:00
|
|
|
};
|
2020-11-17 18:33:57 +01:00
|
|
|
|
|
|
|
# Experimental naming convention for the FS
|
2020-11-20 15:29:03 +01:00
|
|
|
fs = rec {
|
|
|
|
topology = {
|
|
|
|
gpfs = {
|
|
|
|
projects = "/gpfs/projects/bsc15/garlic";
|
|
|
|
scratch = "/gpfs/scratch/bsc15/bsc15557/garlic";
|
|
|
|
};
|
|
|
|
|
|
|
|
ssd = {
|
|
|
|
# Beware to expand the temp dir at execution time
|
|
|
|
temp = "$TMPDIR";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
shared = with topology; {
|
|
|
|
fast = gpfs.scratch;
|
|
|
|
reliable = gpfs.projects;
|
|
|
|
};
|
|
|
|
|
|
|
|
local = {
|
|
|
|
temp = topology.ssd.temp;
|
|
|
|
};
|
|
|
|
};
|
2020-11-17 18:33:57 +01:00
|
|
|
|
2020-10-09 15:55:37 +02:00
|
|
|
# TODO: Add the specific details for SLURM and the interconection here
|
|
|
|
};
|
|
|
|
}
|