nixpkgs/doc/hooks/mpi-check-hook.section.md
Peder Bergebakken Sundt 470614b671 treewide: Fix typos
2023-09-28 19:06:13 +02:00

25 lines
412 B
Markdown

# mpiCheckPhaseHook {#setup-hook-mpi-check}
This hook can be used to setup a check phase that
requires running a MPI application. It detects the
used present MPI implementation type and exports
the neceesary environment variables to use
`mpirun` and `mpiexec` in a Nix sandbox.
Example:
```nix
{ mpiCheckPhaseHook, mpi, ... }:
...
nativeCheckInputs = [
openssh
mpiCheckPhaseHook
];
```