Skip to content

Commit a8783cf

Browse files
committed
Enable MPI-2 should be included in MPI-3 and above.
1 parent a4c4f80 commit a8783cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2003-2009 High Performance Computing Center Stuttgart,
1+
Copyright (c) 2003-2017 High Performance Computing Center Stuttgart,
22
University of Stuttgart. All rights reserved.
33
Copyright (c) 2005-2009 The University of Tennessee and The University
44
of Tennessee Research Foundation. All rights

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ LIBS=${old_LIBS}
309309
AC_CHECK_MPI_VERSION
310310

311311
if test "x$ENABLE_MPI2" = "xyes" ; then
312-
if test "x$ac_cv_mpi_major_version" != "x2" ; then
312+
if test "$ac_cv_mpi_major_version" -lt 2 ; then
313313
AC_MSG_ERROR([MPI Version does not seem to be supporting MPI2 features (maybe version check went wrong -- see config.log for details)...])
314314
fi
315315
AC_DEFINE(HAVE_MPI2, 1, [Define if MPI library supports MPI2])

0 commit comments

Comments
 (0)