[cmake][mpi] Use correct guard MPI
The dune CMake configuration actually needs MPI_C_FOUND
to be true. If this is true HAVE_MPI
is set (see https://gitlab.dune-project.org/core/dune-common/-/blob/master/cmake/modules/DuneMPI.cmake#L33). This variable is suggested to be used as a replacement for MPI_FOUND
in this MR.
According to the CMake 3.1 doc MPI_FOUND
is actually discouraged and only set for backwards-compatibility with older versions (https://cmake.org/cmake/help/v3.1/module/FindMPI.html). It is reintroduced in newer versions of CMake but is then only true if MPI has been found for all requested languages (whatever "requested languages" means..). Which is also not what we want. Dune seems to only require that MPI_C_FOUND
is set (i.e. the MPI C interface is found).
Merge request reports
Activity
HAVE_MPI
is a DUNEism and should name C preprocessor macros. TheHAVE_
variables exist because they make it easier to generate theconfig.h
. Personally, I wouldn't use it inside CMake code. You are right that usingMPI_FOUND
is discouraged, but back then Markus and myself agreed on sticking to it, as it prevents using people from mistakenly usingMPI_CXX_FOUND
.
This old decision can be reconsidered. I just see no new argument.We had a case were it seems like
MPI_FOUND
is true butMPI_C_FOUND
is false. This leads to tests not being guarded, Dune is configured without MPI but the tests are still executed withmpiexec
.Arguably that might be some broken local configuration. On the other hand, we use an outdated and apparently possibly wrong variable
MPI_FOUND
although in the CMake script we actually explicitly check forMPI_C_FOUND
.Also in newer CMake versions
MPI_FOUND
has been reintroduced with the behaviour that I mentioned above (from the CMake doc 3.17:MPI_FOUND
"Variable indicating that MPI settings for all requested languages have been found. If no components are specified, this is true if MPI settings for all enabled languages were detected.") . That means ifMPI_C_FOUND
is true butMPI_CXX_FOUND
is false, the guarded tests will not be executed although they should be.Seems inconsistent to me.
A third point:
HAVE_MPI
is a preprocessor macro and set toENABLE_MPI
by the CMake code. But there is also a CMake variableHAVE_MPI
(set ifMPI_C_FOUND
) which seems to have nothing to do with the preprocessor variable. Maybe that should be removed then to not make it possible to use it in this context?Edited by Timo Kochdune-istl uses both
HAVE_MPI
andMPI_FOUND
asCMAKE_GUARD
in https://gitlab.dune-project.org/core/dune-istl/-/blob/master/dune/istl/test/CMakeLists.txt. It at least doesn't seem to be clear to everyone, which one is the better option...Edited by Timo KochI agree on your last point. Mixing
HAVE_MPI
andMPI_FOUND
inside of cmake is irritating and makes a transition to a new cmake build system more complicated. Multiple variables representing the same condition and both have to be set consistently is error-prone and might lead to hard-to-detect errors.We have to decide how we want to do the tests and cmake guards for MPI in the future. The options are
- Always use
MPI_FOUND
- Use
MPI_FOUND
inside of cmake and introduceHAVE_MPI
forconfig.h
file generation - Use
MPI_C_FOUND
inside of cmake. IfMPI_FOUND
=>MPI_C_FOUND
. - Switch to
MPI_CXX_FOUND
. This does not mean the MPI C++ API (removed in MPI-3), but refers to the MPI C API being usable from C++ - Instead of any
xxx_FOUND
variable, test for existence of the mpi target, i.e.TARGET MPI::MPI_C
orTARGET MPI::MPI_CXX
Edited by Simon Praetorius- Always use
mentioned in issue #211 (closed)
After thinking about this again, I would now agree to use
HAVE_MPI
forCMAKE_GUARDS
. It is a cmake variable that is always set whenever MPI is found in whatever way it is found. If we decide in the future to change to the CXX target and getMPI_CXX_FOUND
this would also setHAVE_MPI=1
and thus nothing else need to be changed. Thus, we control by this variable when we consider MPI to be found and which variant we require.
added 510 commits
-
7f2e9621...a85c317c - 509 commits from branch
master
- b918491e - [cmake][mpi] Use correct guard MPI
-
7f2e9621...a85c317c - 509 commits from branch
mentioned in commit cafb9235
mentioned in merge request !1054 (merged)
mentioned in merge request dune-grid!561 (merged)