SLURM Headnode nompi #107
-
It seems it's required to install openmpi and I get the error output when running cmake. -- Could NOT find MPI_Fortran (missing: MPI_Fortran_LIB_NAMES MPI_Fortran_F77_HEADER_DIR MPI_Fortran_MODULE_DIR MPI_Fortran_WORKS) -- Configuring incomplete, errors occurred! Typically we install the software onto our head node and then pass it to the cluster which does have openmpi. Is there anyway for me to call a parameter or alter the cmake to allow the install to complete without openmpi's installation? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@jwarners772 : The errors indicate that CMake cannot find MPI Fortran. Usually, using OpenMPI, it is looking for the In any event, this is a server configuration / CMake issue. |
Beta Was this translation helpful? Give feedback.
@jwarners772 : The errors indicate that CMake cannot find MPI Fortran. Usually, using OpenMPI, it is looking for the
mpif90
binary. If you know this to exist and know where it is located, you can manually set this using CMake options.In any event, this is a server configuration / CMake issue.