WIP: first serial experiment. Don't know how to add gcc to compile

This commit is contained in:
Raúl Peñacoba 2020-10-08 18:24:56 +02:00
parent a44042615a
commit b5fb3730ac
2 changed files with 18 additions and 15 deletions

View File

@ -1,8 +1,5 @@
{
stdenv
, nanos6
, mpi
, tampi
, cc
, gitBranch ? "garlic/seq"
, makefileName ? "Linux_Serial"
@ -21,12 +18,14 @@ stdenv.mkDerivation rec {
'';
buildInputs = [
nanos6
mpi
tampi
cc
];
makeFlags = [
"CC=${cc.cc.CC}"
"CXX=${cc.cc.CXX}"
];
enableParallelBuilding = true;
configurePhase = ''

View File

@ -258,6 +258,9 @@ let
hybrid = callPackage ./garlic/exp/creams/ss+hybrid.nix { };
};
};
hpcg = {
serial = callPackage ./garlic/exp/hpcg/serial.nix { };
};
test = {
@ -275,6 +278,7 @@ let
};
};
};
};
in
{