jql: 7.0.6 -> 7.0.7
[NixPkgs.git] / doc / hooks / mpi-check-hook.section.md
blob586ee2cc7c2dcc8a9ce80b93463bd373287a398c
1 #  mpiCheckPhaseHook {#setup-hook-mpi-check}
4 This hook can be used to setup a check phase that
5 requires running a MPI application. It detects the
6 used present MPI implementation type and exports
7 the neceesary environment variables to use
8 `mpirun` and `mpiexec` in a Nix sandbox.
11 Example:
13 ```nix
14   { mpiCheckPhaseHook, mpi, ... }:
16   ...
18   nativeCheckInputs = [
19     openssh
20     mpiCheckPhaseHook
21   ];
22 ```