bscpkgs/garlic/apps/saiph/default.nix

105 lines
2.5 KiB
Nix
Raw Normal View History

2020-06-30 18:19:36 +08:00
{
stdenv
, nanos6
, mpi
, tampi
2020-09-23 19:10:12 +08:00
, cc
2020-06-30 18:19:36 +08:00
, vtk
, boost
2020-09-21 23:30:24 +08:00
, gitBranch ? "master"
2021-02-23 18:51:07 +08:00
, gitCommit ? null
2021-03-24 16:08:55 +08:00
, enableManualDist ? false
, nbgx ? null
, nbgy ? null
, nbgz ? null
, nblx ? null
, nbly ? null
, nblz ? null
2021-02-19 18:18:11 +08:00
, nsteps ? null
2021-03-24 16:08:55 +08:00
, numComm ? null
, enableVectFlags ? false
, enableDebugFlags ? false
, enableAsanFlags ? false
, cachelineBytes ? null
, L3SizeKB ? null
# Problem size:
, sizex ? 3
, sizey ? 4
, sizez ? 4
2020-06-30 18:19:36 +08:00
}:
assert enableManualDist -> (nbgx != null);
assert enableManualDist -> (nbgy != null);
assert enableManualDist -> (nbgz != null);
with stdenv.lib;
with stdenv.lib.versions;
2020-06-30 18:19:36 +08:00
stdenv.mkDerivation rec {
2020-07-02 20:47:10 +08:00
name = "saiph";
2020-06-30 18:19:36 +08:00
2021-02-23 18:51:07 +08:00
inherit gitBranch gitCommit;
src = builtins.fetchGit ({
2020-12-07 20:47:17 +08:00
url = "ssh://git@bscpm03.bsc.es/DSLs/saiph.git";
2020-11-13 02:10:43 +08:00
ref = "${gitBranch}";
} // (optionalAttrs (gitCommit != null) {
rev = "${gitCommit}";
}));
2020-06-30 18:19:36 +08:00
programPath = "/bin/Heat3D_vect";
2020-06-30 18:19:36 +08:00
2020-09-22 01:23:17 +08:00
enableParallelBuilding = true;
2020-07-02 20:47:10 +08:00
dontStrip = true;
enableDebugging = true;
2020-06-30 18:19:36 +08:00
buildInputs = [
nanos6
mpi
tampi
2020-09-23 19:10:12 +08:00
cc
2020-06-30 18:19:36 +08:00
vtk
boost
];
2020-09-22 01:23:17 +08:00
# Required for nanos6
hardeningDisable = [ "all" ];
2020-09-21 23:30:24 +08:00
preBuild = ''
cd saiphv2/cpp/src
export VTK_VERSION=${majorMinor (getVersion vtk.name)}
2020-07-02 20:47:10 +08:00
export VTK_HOME=${vtk}
2020-11-13 02:10:43 +08:00
make clean
2020-06-30 18:19:36 +08:00
sed -i '/SIZEX =/s/3/${toString sizex}/g' testApp/Heat3D_vect.cpp
sed -i '/SIZEY =/s/4/${toString sizey}/g' testApp/Heat3D_vect.cpp
sed -i '/SIZEZ =/s/4/${toString sizez}/g' testApp/Heat3D_vect.cpp
'';
2021-03-24 16:08:55 +08:00
makeFlags = [
2020-12-04 01:06:51 +08:00
"-f" "Makefile.${cc.CC}"
"apps"
"APP=Heat3D_vect"
] ++ optional (cachelineBytes != null) "ROW_ALIGNMENT=${toString cachelineBytes}"
++ optional (L3SizeKB != null) "L3_SIZE_K=${toString L3SizeKB}"
++ optional (enableManualDist) "DIST_SET=1"
++ optional (enableManualDist) "NBG_X=${toString nbgx}"
++ optional (enableManualDist) "NBG_Y=${toString nbgy}"
++ optional (enableManualDist) "NBG_Z=${toString nbgz}"
++ optional (nblx != null) "NBL_X=${toString nblx}"
++ optional (nbly != null) "NBL_Y=${toString nbly}"
++ optional (nblz != null) "NBL_Z=${toString nblz}"
++ optional (nsteps != null) "NSTEPS=${toString nsteps}"
++ optional (numComm != null) "NUM_COMM=${toString numComm}"
++ optional (enableVectFlags) "VECT_CHECKS=1"
++ optional (enableDebugFlags) "DEBUG_CHECKS=1"
++ optional (enableAsanFlags) "SANITIZE_CHECKS=1"
;
2020-06-30 18:19:36 +08:00
installPhase = ''
2020-07-02 20:47:10 +08:00
mkdir -p $out/lib
2020-06-30 18:19:36 +08:00
mkdir -p $out/bin
2020-07-02 20:47:10 +08:00
cp obj/libsaiphv2.so $out/lib/
cp bin/Heat3D_vect $out/bin/
2020-06-30 18:19:36 +08:00
'';
}