2006-09-14 20:44:02 +04:00
|
|
|
/*
|
2007-03-17 02:11:45 +03:00
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
2006-09-14 20:44:02 +04: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.
|
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2010-01-13 21:58:00 +03:00
|
|
|
* Copyright (c) 2006-2010 QLogic Corporation. All rights reserved.
|
2012-08-16 04:50:24 +04:00
|
|
|
* Copyright (c) 2012 Los Alamos National Security, LLC.
|
|
|
|
* All rights reserved.
|
2006-09-14 20:44:02 +04:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
Update libevent to the 2.0 series, currently at 2.0.7rc. We will update to their final release when it becomes available. Currently known errors exist in unused portions of the libevent code. This revision passes the IBM test suite on a Linux machine and on a standalone Mac.
This is a fairly intrusive change, but outside of the moving of opal/event to opal/mca/event, the only changes involved (a) changing all calls to opal_event functions to reflect the new framework instead, and (b) ensuring that all opal_event_t objects are properly constructed since they are now true opal_objects.
Note: Shiqing has just returned from vacation and has not yet had a chance to complete the Windows integration. Thus, this commit almost certainly breaks Windows support on the trunk. However, I want this to have a chance to soak for as long as possible before I become less available a week from today (going to be at a class for 5 days, and thus will only be sparingly available) so we can find and fix any problems.
Biggest change is moving the libevent code from opal/event to a new opal/mca/event framework. This was done to make it much easier to update libevent in the future. New versions can be inserted as a new component and tested in parallel with the current version until validated, then we can remove the earlier version if we so choose. This is a statically built framework ala installdirs, so only one component will build at a time. There is no selection logic - the sole compiled component simply loads its function pointers into the opal_event struct.
I have gone thru the code base and converted all the libevent calls I could find. However, I cannot compile nor test every environment. It is therefore quite likely that errors remain in the system. Please keep an eye open for two things:
1. compile-time errors: these will be obvious as calls to the old functions (e.g., opal_evtimer_new) must be replaced by the new framework APIs (e.g., opal_event.evtimer_new)
2. run-time errors: these will likely show up as segfaults due to missing constructors on opal_event_t objects. It appears that it became a typical practice for people to "init" an opal_event_t by simply using memset to zero it out. This will no longer work - you must either OBJ_NEW or OBJ_CONSTRUCT an opal_event_t. I tried to catch these cases, but may have missed some. Believe me, you'll know when you hit it.
There is also the issue of the new libevent "no recursion" behavior. As I described on a recent email, we will have to discuss this and figure out what, if anything, we need to do.
This commit was SVN r23925.
2010-10-24 22:35:54 +04:00
|
|
|
#include "opal/mca/event/event.h"
|
2009-02-14 05:26:12 +03:00
|
|
|
#include "opal/util/output.h"
|
2013-03-05 04:17:48 +04:00
|
|
|
#include "opal/util/show_help.h"
|
2009-07-30 06:55:20 +04:00
|
|
|
#include "ompi/proc/proc.h"
|
2006-09-14 20:44:02 +04:00
|
|
|
|
|
|
|
#include "mtl_psm.h"
|
|
|
|
#include "mtl_psm_types.h"
|
|
|
|
#include "mtl_psm_request.h"
|
|
|
|
|
|
|
|
#include "psm.h"
|
|
|
|
|
2010-01-14 22:39:35 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2006-09-14 20:44:02 +04:00
|
|
|
static int ompi_mtl_psm_component_open(void);
|
|
|
|
static int ompi_mtl_psm_component_close(void);
|
2010-01-13 21:58:00 +03:00
|
|
|
static int ompi_mtl_psm_component_register(void);
|
2006-09-14 20:44:02 +04:00
|
|
|
|
|
|
|
static mca_mtl_base_module_t* ompi_mtl_psm_component_init( bool enable_progress_threads,
|
|
|
|
bool enable_mpi_threads );
|
|
|
|
|
|
|
|
mca_mtl_psm_component_t mca_mtl_psm_component = {
|
|
|
|
|
|
|
|
{
|
|
|
|
/* First, the mca_base_component_t struct containing meta
|
|
|
|
* information about the component itself */
|
|
|
|
|
|
|
|
{
|
2008-07-29 02:40:57 +04:00
|
|
|
MCA_MTL_BASE_VERSION_2_0_0,
|
2006-09-14 20:44:02 +04:00
|
|
|
|
|
|
|
"psm", /* MCA component name */
|
|
|
|
OMPI_MAJOR_VERSION, /* MCA component major version */
|
|
|
|
OMPI_MINOR_VERSION, /* MCA component minor version */
|
|
|
|
OMPI_RELEASE_VERSION, /* MCA component release version */
|
|
|
|
ompi_mtl_psm_component_open, /* component open */
|
2010-01-13 21:58:00 +03:00
|
|
|
ompi_mtl_psm_component_close, /* component close */
|
|
|
|
NULL,
|
|
|
|
ompi_mtl_psm_component_register
|
2006-09-14 20:44:02 +04:00
|
|
|
},
|
|
|
|
{
|
2007-03-17 02:11:45 +03:00
|
|
|
/* The component is not checkpoint ready */
|
|
|
|
MCA_BASE_METADATA_PARAM_NONE
|
2006-09-14 20:44:02 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
ompi_mtl_psm_component_init /* component init */
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-03-28 01:09:41 +04:00
|
|
|
#if PSM_VERNO >= 0x010d
|
|
|
|
static mca_base_var_enum_value_t path_query_values[] = {
|
|
|
|
{PSM_PATH_RES_NONE, "none"},
|
|
|
|
{PSM_PATH_RES_OPP, "opp"},
|
|
|
|
{0, NULL}
|
|
|
|
};
|
|
|
|
#endif
|
2006-09-14 20:44:02 +04:00
|
|
|
|
|
|
|
static int
|
2010-01-13 21:58:00 +03:00
|
|
|
ompi_mtl_psm_component_register(void)
|
2006-09-14 20:44:02 +04:00
|
|
|
{
|
2013-03-28 01:09:41 +04:00
|
|
|
#if PSM_VERNO >= 0x010d
|
|
|
|
mca_base_var_enum_t *new_enum;
|
|
|
|
#endif
|
|
|
|
int ret;
|
2006-09-14 20:44:02 +04:00
|
|
|
|
2013-03-28 01:09:41 +04:00
|
|
|
ompi_mtl_psm.connect_timeout = 180;
|
|
|
|
(void) mca_base_component_var_register(&mca_mtl_psm_component.super.mtl_version,
|
|
|
|
"connect_timeout",
|
|
|
|
"PSM connection timeout value in seconds",
|
|
|
|
MCA_BASE_VAR_TYPE_INT, NULL, 0, 0,
|
|
|
|
OPAL_INFO_LVL_9,
|
|
|
|
MCA_BASE_VAR_SCOPE_READONLY,
|
|
|
|
&ompi_mtl_psm.connect_timeout);
|
|
|
|
|
|
|
|
ompi_mtl_psm.debug_level = 1;
|
|
|
|
(void) mca_base_component_var_register(&mca_mtl_psm_component.super.mtl_version,
|
|
|
|
"debug", "PSM debug level",
|
|
|
|
MCA_BASE_VAR_TYPE_INT, NULL, 0, 0,
|
|
|
|
OPAL_INFO_LVL_9,
|
|
|
|
MCA_BASE_VAR_SCOPE_READONLY,
|
|
|
|
&ompi_mtl_psm.debug_level);
|
|
|
|
|
|
|
|
ompi_mtl_psm.ib_unit = -1;
|
|
|
|
(void) mca_base_component_var_register(&mca_mtl_psm_component.super.mtl_version,
|
|
|
|
"ib_unit", "Truescale unit to use",
|
|
|
|
MCA_BASE_VAR_TYPE_INT, NULL, 0, 0,
|
|
|
|
OPAL_INFO_LVL_9,
|
|
|
|
MCA_BASE_VAR_SCOPE_READONLY,
|
|
|
|
&ompi_mtl_psm.ib_unit);
|
|
|
|
|
|
|
|
ompi_mtl_psm.ib_port = 0;
|
|
|
|
(void) mca_base_component_var_register(&mca_mtl_psm_component.super.mtl_version,
|
|
|
|
"ib_port", "Truescale port on unit to use",
|
|
|
|
MCA_BASE_VAR_TYPE_INT, NULL, 0, 0,
|
|
|
|
OPAL_INFO_LVL_9,
|
|
|
|
MCA_BASE_VAR_SCOPE_READONLY,
|
|
|
|
&ompi_mtl_psm.ib_port);
|
|
|
|
|
|
|
|
ompi_mtl_psm.ib_service_level = 0;
|
|
|
|
(void) mca_base_component_var_register(&mca_mtl_psm_component.super.mtl_version,
|
|
|
|
"ib_service_level", "Infiniband service level"
|
|
|
|
"(0 <= SL <= 15)", MCA_BASE_VAR_TYPE_INT,
|
|
|
|
NULL, 0, 0, OPAL_INFO_LVL_9,
|
|
|
|
MCA_BASE_VAR_SCOPE_READONLY,
|
|
|
|
&ompi_mtl_psm.ib_service_level);
|
2009-07-25 00:09:39 +04:00
|
|
|
|
2009-07-30 06:55:20 +04:00
|
|
|
ompi_mtl_psm.ib_pkey = 0x7fffUL;
|
2013-03-28 01:09:41 +04:00
|
|
|
(void) mca_base_component_var_register(&mca_mtl_psm_component.super.mtl_version,
|
|
|
|
"ib_pkey", "Infiniband partition key",
|
|
|
|
MCA_BASE_VAR_TYPE_INT, NULL, 0, 0,
|
|
|
|
OPAL_INFO_LVL_9,
|
|
|
|
MCA_BASE_VAR_SCOPE_READONLY,
|
|
|
|
&ompi_mtl_psm.ib_pkey);
|
2009-08-12 17:18:04 +04:00
|
|
|
|
2010-01-13 21:58:00 +03:00
|
|
|
#if PSM_VERNO >= 0x010d
|
2013-03-28 01:09:41 +04:00
|
|
|
ompi_mtl_psm.ib_service_id = 0x1000117500000000ull;
|
|
|
|
(void) mca_base_component_var_register(&mca_mtl_psm_component.super.mtl_version,
|
|
|
|
"ib_service_id",
|
|
|
|
"Infiniband service ID to use for application (default is 0)",
|
|
|
|
MCA_BASE_VAR_TYPE_UNSIGNED_LONG_LONG, NULL, 0, 0,
|
|
|
|
OPAL_INFO_LVL_9,
|
|
|
|
MCA_BASE_VAR_SCOPE_READONLY,
|
|
|
|
&ompi_mtl_psm.ib_service_id);
|
|
|
|
|
|
|
|
ompi_mtl_psm.path_res_type = PSM_PATH_RES_NONE;
|
|
|
|
mca_base_var_enum_create("mtl_psm_path_query", path_query_values, &new_enum);
|
|
|
|
ret = mca_base_component_var_register(&mca_mtl_psm_component.super.mtl_version,
|
|
|
|
"path_query",
|
|
|
|
"Path record query mechanisms",
|
|
|
|
MCA_BASE_VAR_TYPE_INT, new_enum, 0, 0,
|
|
|
|
OPAL_INFO_LVL_9,
|
|
|
|
MCA_BASE_VAR_SCOPE_READONLY,
|
|
|
|
&ompi_mtl_psm.path_res_type);
|
|
|
|
OBJ_RELEASE(new_enum);
|
2010-01-13 21:58:00 +03:00
|
|
|
#endif
|
2013-03-28 01:09:41 +04:00
|
|
|
|
|
|
|
return OMPI_SUCCESS;
|
2006-09-14 20:44:02 +04:00
|
|
|
}
|
|
|
|
|
2010-01-13 21:58:00 +03:00
|
|
|
static int
|
|
|
|
ompi_mtl_psm_component_open(void)
|
|
|
|
{
|
2010-01-14 22:39:35 +03:00
|
|
|
struct stat st;
|
|
|
|
|
2013-03-28 01:09:41 +04:00
|
|
|
if (ompi_mtl_psm.ib_service_level < 0) {
|
|
|
|
ompi_mtl_psm.ib_service_level = 0;
|
|
|
|
} else if (ompi_mtl_psm.ib_service_level > 15) {
|
|
|
|
ompi_mtl_psm.ib_service_level = 15;
|
|
|
|
}
|
|
|
|
|
2010-01-14 22:39:35 +03:00
|
|
|
/* Component available only if Truescale hardware is present */
|
|
|
|
if (0 == stat("/dev/ipath", &st)) {
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return OPAL_ERR_NOT_AVAILABLE;
|
|
|
|
}
|
2010-01-13 21:58:00 +03:00
|
|
|
}
|
2006-09-14 20:44:02 +04:00
|
|
|
|
|
|
|
static int
|
|
|
|
ompi_mtl_psm_component_close(void)
|
|
|
|
{
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2012-08-16 04:50:24 +04:00
|
|
|
static int
|
|
|
|
get_num_local_procs(int *out_nlp)
|
|
|
|
{
|
|
|
|
/* num_local_peers does not include us in
|
|
|
|
* its calculation, so adjust for that */
|
2013-01-28 03:25:10 +04:00
|
|
|
*out_nlp = (int)(1 + ompi_process_info.num_local_peers);
|
2012-08-16 04:50:24 +04:00
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
get_local_rank(int *out_rank)
|
|
|
|
{
|
2013-07-21 23:12:32 +04:00
|
|
|
ompi_node_rank_t my_node_rank;
|
2012-08-16 04:50:24 +04:00
|
|
|
|
|
|
|
*out_rank = 0;
|
|
|
|
|
2013-07-21 23:12:32 +04:00
|
|
|
if (OMPI_NODE_RANK_INVALID == (my_node_rank =
|
2013-01-28 03:25:10 +04:00
|
|
|
ompi_process_info.my_node_rank)) {
|
2012-08-16 04:50:24 +04:00
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
|
|
|
*out_rank = (int)my_node_rank;
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
2006-09-14 20:44:02 +04:00
|
|
|
|
2012-08-16 04:50:24 +04:00
|
|
|
static mca_mtl_base_module_t *
|
2006-09-14 20:44:02 +04:00
|
|
|
ompi_mtl_psm_component_init(bool enable_progress_threads,
|
2012-08-16 04:50:24 +04:00
|
|
|
bool enable_mpi_threads)
|
2006-09-14 20:44:02 +04:00
|
|
|
{
|
|
|
|
psm_error_t err;
|
|
|
|
int verno_major = PSM_VERNO_MAJOR;
|
|
|
|
int verno_minor = PSM_VERNO_MINOR;
|
2009-08-12 17:18:04 +04:00
|
|
|
int local_rank = -1, num_local_procs = 0;
|
2012-08-16 04:50:24 +04:00
|
|
|
|
2009-07-30 06:55:20 +04:00
|
|
|
/* Compute the total number of processes on this host and our local rank
|
|
|
|
* on that node. We need to provide PSM with these values so it can
|
|
|
|
* allocate hardware contexts appropriately across processes.
|
|
|
|
*/
|
2012-08-16 04:50:24 +04:00
|
|
|
if (OMPI_SUCCESS != get_num_local_procs(&num_local_procs)) {
|
|
|
|
opal_output(0, "Cannot determine number of local processes. "
|
|
|
|
"Cannot continue.\n");
|
|
|
|
return NULL;
|
2009-07-30 06:55:20 +04:00
|
|
|
}
|
2012-08-16 04:50:24 +04:00
|
|
|
if (OMPI_SUCCESS != get_local_rank(&local_rank)) {
|
|
|
|
opal_output(0, "Cannot determine local rank. Cannot continue.\n");
|
|
|
|
return NULL;
|
2009-07-30 06:55:20 +04:00
|
|
|
}
|
2012-08-16 04:50:24 +04:00
|
|
|
|
2006-09-14 20:44:02 +04:00
|
|
|
err = psm_error_register_handler(NULL /* no ep */,
|
|
|
|
PSM_ERRHANDLER_NOP);
|
|
|
|
if (err) {
|
2008-06-09 18:53:58 +04:00
|
|
|
opal_output(0, "Error in psm_error_register_handler (error %s)\n",
|
2006-09-14 20:44:02 +04:00
|
|
|
psm_error_get_string(err));
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-07-25 00:09:39 +04:00
|
|
|
|
|
|
|
#if PSM_VERNO >= 0x010c
|
|
|
|
/* Set infinipath debug level */
|
|
|
|
err = psm_setopt(PSM_COMPONENT_CORE, 0, PSM_CORE_OPT_DEBUG,
|
|
|
|
(const void*) &ompi_mtl_psm.debug_level,
|
|
|
|
sizeof(unsigned));
|
|
|
|
if (err) {
|
|
|
|
/* Non fatal error. Can continue */
|
2013-02-13 01:10:11 +04:00
|
|
|
opal_show_help("help-mtl-psm.txt",
|
2009-07-30 06:55:20 +04:00
|
|
|
"psm init", false,
|
|
|
|
psm_error_get_string(err));
|
2009-07-25 00:09:39 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-02-03 00:55:04 +03:00
|
|
|
/* Only allow for shm and ipath devices in 2.0 and earlier releases
|
|
|
|
* (unless the user overrides the setting).
|
|
|
|
*/
|
2009-07-30 06:55:20 +04:00
|
|
|
|
|
|
|
if (PSM_VERNO >= 0x0104) {
|
|
|
|
setenv("PSM_DEVICES", "self,shm,ipath", 0);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
setenv("PSM_DEVICES", "shm,ipath", 0);
|
|
|
|
}
|
|
|
|
|
2006-09-14 20:44:02 +04:00
|
|
|
err = psm_init(&verno_major, &verno_minor);
|
|
|
|
if (err) {
|
2013-02-13 01:10:11 +04:00
|
|
|
opal_show_help("help-mtl-psm.txt",
|
2009-07-30 06:55:20 +04:00
|
|
|
"psm init", true,
|
|
|
|
psm_error_get_string(err));
|
|
|
|
return NULL;
|
2006-09-14 20:44:02 +04:00
|
|
|
}
|
|
|
|
|
2009-07-30 06:55:20 +04:00
|
|
|
/* Complete PSM initialization */
|
|
|
|
ompi_mtl_psm_module_init(local_rank, num_local_procs);
|
|
|
|
|
2006-09-14 20:44:02 +04:00
|
|
|
ompi_mtl_psm.super.mtl_request_size =
|
2009-07-30 06:55:20 +04:00
|
|
|
sizeof(mca_mtl_psm_request_t) -
|
|
|
|
sizeof(struct mca_mtl_request_t);
|
2006-09-14 20:44:02 +04:00
|
|
|
|
|
|
|
return &ompi_mtl_psm.super;
|
|
|
|
}
|
|
|
|
|