MPI data plane #4496
Labels
api: C
C API related
area: build
Build issues
sustainability
Related to sustainability effort
triage: low
This issue is a nice-to-have if we can get to it but isn't holding anybody up.
The way we're handling the MPI data plane currently is restrictive. The dataplane is not built if MPICH is not detected, and if you manage to force it to build, there is an
#if defined(MPICH)
in mpi_dp.c that automatically disables it.Instead, we should always build the MPI data plane if MPI_open_port() is present in the in-use MPI library. If we're not confident that the MPI in use supports connecting disparate jobs, we should modify the value returned in MpiGetPriority() to something that would fall behind other DPs. This would allow users to try their MPI to see if it works without requiring source code changes.
The text was updated successfully, but these errors were encountered: