Improvement the experiment based on CREAMS

This commit is contained in:
Pedro Martinez
2020-10-01 16:48:35 +02:00
parent 5cbc8e4fbb
commit 6ae71cc5e9
5 changed files with 44 additions and 203 deletions

View File

@@ -144,18 +144,17 @@ let
# };
#
creams = callPackage ./garlic/creams {
gnuDef = self.gfortran10 ; # Default GNU compiler version
intelDef = self.bsc.icc ; # Default Intel compiler version
gitBranch = "garlic/mpi+send+seq";
#cc = self.gcc10; # Does not work
#mpi = self.bsc.openmpi-mn4; # Does not work
cc = self.bsc.icc;
mpi = self.bsc.mpi;
cc = self.bsc.icc; # self.bsc.icc OR self.gfortran10;
mpi = self.bsc.mpi; # self.bsc.mpi OR self.bsc.openmpi-mn4;
};
creamsInput = callPackage ./garlic/creams/input.nix {
gitBranch = "garlic/mpi+send+seq";
nodes = 1;
};
# lulesh = callPackage ./garlic/lulesh {