1ace83c470
1. minor modification to include two new opal MCA params: (a) opal_profile: outputs what components were selected by each framework currently enabled for most, but not all, frameworks (b) opal_profile_file: name of file that contains profile info required for modex 2. introduction of two new tools: (a) ompi-probe: MPI process that simply calls MPI_Init/Finalize with opal_profile set. Also reports back the rml IP address for all interfaces on the node (b) ompi-profiler: uses ompi-probe to create the profile_file, also reports out a summary of what framework components are actually being used to help with configuration options 3. modification of the grpcomm basic component to utilize the profile file in place of the modex where possible 4. modification of orterun so it properly sees opal mca params and handles opal_profile correctly to ensure we don't get its profile 5. similar mod to orted as for orterun 6. addition of new test that calls orte_init followed by calls to grpcomm.barrier This is all completely benign unless actively selected. At the moment, it only supports modex-less launch for openib-based systems. Minor mod to the TCP btl would be required to enable it as well, if people are interested. Similarly, anyone interested in enabling other BTL's for modex-less operation should let me know and I'll give you the magic details. This seems to significantly improve scalability provided the file can be locally located on the nodes. I'm looking at an alternative means of disseminating the info (perhaps in launch message) as an option for removing that constraint. This commit was SVN r20098.
158 строки
4.5 KiB
C
158 строки
4.5 KiB
C
/*
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2006 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.
|
|
* Copyright (c) 2007 Cisco, Inc. All rights reserved.
|
|
* Copyright (c) 2007 Los Alamos National Security, LLC. All rights
|
|
* reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "ompi_config.h"
|
|
#include "mpi.h"
|
|
|
|
#include <stdio.h>
|
|
#include <ctype.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
#ifdef HAVE_NETDB_H
|
|
#include <netdb.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
#include <sys/param.h>
|
|
#endif
|
|
#include <fcntl.h>
|
|
#include <errno.h>
|
|
#include <signal.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "opal/dss/dss.h"
|
|
#include "opal/mca/base/base.h"
|
|
#include "opal/util/opal_environ.h"
|
|
#include "opal/runtime/opal.h"
|
|
|
|
#include "orte/mca/errmgr/errmgr.h"
|
|
#include "orte/mca/rml/rml.h"
|
|
#include "orte/util/proc_info.h"
|
|
#include "orte/runtime/orte_globals.h"
|
|
|
|
/*
|
|
* Globals
|
|
*/
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
char * tmp_env_var = NULL;
|
|
char *rml_uri;
|
|
opal_buffer_t buffer;
|
|
char *attr = "oob.tcp";
|
|
int32_t len;
|
|
int rc;
|
|
|
|
/* init enough of opal to use a few utilities */
|
|
if (OPAL_SUCCESS != opal_init_util()) {
|
|
fprintf(stderr, "OPAL failed to initialize -- ompi-probe aborting\n");
|
|
exit(1);
|
|
}
|
|
|
|
#if OPAL_ENABLE_FT == 1
|
|
/* Disable the checkpoint notification routine for this
|
|
* tool. As we will never need to checkpoint this tool.
|
|
* Note: This must happen before opal_init().
|
|
*/
|
|
opal_cr_set_enabled(false);
|
|
|
|
/* Select the none component, since we don't actually use a checkpointer */
|
|
tmp_env_var = mca_base_param_env_var("crs");
|
|
opal_setenv(tmp_env_var,
|
|
"none",
|
|
true, &environ);
|
|
free(tmp_env_var);
|
|
tmp_env_var = NULL;
|
|
|
|
/* Mark as a tool program */
|
|
tmp_env_var = mca_base_param_env_var("opal_cr_is_tool");
|
|
opal_setenv(tmp_env_var,
|
|
"1",
|
|
true, &environ);
|
|
free(tmp_env_var);
|
|
#endif
|
|
tmp_env_var = NULL; /* Silence compiler warning */
|
|
|
|
/* open up and select all the frameworks - this will generate the
|
|
* profiled output
|
|
*/
|
|
MPI_Init(NULL, NULL);
|
|
|
|
/* get our RML uri */
|
|
rml_uri = orte_rml.get_contact_info();
|
|
|
|
if (NULL != rml_uri) {
|
|
char *ptr, *endip, *ipout=NULL, *tmp;
|
|
endip = rml_uri;
|
|
/* remove the non-IP info */
|
|
while (NULL != (ptr = strchr(endip, '/'))) {
|
|
/* next position is the second '/' */
|
|
ptr += 2;
|
|
/* now look for ':' */
|
|
endip = strchr(ptr, ':');
|
|
if (NULL == endip) {
|
|
/* got an error - just dump this */
|
|
free(rml_uri);
|
|
goto CLEANUP;
|
|
}
|
|
*endip = '\0';
|
|
if (NULL == ipout) {
|
|
ipout = strdup(ptr);
|
|
} else {
|
|
asprintf(&tmp, "%s:%s", ipout, ptr);
|
|
free(ipout);
|
|
ipout = tmp;
|
|
}
|
|
ptr = endip + 1;
|
|
}
|
|
/* send the result to the HNP*/
|
|
OBJ_CONSTRUCT(&buffer, opal_buffer_t);
|
|
if (ORTE_SUCCESS != (rc = opal_dss.pack(&buffer, &orte_process_info.nodename, 1, OPAL_STRING))) {
|
|
ORTE_ERROR_LOG(rc);
|
|
goto skip;
|
|
}
|
|
if (ORTE_SUCCESS != (rc = opal_dss.pack(&buffer, &attr, 1, OPAL_STRING))) {
|
|
ORTE_ERROR_LOG(rc);
|
|
goto skip;
|
|
}
|
|
len = strlen(ipout);
|
|
if (ORTE_SUCCESS != (rc = opal_dss.pack(&buffer, &len, 1, OPAL_INT32))) {
|
|
ORTE_ERROR_LOG(rc);
|
|
goto skip;
|
|
}
|
|
if (ORTE_SUCCESS != (rc = opal_dss.pack(&buffer, &ipout, len, OPAL_BYTE))) {
|
|
ORTE_ERROR_LOG(rc);
|
|
goto skip;
|
|
}
|
|
orte_rml.send_buffer(ORTE_PROC_MY_HNP, &buffer, ORTE_RML_TAG_GRPCOMM_PROFILE, 0);
|
|
skip:
|
|
OBJ_DESTRUCT(&buffer);
|
|
/* cleanup */
|
|
free(rml_uri);
|
|
}
|
|
|
|
CLEANUP:
|
|
/* Finalize and clean up ourselves */
|
|
MPI_Finalize();
|
|
|
|
return 0;
|
|
}
|