evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / mv / mvapich / package.nix
blob1299d06d46877ecddfb1918f42396617d39d44fa
1 { lib, stdenv, fetchurl, pkg-config, bison, numactl, libxml2
2 , perl, gfortran, slurm, openssh, hwloc, zlib, makeWrapper
3 # InfiniBand dependencies
4 , opensm, rdma-core
5 # OmniPath dependencies
6 , libpsm2, libfabric
7 # Compile with slurm as a process manager
8 , useSlurm ? false
9 # Network type for MVAPICH2
10 , network ? "ethernet"
11 } :
13 assert builtins.elem network [ "ethernet" "infiniband" "omnipath" ];
15 stdenv.mkDerivation rec {
16   pname = "mvapich";
17   version = "2.3.7";
19   src = fetchurl {
20     url = "http://mvapich.cse.ohio-state.edu/download/mvapich/mv2/mvapich2-${version}.tar.gz";
21     sha256 = "sha256-w5pEkvS+UN9hAHhXSLoolOI85FCpQSgYHVFtpXV3Ua4=";
22   };
24   outputs = [ "out" "doc" "man" ];
26   nativeBuildInputs = [ pkg-config bison makeWrapper gfortran ];
27   propagatedBuildInputs = [ numactl rdma-core zlib opensm ];
28   buildInputs = [
29     numactl
30     libxml2
31     perl
32     openssh
33     hwloc
34   ] ++ lib.optionals (network == "infiniband") [ rdma-core opensm ]
35     ++ lib.optionals (network == "omnipath") [ libpsm2 libfabric ]
36     ++ lib.optional useSlurm slurm;
38   configureFlags = [
39     "--with-pm=hydra"
40     "--enable-fortran=all"
41     "--enable-cxx"
42     "--enable-threads=multiple"
43     "--enable-hybrid"
44     "--enable-shared"
45     "FFLAGS=-fallow-argument-mismatch" # fix build with gfortran 10
46   ] ++ lib.optional useSlurm "--with-pm=slurm"
47     ++ lib.optional (network == "ethernet") "--with-device=ch3:sock"
48     ++ lib.optionals (network == "infiniband") [ "--with-device=ch3:mrail" "--with-rdma=gen2" "--disable-ibv-dlopen" ]
49     ++ lib.optionals (network == "omnipath") ["--with-device=ch3:psm" "--with-psm2=${libpsm2}"];
51   doCheck = true;
53   preFixup = ''
54     # /tmp/nix-build... ends up in the RPATH, fix it manually
55     for entry in $out/bin/mpichversion $out/bin/mpivars; do
56       echo "fix rpath: $entry"
57       patchelf --allowed-rpath-prefixes ${builtins.storeDir} --shrink-rpath $entry
58     done
60     # Ensure the default compilers are the ones mvapich was built with
61     substituteInPlace $out/bin/mpicc --replace 'CC="gcc"' 'CC=${stdenv.cc}/bin/cc'
62     substituteInPlace $out/bin/mpicxx --replace 'CXX="g++"' 'CXX=${stdenv.cc}/bin/c++'
63     substituteInPlace $out/bin/mpifort --replace 'FC="gfortran"' 'FC=${gfortran}/bin/gfortran'
64   '';
66   enableParallelBuilding = true;
68   meta = with lib; {
69     description = "MPI-3.1 implementation optimized for Infiband transport";
70     homepage = "https://mvapich.cse.ohio-state.edu";
71     license = licenses.bsd3;
72     maintainers = [ maintainers.markuskowa ];
73     platforms = platforms.linux;
74   };