bscpkgs/garlic/apps/fwi/default.nix

70 lines
1.6 KiB
Nix
Raw Normal View History

2020-07-20 18:58:54 +08:00
{
stdenv
2020-10-30 22:21:23 +08:00
, mpi ? null
, tampi ? null
, mcxx ? null
, cc
, gitBranch ? "garlic/tampi+send+oss+task"
, fwiParams
2020-07-20 18:58:54 +08:00
}:
2020-10-30 22:21:23 +08:00
with stdenv.lib;
assert !(tampi != null && mcxx == null);
2020-07-20 18:58:54 +08:00
stdenv.mkDerivation rec {
inherit gitBranch;
2020-12-04 18:17:15 +08:00
name = "fwi";
2020-07-20 18:58:54 +08:00
src = builtins.fetchGit {
2021-03-05 00:51:47 +08:00
url = "ssh://git@bscpm03.bsc.es/garlic/apps/fwi.git";
2020-10-30 22:21:23 +08:00
ref = "${gitBranch}";
2020-07-20 18:58:54 +08:00
};
enableParallelBuilding = false;
2020-07-20 18:58:54 +08:00
buildInputs = [
2020-10-30 22:21:23 +08:00
cc
]
++ optional (mpi != null) mpi
2020-10-30 22:21:23 +08:00
++ optional (tampi != null) tampi
++ optional (mcxx != null) mcxx;
# FIXME: Correct this on the Makefile so we can just type "make fwi"
# FIXME: Allow multiple MPI implementations
postPatch = ''
sed -i 's/= OPENMPI$/= INTEL/g' Makefile
sed -i 's/USE_O_DIRECT ?= NO/USE_O_DIRECT ?= YES/g' Makefile || true
'';
2020-07-20 18:58:54 +08:00
# 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
make depend
cp ${fwiParams}/generated_model_params.h src/
2020-12-04 18:17:15 +08:00
'';
# 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.
makeFlags = [
#"COMPILER=GNU"
#"CC=${cc.cc.CC}"
"fwi"
];
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
'';
2020-10-30 22:21:23 +08:00
programPath = "/bin/fwi";
2020-07-20 18:58:54 +08:00
}