dbcsr: use mpiCheckPhaseHook

This commit is contained in:
Markus Kowalewski 2023-08-02 23:15:05 +02:00
parent 4e1e4b6f3e
commit ac48985e0d

View file

@ -2,6 +2,7 @@
, lib
, fetchFromGitHub
, cmake
, mpiCheckPhaseHook
, pkg-config
, fypp
, gfortran
@ -64,13 +65,12 @@ stdenv.mkDerivation rec {
"-DUSE_MPI=ON"
];
checkInputs = [ openssh ];
checkInputs = [
openssh
mpiCheckPhaseHook
];
doCheck = true;
preCheck = ''
export HYDRA_IFACE=lo # Fix to make mpich run in a sandbox
export OMPI_MCA_rmaps_base_oversubscribe=1
'';
meta = with lib; {
description = "Distributed Block Compressed Sparse Row matrix library";