bscpkgs/garlic/apps/fwi/default.nix

53 lines
984 B
Nix
Raw Normal View History

2020-07-20 18:58:54 +08:00
{
stdenv
, nanos6
, mpi
, tampi
, mcxx
, icc
}:
stdenv.mkDerivation rec {
name = "nbody";
variant = "4_MPI_ompss";
2020-07-20 18:58:54 +08:00
src = builtins.fetchGit {
url = "https://gitlab.com/srodrb/BSC-FWI.git";
ref = "ompss-mpi-nocache";
2020-07-20 18:58:54 +08:00
};
postUnpack = "sourceRoot=$sourceRoot/${variant}";
enableParallelBuilding = true;
2020-07-20 18:58:54 +08:00
buildInputs = [
nanos6
mpi
icc
tampi
mcxx
];
# FIXME: This is an ugly hack.
# When using _GNU_SOURCE or any other definition used in features.h, we need
# to define them before mcc includes nanos6.h from the command line. So the
# only chance is by setting it at the command line with -D. Using the DEFINES
# below, reaches the command line of the preprocessing stage with gcc.
preBuild = ''
export DEFINES=-D_GNU_SOURCE
'';
makeFlags = [
"NZF=108"
"NXF=108"
"NYF=208"
"PRECISION=float"
];
2020-07-20 18:58:54 +08:00
installPhase = ''
mkdir -p $out/bin
cp fwi.* $out/bin
cp ModelGenerator $out/bin
'';
}