2004-01-09 11:28:38 +03:00
|
|
|
/*
|
2007-03-17 02:11:45 +03:00
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
2005-11-05 22:57:48 +03:00
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2006-12-14 22:58:04 +03:00
|
|
|
* Copyright (c) 2004-2006 High Performance Computing Center Stuttgart,
|
2004-11-28 23:09:25 +03:00
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2007-11-03 05:40:22 +03:00
|
|
|
* Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
|
2008-05-01 19:06:10 +04:00
|
|
|
* Copyright (c) 2007-2008 Sun Microsystems, Inc. All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
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>
|
|
|
|
|
2008-06-09 18:53:58 +04:00
|
|
|
#include "orte/util/show_help.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/mpi/c/bindings.h"
|
2009-04-29 05:32:14 +04:00
|
|
|
#include "ompi/communicator/communicator.h"
|
|
|
|
#include "ompi/errhandler/errhandler.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/constants.h"
|
2004-01-09 11:28:38 +03:00
|
|
|
|
2009-05-07 00:11:28 +04:00
|
|
|
#if OPAL_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
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/mpi/c/profile/defines.h"
|
2004-04-20 22:50:43 +04:00
|
|
|
#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
|
|
|
{
|
2009-01-02 15:55:17 +03:00
|
|
|
int err;
|
|
|
|
int provided;
|
|
|
|
char *env;
|
|
|
|
int required = MPI_THREAD_SINGLE;
|
|
|
|
|
|
|
|
/* Ensure that we were not already initialized or finalized */
|
|
|
|
|
|
|
|
if (ompi_mpi_finalized) {
|
|
|
|
if (0 == ompi_comm_rank(MPI_COMM_WORLD)) {
|
|
|
|
orte_show_help("help-mpi-api.txt",
|
|
|
|
"mpi-function-after-finalize", true, FUNC_NAME);
|
|
|
|
}
|
|
|
|
return ompi_errhandler_invoke(NULL, NULL,
|
|
|
|
OMPI_ERRHANDLER_TYPE_COMM,
|
|
|
|
MPI_ERR_OTHER, FUNC_NAME);
|
|
|
|
} else if (ompi_mpi_initialized) {
|
|
|
|
if (0 == ompi_comm_rank(MPI_COMM_WORLD)) {
|
|
|
|
orte_show_help("help-mpi-api.txt", "mpi-initialize-twice",
|
|
|
|
true, FUNC_NAME);
|
|
|
|
}
|
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_OTHER,
|
|
|
|
FUNC_NAME);
|
2004-01-15 09:11:45 +03:00
|
|
|
}
|
2004-06-08 19:20:16 +04:00
|
|
|
|
2009-01-02 15:55:17 +03:00
|
|
|
/* check for environment overrides for required thread level. If
|
|
|
|
there is, check to see that it is a valid/supported thread level.
|
|
|
|
If not, default to MPI_THREAD_MULTIPLE. */
|
2004-01-15 09:11:45 +03:00
|
|
|
|
2009-01-02 15:55:17 +03:00
|
|
|
if (NULL != (env = getenv("OMPI_MPI_THREAD_LEVEL"))) {
|
|
|
|
required = atoi(env);
|
|
|
|
if (required < MPI_THREAD_SINGLE || required > MPI_THREAD_MULTIPLE) {
|
|
|
|
required = MPI_THREAD_MULTIPLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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-09-16 00:55:29 +04:00
|
|
|
|
2009-01-02 15:55:17 +03:00
|
|
|
if (NULL != argc && NULL != argv) {
|
|
|
|
err = ompi_mpi_init(*argc, *argv, required, &provided);
|
|
|
|
} else {
|
|
|
|
err = ompi_mpi_init(0, NULL, required, &provided);
|
|
|
|
}
|
2004-09-16 00:55:29 +04:00
|
|
|
|
2009-01-02 15:55:17 +03:00
|
|
|
/* Since we don't have a communicator to invoke an errorhandler on
|
|
|
|
here, don't use the fancy-schmancy ERRHANDLER macros; they're
|
|
|
|
really designed for real communicator objects. Just use the
|
|
|
|
back-end function directly. */
|
|
|
|
|
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return ompi_errhandler_invoke(NULL, NULL,
|
|
|
|
OMPI_ERRHANDLER_TYPE_COMM,
|
|
|
|
err <
|
|
|
|
0 ? ompi_errcode_get_mpi_code(err) :
|
|
|
|
err, FUNC_NAME);
|
|
|
|
}
|
2007-10-09 00:53:02 +04:00
|
|
|
|
2009-01-02 15:55:17 +03:00
|
|
|
OPAL_CR_INIT_LIBRARY();
|
2007-10-09 00:53:02 +04:00
|
|
|
|
2009-01-02 15:55:17 +03:00
|
|
|
return MPI_SUCCESS;
|
2004-01-09 11:28:38 +03:00
|
|
|
}
|