2004-01-09 08:28:38 +00:00
|
|
|
/*
|
2007-03-16 23:11:45 +00:00
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
2005-11-05 19:57:48 +00: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.
|
2015-06-23 20:59:57 -07:00
|
|
|
* Copyright (c) 2004-2006 High Performance Computing Center Stuttgart,
|
2004-11-28 20:09:25 +00:00
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2015-10-11 07:31:47 -05:00
|
|
|
* Copyright (c) 2007-2015 Cisco Systems, Inc. All rights reserved.
|
2008-05-01 15:06:10 +00:00
|
|
|
* Copyright (c) 2007-2008 Sun Microsystems, Inc. All rights reserved.
|
2015-09-09 16:30:26 +09:00
|
|
|
* Copyright (c) 2015 Research Organization for Information Science
|
|
|
|
* and Technology (RIST). All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
* $COPYRIGHT$
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2004-11-22 01:38:40 +00:00
|
|
|
* Additional copyrights may follow
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2004-01-09 08:28:38 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
#include "ompi_config.h"
|
2004-01-09 08:28:38 +00:00
|
|
|
|
2004-01-15 06:11:45 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2013-02-12 21:10:11 +00:00
|
|
|
#include "opal/util/show_help.h"
|
2006-02-12 01:33:29 +00:00
|
|
|
#include "ompi/mpi/c/bindings.h"
|
2009-04-29 01:32:14 +00:00
|
|
|
#include "ompi/communicator/communicator.h"
|
|
|
|
#include "ompi/errhandler/errhandler.h"
|
2006-02-12 01:33:29 +00:00
|
|
|
#include "ompi/constants.h"
|
2004-01-09 08:28:38 +00:00
|
|
|
|
2015-08-31 09:36:02 +09:00
|
|
|
#if OMPI_BUILD_MPI_PROFILING
|
|
|
|
#if OPAL_HAVE_WEAK_SYMBOLS
|
2004-01-15 05:24:14 +00:00
|
|
|
#pragma weak MPI_Init = PMPI_Init
|
2004-01-09 08:28:38 +00:00
|
|
|
#endif
|
2015-09-09 16:30:26 +09:00
|
|
|
#define MPI_Init PMPI_Init
|
2004-04-20 18:50:43 +00:00
|
|
|
#endif
|
|
|
|
|
2004-07-30 02:58:53 +00:00
|
|
|
static const char FUNC_NAME[] = "MPI_Init";
|
2004-06-23 01:32:03 +00:00
|
|
|
|
2004-01-09 08:28:38 +00:00
|
|
|
|
2004-01-15 06:11:45 +00:00
|
|
|
int MPI_Init(int *argc, char ***argv)
|
2004-01-09 08:28:38 +00:00
|
|
|
{
|
2009-01-02 12:55:17 +00:00
|
|
|
int err;
|
|
|
|
int provided;
|
|
|
|
char *env;
|
|
|
|
int required = MPI_THREAD_SINGLE;
|
|
|
|
|
|
|
|
/* 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 06:11:45 +00:00
|
|
|
|
2009-01-02 12:55:17 +00: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-15 20:55:29 +00:00
|
|
|
|
2009-01-02 12:55:17 +00: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-15 20:55:29 +00:00
|
|
|
|
2009-01-02 12:55:17 +00: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-08 20:53:02 +00:00
|
|
|
|
2009-01-02 12:55:17 +00:00
|
|
|
OPAL_CR_INIT_LIBRARY();
|
2007-10-08 20:53:02 +00:00
|
|
|
|
2009-01-02 12:55:17 +00:00
|
|
|
return MPI_SUCCESS;
|
2004-01-09 08:28:38 +00:00
|
|
|
}
|