bscpkgs/garlic/machines.nix

19 lines
360 B
Nix
Raw Normal View History

2020-10-09 21:55:37 +08:00
{
stdenv
}:
{
# MareNostrum 4 configuration
mn4 = {
config = {
name = "mn4";
2020-10-09 22:13:16 +08:00
sshHosts = [ "mn1" "mn2" "mn3" ];
2020-10-09 21:55:37 +08:00
nixPrefix = "/gpfs/projects/bsc15/nix";
cachelineBytes = 64;
march = "skylake-avx512";
mtune = "skylake-avx512";
};
# TODO: Add the specific details for SLURM and the interconection here
};
}