1
1

Start adding support for cmd line options to orte-submit

Этот коммит содержится в:
Ralph Castain 2015-02-10 12:13:21 -08:00
родитель cf3f4def48
Коммит 116fcaff2c
2 изменённых файлов: 48 добавлений и 6 удалений

Просмотреть файл

@ -622,8 +622,10 @@ int orte_rmaps_base_set_mapping_policy(orte_mapping_policy_t *policy,
/* set defaults */
tmp = 0;
*device = NULL;
if (NULL != device) {
*device = NULL;
}
opal_output_verbose(5, orte_rmaps_base_framework.framework_output,
"%s rmaps:base set policy with %s",
ORTE_NAME_PRINT(ORTE_PROC_MY_NAME),
@ -662,7 +664,7 @@ int orte_rmaps_base_set_mapping_policy(orte_mapping_policy_t *policy,
* and save the second argument as the device
*/
#if OPAL_HAVE_HWLOC
if (0 == strncasecmp(spec, "dist", strlen(spec))) {
if (NULL != device && 0 == strncasecmp(spec, "dist", strlen(spec))) {
ORTE_SET_MAPPING_POLICY(tmp, ORTE_MAPPING_BYDIST);
/* the first argument after the colon *must* be the
* device we are mapping near - however, other modifiers

Просмотреть файл

@ -85,6 +85,9 @@
#include "orte/mca/odls/odls_types.h"
#include "orte/mca/plm/plm.h"
#include "orte/mca/rmaps/rmaps_types.h"
#include "orte/mca/rmaps/base/base.h"
#include "orte/mca/schizo/schizo.h"
#include "orte/mca/errmgr/errmgr.h"
#include "orte/mca/rml/rml.h"
@ -141,6 +144,7 @@ static struct {
char *binding_policy;
bool report_bindings;
char *slot_list;
bool debug;
} myglobals;
static opal_cmd_line_init_t cmd_line_init[] = {
@ -306,7 +310,11 @@ static opal_cmd_line_init_t cmd_line_init[] = {
&myglobals.personality, OPAL_CMD_LINE_TYPE_STRING,
"Programming model/language being used (default=\"ompi\")" },
/* End of list */
{ NULL, 'd', "debug-devel", "debug-devel", 0,
&myglobals.debug, OPAL_CMD_LINE_TYPE_BOOL,
"Enable debugging of OpenRTE" },
/* End of list */
{ NULL, '\0', NULL, NULL, 0,
NULL, OPAL_CMD_LINE_TYPE_NULL, NULL }
};
@ -387,7 +395,7 @@ int main(int argc, char *argv[])
/* Check for some "global" command line params */
parse_globals(argc, argv, &cmd_line);
/* if they didn't point us at an HNP, that's an error */
if (NULL == myglobals.hnp) {
fprintf(stderr, "orte-submit: required option --hnp not provided\n");
@ -441,7 +449,11 @@ int main(int argc, char *argv[])
/* flag that I am a TOOL */
orte_process_info.proc_type = ORTE_PROC_TOOL;
if (myglobals.debug) {
orte_devel_level_output = true;
}
/* Intialize our Open RTE environment
* Set the flag telling orte_init that I am NOT a
* singleton, but am "infrastructure" - prevents setting
@ -537,6 +549,34 @@ int main(int argc, char *argv[])
/* Parse each app, adding it to the job object */
parse_locals(jdata, argc, argv);
/* create the map object to communicate policies */
jdata->map = OBJ_NEW(orte_job_map_t);
/* if they asked for nolocal, mark it so */
if (NULL != myglobals.mapping_policy) {
if (ORTE_SUCCESS != (rc = orte_rmaps_base_set_mapping_policy(&jdata->map->mapping, NULL, myglobals.mapping_policy))) {
ORTE_ERROR_LOG(rc);
exit(rc);
}
}
if (NULL != myglobals.ranking_policy) {
if (ORTE_SUCCESS != (rc = orte_rmaps_base_set_ranking_policy(&jdata->map->ranking,
jdata->map->mapping,
myglobals.ranking_policy))) {
ORTE_ERROR_LOG(rc);
exit(rc);
}
}
if (myglobals.nolocal) {
ORTE_SET_MAPPING_DIRECTIVE(jdata->map->mapping, ORTE_MAPPING_NO_USE_LOCAL);
}
if (myglobals.no_oversubscribe) {
ORTE_UNSET_MAPPING_DIRECTIVE(jdata->map->mapping, ORTE_MAPPING_NO_OVERSUBSCRIBE);
}
if (myglobals.oversubscribe) {
ORTE_UNSET_MAPPING_DIRECTIVE(jdata->map->mapping, ORTE_MAPPING_NO_OVERSUBSCRIBE);
}
opal_dss.dump(0, jdata, ORTE_JOB);
exit(0);