Skip to content

Commit 09a8b41

Browse files
committed
Remove warning message about MPI version.
- PMPI wrappers now work with MPI-2 and MPI-3 standards. Change-Id: Ia541324aa5c1fc3d13d3398a3717780e4fbdcdc3 Signed-off-by: Christopher M. Cantalupo <[email protected]>
1 parent ffd1669 commit 09a8b41

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/geopm_pmpi.c

-7
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,7 @@ static inline void geopm_mpi_region_exit(void)
105105
static int geopm_pmpi_init(const char *exec_name)
106106
{
107107
int rank;
108-
int mpi_version;
109-
int mpi_subversion;
110108
PMPI_Comm_rank(MPI_COMM_WORLD, &rank);
111-
PMPI_Get_version(&mpi_version, &mpi_subversion);
112-
if (mpi_version != 3 && mpi_subversion != 0 && !rank) {
113-
fprintf(stderr, "WARNING: GEOPM PMPI wrappers designed for MPI verison 3.0\n"
114-
" applciation compiled using version %i.%i.\n\n", mpi_version, mpi_subversion);
115-
}
116109

117110
#ifdef GEOPM_DEBUG
118111
/// @todo use geopm_env_* interface

0 commit comments

Comments
 (0)