2004-01-26 01:07:54 +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.
|
2012-06-27 05:28:28 +04:00
|
|
|
* Copyright (c) 2010 Oak Ridge National Labs. All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-01-26 01:07:54 +03:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-01-26 01:07:54 +03:00
|
|
|
|
2013-02-13 01:10:11 +04:00
|
|
|
#include "opal/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/runtime/params.h"
|
|
|
|
#include "ompi/communicator/communicator.h"
|
|
|
|
#include "ompi/errhandler/errhandler.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/constants.h"
|
2004-01-26 01:07:54 +03:00
|
|
|
|
2009-05-07 00:11:28 +04:00
|
|
|
#if OPAL_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
2004-01-26 01:07:54 +03:00
|
|
|
#pragma weak MPI_Init_thread = PMPI_Init_thread
|
|
|
|
#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_thread";
|
2004-06-23 05:32:03 +04:00
|
|
|
|
|
|
|
|
2004-01-26 01:07:54 +03:00
|
|
|
int MPI_Init_thread(int *argc, char ***argv, int required,
|
2004-06-23 05:32:03 +04:00
|
|
|
int *provided)
|
|
|
|
{
|
2005-09-15 19:44:12 +04:00
|
|
|
int err;
|
|
|
|
|
2007-01-30 00:56:15 +03:00
|
|
|
if ( MPI_PARAM_CHECK ) {
|
|
|
|
if (required < MPI_THREAD_SINGLE || required > MPI_THREAD_MULTIPLE) {
|
|
|
|
ompi_mpi_errors_are_fatal_comm_handler(NULL, NULL, FUNC_NAME);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-15 19:44:12 +04:00
|
|
|
/*
|
|
|
|
* A thread compliant MPI implementation will be able to return provided
|
|
|
|
* = MPI_THREAD_MULTIPLE. Such an implementation may always return provided
|
|
|
|
* = MPI_THREAD_MULTIPLE, irrespective of the value of required.
|
|
|
|
*/
|
2010-03-17 02:10:50 +03:00
|
|
|
#if OMPI_ENABLE_THREAD_MULTIPLE
|
2005-09-15 19:44:12 +04:00
|
|
|
*provided = MPI_THREAD_MULTIPLE;
|
|
|
|
#else
|
|
|
|
*provided = MPI_THREAD_SINGLE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Ensure that we were not already initialized or finalized */
|
|
|
|
|
|
|
|
if (ompi_mpi_finalized) {
|
2006-12-14 22:58:04 +03:00
|
|
|
if (0 == ompi_comm_rank(MPI_COMM_WORLD)) {
|
2013-02-13 01:10:11 +04:00
|
|
|
opal_show_help("help-mpi-api.txt", "mpi-function-after-finalize",
|
2006-12-14 22:58:04 +03:00
|
|
|
true, FUNC_NAME);
|
|
|
|
}
|
2006-09-26 19:56:51 +04:00
|
|
|
return ompi_errhandler_invoke(NULL, NULL, OMPI_ERRHANDLER_TYPE_COMM,
|
|
|
|
MPI_ERR_OTHER, FUNC_NAME);
|
2005-09-15 19:44:12 +04:00
|
|
|
} else if (ompi_mpi_initialized) {
|
2006-12-14 22:58:04 +03:00
|
|
|
if (0 == ompi_comm_rank(MPI_COMM_WORLD)) {
|
2013-02-13 01:10:11 +04:00
|
|
|
opal_show_help("help-mpi-api.txt", "mpi-initialize-twice",
|
2006-12-14 22:58:04 +03:00
|
|
|
true, FUNC_NAME);
|
|
|
|
}
|
2005-09-15 19:44:12 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_OTHER, FUNC_NAME);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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) */
|
|
|
|
|
|
|
|
if (NULL != argc && NULL != argv) {
|
|
|
|
err = ompi_mpi_init(*argc, *argv, required, provided);
|
|
|
|
} else {
|
|
|
|
err = ompi_mpi_init(0, NULL, required, provided);
|
|
|
|
}
|
2007-07-29 15:47:19 +04: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);
|
|
|
|
}
|
2011-01-03 21:16:53 +03:00
|
|
|
|
|
|
|
OPAL_CR_INIT_LIBRARY();
|
|
|
|
|
2007-07-29 15:47:19 +04:00
|
|
|
return MPI_SUCCESS;
|
2004-01-26 01:07:54 +03:00
|
|
|
}
|