Merge bscpkgs into jungle #189

Manually merged
rarias merged 1013 commits from merge-bscpkgs into master 2025-10-07 16:12:34 +02:00
Showing only changes of commit bff0395872 - Show all commits

View File

@@ -126,8 +126,16 @@ let
psmpi = callPackage ./bsc/parastation/psmpi.nix { };
# MPICH
mpich = callPackage ./bsc/mpich/default.nix { };
mpichDebug = bsc.mpich.override { enableDebug = true; };
#mpich_3 = callPackage ./bsc/mpich/default.nix { };
#mpichDebug_3 = bsc.mpich.override { enableDebug = true; };
mpich = super.mpich.overrideAttrs (old: {
buildInputs = old.buildInputs ++ [ self.libfabric ];
configureFlags = old.configureFlags ++ [
"--with-device=ch4:ofi"
"--with-libfabric=${self.libfabric}"
];
hardeningDisable = [ "all" ];
});
# Default Intel MPI version is 2019 (the last one)
impi = bsc.intelMpi;