Archived
1
0
forked from rarias/bscpkgs
This repository has been archived on 2025-10-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bscpkgs/garlic/machines.nix

19 lines
360 B
Nix

{
stdenv
}:
{
# MareNostrum 4 configuration
mn4 = {
config = {
name = "mn4";
sshHosts = [ "mn1" "mn2" "mn3" ];
nixPrefix = "/gpfs/projects/bsc15/nix";
cachelineBytes = 64;
march = "skylake-avx512";
mtune = "skylake-avx512";
};
# TODO: Add the specific details for SLURM and the interconection here
};
}