forked from rarias/bscpkgs
hpcg: add first granularity/scalability exps for tampi+isend+oss+task
- oss.nix runs valid hpcg layouts whereas slices.nix does not
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
{
|
||||
stdenv
|
||||
, cc
|
||||
, nanos6 ? null
|
||||
, mcxx ? null
|
||||
, mpi ? null
|
||||
, nanos6
|
||||
, mcxx
|
||||
, mpi
|
||||
, tampi
|
||||
, gitBranch
|
||||
}:
|
||||
|
||||
with stdenv.lib;
|
||||
stdenv.mkDerivation rec {
|
||||
name = "hpcg";
|
||||
|
||||
@@ -16,16 +16,13 @@ stdenv.mkDerivation rec {
|
||||
ref = "${gitBranch}";
|
||||
};
|
||||
|
||||
prePatch = ''
|
||||
#export NIX_DEBUG=6
|
||||
'';
|
||||
# prePatch = ''
|
||||
# #export NIX_DEBUG=6
|
||||
# '';
|
||||
|
||||
buildInputs = [
|
||||
cc
|
||||
]
|
||||
++ optional (mcxx != null) mcxx
|
||||
++ optional (nanos6 != null) nanos6
|
||||
++ optional (mpi != null) mpi;
|
||||
cc nanos6 mcxx mpi tampi
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
"CC=${cc.CC}"
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
};
|
||||
|
||||
hpcg = callPackage ./hpcg/default.nix {
|
||||
gitBranch = "garlic/oss";
|
||||
gitBranch = "garlic/tampi+isend+oss+task";
|
||||
};
|
||||
|
||||
bigsort = {
|
||||
|
||||
Reference in New Issue
Block a user