machines: Use fs topology
This commit is contained in:
parent
4f0da10321
commit
2863ab6ae1
@ -20,15 +20,28 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
# Experimental naming convention for the FS
|
# Experimental naming convention for the FS
|
||||||
#fs = {
|
fs = rec {
|
||||||
# cluster = {
|
topology = {
|
||||||
# fast = "/gpfs/scratch/bsc15/bsc15557/garlic";
|
gpfs = {
|
||||||
# reliable = "/gpfs/projects/bsc15/garlic";
|
projects = "/gpfs/projects/bsc15/garlic";
|
||||||
# };
|
scratch = "/gpfs/scratch/bsc15/bsc15557/garlic";
|
||||||
# node = {
|
};
|
||||||
# fast = "$TMPDIR";
|
|
||||||
# };
|
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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# TODO: Add the specific details for SLURM and the interconection here
|
# TODO: Add the specific details for SLURM and the interconection here
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user