bscpkgs/garlic/apps/fwi/default.nix

60 lines
1.3 KiB
Nix
Raw Normal View History

2020-07-20 18:58:54 +08:00
{
stdenv
, nanos6
, mpi
, tampi
, mcxx
, icc
}:
stdenv.mkDerivation rec {
2020-12-04 18:17:15 +08:00
name = "fwi";
variant = "oss+task";
2020-07-20 18:58:54 +08:00
src = builtins.fetchGit {
url = "https://gitlab.com/srodrb/BSC-FWI.git";
2020-12-04 18:17:15 +08:00
ref = "${variant}";
2020-07-20 18:58:54 +08:00
};
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.
2020-12-04 18:17:15 +08:00
preConfigure = ''
export DEFINES=-D_GNU_SOURCE
2020-12-04 18:17:15 +08:00
export NANOS6_CONFIG_OVERRIDE=version.debug=true
'';
# We compile the ModelGenerator using gcc *only*, as otherwise it will
# be compiled with nanos6, which requires access to /sys to determine
# hardware capabilities. So it will fail in the nix-build environment,
# as there is no /sys mounted.
preBuild = ''
make COMPILER=GNU ModelGenerator
'';
makeFlags = [
"NZF=108"
"NXF=108"
"NYF=208"
"PRECISION=float"
];
2020-07-20 18:58:54 +08:00
installPhase = ''
mkdir -p $out/bin
2020-12-04 18:17:15 +08:00
cp fwi $out/bin
2020-07-20 18:58:54 +08:00
cp ModelGenerator $out/bin
'';
}