2004-01-09 11:28:38 +03:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-01-09 11:28:38 +03:00
|
|
|
|
2004-01-15 09:11:45 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2004-01-09 11:28:38 +03:00
|
|
|
#include "mpi.h"
|
2004-06-23 05:32:03 +04:00
|
|
|
#include "include/constants.h"
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "mpi/c/bindings.h"
|
|
|
|
#include "runtime/runtime.h"
|
2004-06-23 05:32:03 +04:00
|
|
|
#include "errhandler/errhandler.h"
|
|
|
|
#include "communicator/communicator.h"
|
2004-01-09 11:28:38 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
2004-01-15 08:24:14 +03:00
|
|
|
#pragma weak MPI_Init = PMPI_Init
|
2004-01-09 11:28:38 +03:00
|
|
|
#endif
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#if OMPI_PROFILING_DEFINES
|
2004-04-20 22:50:43 +04:00
|
|
|
#include "mpi/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
2004-07-30 06:58:53 +04:00
|
|
|
static const char FUNC_NAME[] = "MPI_Init";
|
2004-06-23 05:32:03 +04:00
|
|
|
|
2004-01-09 11:28:38 +03:00
|
|
|
|
2004-01-15 09:11:45 +03:00
|
|
|
int MPI_Init(int *argc, char ***argv)
|
2004-01-09 11:28:38 +03:00
|
|
|
{
|
2004-06-23 05:32:03 +04:00
|
|
|
int err;
|
2004-01-15 09:11:45 +03:00
|
|
|
int provided;
|
|
|
|
char *env;
|
2004-06-23 05:32:03 +04:00
|
|
|
int required = MPI_THREAD_SINGLE;
|
|
|
|
MPI_Comm null = NULL;
|
2004-01-15 09:11:45 +03:00
|
|
|
|
2004-07-30 06:58:53 +04:00
|
|
|
/* Ensure that we were not already initialized or finalized */
|
|
|
|
|
|
|
|
if (ompi_mpi_finalized) {
|
|
|
|
/* JMS show_help */
|
|
|
|
return OMPI_ERRHANDLER_INVOKE(null, MPI_ERR_OTHER, FUNC_NAME);
|
|
|
|
} else if (ompi_mpi_initialized) {
|
|
|
|
/* JMS show_help */
|
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_OTHER, FUNC_NAME);
|
|
|
|
}
|
|
|
|
|
2004-06-23 05:32:03 +04:00
|
|
|
/* check for environment overrides for required thread level. If
|
2004-01-15 09:11:45 +03:00
|
|
|
there is, check to see that it is a valid/supported thread level.
|
|
|
|
If not, default to MPI_THREAD_SINGLE. */
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
if (NULL != (env = getenv("OMPI_MPI_THREAD_LEVEL"))) {
|
2004-06-23 05:32:03 +04:00
|
|
|
required = atoi(env);
|
|
|
|
if (required < MPI_THREAD_SINGLE || required > MPI_THREAD_MULTIPLE) {
|
|
|
|
/* JMS show_help */
|
2004-07-30 06:58:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE(null, err, FUNC_NAME);
|
2004-01-15 09:11:45 +03:00
|
|
|
}
|
|
|
|
}
|
2004-06-08 19:20:16 +04:00
|
|
|
|
2004-01-15 09:11:45 +03:00
|
|
|
/* Call the back-end initialization function (we need to put as
|
|
|
|
little in this function as possible so that if it's profiled, we
|
|
|
|
don't lose anything) */
|
|
|
|
|
2004-08-28 20:30:29 +04:00
|
|
|
if (NULL != argc && NULL != argv) {
|
|
|
|
err = ompi_mpi_init(*argc, *argv, required, &provided);
|
|
|
|
} else {
|
2004-08-29 13:06:49 +04:00
|
|
|
err = ompi_mpi_init(0, NULL, required, &provided);
|
2004-08-28 20:30:29 +04:00
|
|
|
}
|
2004-06-23 05:32:03 +04:00
|
|
|
OMPI_ERRHANDLER_RETURN(err, null, err, FUNC_NAME);
|
2004-01-09 11:28:38 +03:00
|
|
|
}
|