53 lines
984 B
Nix
53 lines
984 B
Nix
{
|
|
stdenv
|
|
, nanos6
|
|
, mpi
|
|
, tampi
|
|
, mcxx
|
|
, icc
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "nbody";
|
|
variant = "4_MPI_ompss";
|
|
|
|
src = builtins.fetchGit {
|
|
url = "https://gitlab.com/srodrb/BSC-FWI.git";
|
|
ref = "ompss-mpi-nocache";
|
|
};
|
|
|
|
postUnpack = "sourceRoot=$sourceRoot/${variant}";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
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"
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp fwi.* $out/bin
|
|
cp ModelGenerator $out/bin
|
|
'';
|
|
}
|