You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Several errors are issued concerning wrong function prototypes. This is because OpenMPI added const to some parameters in newer versions, but it is not obvious for the end user (Guilherme had this issue trying to install it on some machine with an OpenMPI version different from Debian's 1.6.5). Perhaps adding version checking to CMakeLists would be sufficient? I'm not sure how to do that. Alternatively, I patched Akypuera to OpenMPI 1.10.2 in a branch of my fork (not all MPI routines are implemented).
The text was updated successfully, but these errors were encountered:
I tried using FIND_PACKAGE(MPI 1.6.5 EXACT REQUIRED) instead of FIND_PACKAGE(MPI REQUIRED) (see find_package documentation), but it does not seem to work.
Several errors are issued concerning wrong function prototypes. This is because OpenMPI added
const
to some parameters in newer versions, but it is not obvious for the end user (Guilherme had this issue trying to install it on some machine with an OpenMPI version different from Debian's 1.6.5). Perhaps adding version checking to CMakeLists would be sufficient? I'm not sure how to do that. Alternatively, I patched Akypuera to OpenMPI 1.10.2 in a branch of my fork (not all MPI routines are implemented).The text was updated successfully, but these errors were encountered: