1
1

Standardize on LAM_ENABLE_MPI_PROFILING

This commit was SVN r694.
Этот коммит содержится в:
Jeff Squyres 2004-02-10 19:34:58 +00:00
родитель 0140eb755e
Коммит 03fe5c9ca7
2 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -131,7 +131,7 @@ else
AC_MSG_RESULT([no])
WANT_MPI_PROFILE=0
fi
AC_DEFINE_UNQUOTED(WANT_MPI_PROFILING, $WANT_MPI_PROFILE,
AC_DEFINE_UNQUOTED(LAM_ENABLE_MPI_PROFILING, $WANT_MPI_PROFILE,
[Do we want MPI profiling or not?])

Просмотреть файл

@ -275,11 +275,11 @@ void laminfo::do_config(bool want_all)
const string impi(LAM_WANT_IMPI ? "yes" : "no");
#endif
const string debug(LAM_ENABLE_DEBUG ? "yes" : "no");
const string cprofiling(LAM_WANT_MPI_PROFILING ? "yes" : "no");
const string cxxprofiling(LAM_WANT_MPI_PROFILING ? "yes" : "no");
const string f77profiling((LAM_WANT_MPI_PROFILING && LAM_ENABLE_MPI_F77) ?
const string cprofiling(LAM_ENABLE_MPI_PROFILING ? "yes" : "no");
const string cxxprofiling(LAM_ENABLE_MPI_PROFILING ? "yes" : "no");
const string f77profiling((LAM_ENABLE_MPI_PROFILING && LAM_ENABLE_MPI_F77) ?
"yes" : "no");
const string f90profiling((LAM_WANT_MPI_PROFILING && LAM_ENABLE_MPI_F90) ?
const string f90profiling((LAM_ENABLE_MPI_PROFILING && LAM_ENABLE_MPI_F90) ?
"yes" : "no");
const string cxxexceptions(LAM_HAVE_CXX_EXCEPTION_SUPPORT ? "yes" : "no");