depot/third_party/nixpkgs/doc/hooks/mpi-check-hook.section.md
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

412 B

mpiCheckPhaseHook

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:

  { mpiCheckPhaseHook, mpi, ... }:

  ...

  nativeCheckInputs = [
    openssh
    mpiCheckPhaseHook
  ];