mpirun --help output revamp
This commit modifies the output from the mpirun --help command. The options have been split into groups, to make the output smaller and more readable. The groups are: general, debug, output, input, mapping, ranking, binding, devel, compatibility, launch, dvm, and unsupported. There is also a special "full" command that can be used to get the old behaviour of printing out all of the options. Unsupported options may only be seen with this full output. This commit also adds a special case for the help argument. It makes it possible for the user to enter 0 or 1 arguments instead of having to always enter an argument. This defaults to printing out the "general" help options so the user can then see what help arguments there are. Signed-off-by: Nathaniel Graham <ngraham@lanl.gov>
Этот коммит содержится в:
родитель
d782542c5c
Коммит
19e5d15491
@ -10,7 +10,7 @@
|
||||
* University of Stuttgart. All rights reserved.
|
||||
* Copyright (c) 2004-2005 The Regents of the University of California.
|
||||
* All rights reserved.
|
||||
* Copyright (c) 2012-2016 Los Alamos National Security, LLC. All rights
|
||||
* Copyright (c) 2012-2017 Los Alamos National Security, LLC. All rights
|
||||
* reserved.
|
||||
* Copyright (c) 2012-2015 Cisco Systems, Inc. All rights reserved.
|
||||
* Copyright (c) 2015-2017 Research Organization for Information Science
|
||||
@ -70,6 +70,7 @@ struct cmd_line_option_t {
|
||||
char *clo_mca_param_env_var;
|
||||
void *clo_variable_dest;
|
||||
bool clo_variable_set;
|
||||
opal_cmd_line_otype_t clo_otype;
|
||||
};
|
||||
typedef struct cmd_line_option_t cmd_line_option_t;
|
||||
static void option_constructor(cmd_line_option_t *cmd);
|
||||
@ -141,6 +142,7 @@ static cmd_line_option_t *find_option(opal_cmd_line_t *cmd,
|
||||
static int set_dest(cmd_line_option_t *option, char *sval);
|
||||
static void fill(const cmd_line_option_t *a, char result[3][BUFSIZ]);
|
||||
static int qsort_callback(const void *a, const void *b);
|
||||
static opal_cmd_line_otype_t get_help_otype(opal_cmd_line_t *cmd);
|
||||
|
||||
|
||||
/*
|
||||
@ -255,6 +257,7 @@ int opal_cmd_line_parse(opal_cmd_line_t *cmd, bool ignore_unknown, bool ignore_u
|
||||
int num_args_used;
|
||||
bool have_help_option = false;
|
||||
bool printed_error = false;
|
||||
bool help_without_arg = false;
|
||||
|
||||
/* Bozo check */
|
||||
|
||||
@ -394,10 +397,17 @@ int opal_cmd_line_parse(opal_cmd_line_t *cmd, bool ignore_unknown, bool ignore_u
|
||||
recognized */
|
||||
|
||||
for (j = 0; j < option->clo_num_params; ++j, ++i) {
|
||||
|
||||
/* If we run out of parameters, error */
|
||||
|
||||
/* If we run out of parameters, error, unless its a help request
|
||||
which can have 0 or 1 arguments */
|
||||
if (i >= cmd->lcl_argc) {
|
||||
/* If this is a help request, can have no arguments */
|
||||
if((NULL != option->clo_single_dash_name &&
|
||||
0 == strcmp(option->clo_single_dash_name, "h")) ||
|
||||
(NULL != option->clo_long_name &&
|
||||
0 == strcmp(option->clo_long_name, "help"))) {
|
||||
help_without_arg = true;
|
||||
continue;
|
||||
}
|
||||
fprintf(stderr, "%s: Error: option \"%s\" did not "
|
||||
"have enough parameters (%d)\n",
|
||||
cmd->lcl_argv[0],
|
||||
@ -454,10 +464,11 @@ int opal_cmd_line_parse(opal_cmd_line_t *cmd, bool ignore_unknown, bool ignore_u
|
||||
}
|
||||
}
|
||||
|
||||
/* If there are no options to this command, see if we
|
||||
need to set a boolean value to "true". */
|
||||
/* If there are no options to this command or it is
|
||||
a help request with no argument, see if we need to
|
||||
set a boolean value to "true". */
|
||||
|
||||
if (0 == option->clo_num_params) {
|
||||
if (0 == option->clo_num_params || help_without_arg) {
|
||||
if (OPAL_SUCCESS != (ret = set_dest(option, "1"))) {
|
||||
opal_mutex_unlock(&cmd->lcl_mutex);
|
||||
return ret;
|
||||
@ -524,6 +535,7 @@ char *opal_cmd_line_get_usage_msg(opal_cmd_line_t *cmd)
|
||||
char *start, *desc, *ptr;
|
||||
opal_list_item_t *item;
|
||||
cmd_line_option_t *option, **sorted;
|
||||
opal_cmd_line_otype_t otype;
|
||||
|
||||
/* Thread serialization */
|
||||
|
||||
@ -550,135 +562,120 @@ char *opal_cmd_line_get_usage_msg(opal_cmd_line_t *cmd)
|
||||
}
|
||||
qsort(sorted, i, sizeof(cmd_line_option_t*), qsort_callback);
|
||||
|
||||
/* Find if a help argument was passed, and return its type if it was. */
|
||||
|
||||
otype = get_help_otype(cmd);
|
||||
|
||||
/* Now go through the sorted array and make the strings */
|
||||
|
||||
for (j = 0; j < opal_list_get_size(&cmd->lcl_options); ++j) {
|
||||
option = sorted[j];
|
||||
if (NULL != option->clo_description) {
|
||||
bool filled = false;
|
||||
if(otype == OPAL_CMD_LINE_OTYPE_NULL || option->clo_otype == otype) {
|
||||
if (NULL != option->clo_description) {
|
||||
bool filled = false;
|
||||
|
||||
/* Build up the output line */
|
||||
/* Build up the output line */
|
||||
|
||||
memset(line, 0, sizeof(line));
|
||||
if ('\0' != option->clo_short_name) {
|
||||
line[0] = '-';
|
||||
line[1] = option->clo_short_name;
|
||||
filled = true;
|
||||
} else {
|
||||
line[0] = ' ';
|
||||
line[1] = ' ';
|
||||
}
|
||||
if (NULL != option->clo_single_dash_name) {
|
||||
line[2] = (filled) ? '|' : ' ';
|
||||
strncat(line, "-", sizeof(line) - 1);
|
||||
strncat(line, option->clo_single_dash_name, sizeof(line) - 1);
|
||||
filled = true;
|
||||
}
|
||||
if (NULL != option->clo_long_name) {
|
||||
if (filled) {
|
||||
strncat(line, "|", sizeof(line) - 1);
|
||||
memset(line, 0, sizeof(line));
|
||||
if ('\0' != option->clo_short_name) {
|
||||
line[0] = '-';
|
||||
line[1] = option->clo_short_name;
|
||||
filled = true;
|
||||
} else {
|
||||
line[0] = ' ';
|
||||
line[1] = ' ';
|
||||
}
|
||||
if (NULL != option->clo_single_dash_name) {
|
||||
line[2] = (filled) ? '|' : ' ';
|
||||
strncat(line, "-", sizeof(line) - 1);
|
||||
strncat(line, option->clo_single_dash_name, sizeof(line) - 1);
|
||||
filled = true;
|
||||
}
|
||||
if (NULL != option->clo_long_name) {
|
||||
if (filled) {
|
||||
strncat(line, "|", sizeof(line) - 1);
|
||||
} else {
|
||||
strncat(line, " ", sizeof(line) - 1);
|
||||
}
|
||||
strncat(line, "--", sizeof(line) - 1);
|
||||
strncat(line, option->clo_long_name, sizeof(line) - 1);
|
||||
}
|
||||
strncat(line, " ", sizeof(line) - 1);
|
||||
for (i = 0; (int)i < option->clo_num_params; ++i) {
|
||||
len = sizeof(temp);
|
||||
snprintf(temp, len, "<arg%d> ", (int)i);
|
||||
strncat(line, temp, sizeof(line) - 1);
|
||||
}
|
||||
if (option->clo_num_params > 0) {
|
||||
strncat(line, " ", sizeof(line) - 1);
|
||||
}
|
||||
strncat(line, "--", sizeof(line) - 1);
|
||||
strncat(line, option->clo_long_name, sizeof(line) - 1);
|
||||
}
|
||||
strncat(line, " ", sizeof(line) - 1);
|
||||
for (i = 0; (int)i < option->clo_num_params; ++i) {
|
||||
len = sizeof(temp);
|
||||
snprintf(temp, len, "<arg%d> ", (int)i);
|
||||
strncat(line, temp, sizeof(line) - 1);
|
||||
}
|
||||
if (option->clo_num_params > 0) {
|
||||
strncat(line, " ", sizeof(line) - 1);
|
||||
}
|
||||
|
||||
/* If we're less than param width, then start adding the
|
||||
description to this line. Otherwise, finish this line
|
||||
and start adding the description on the next line. */
|
||||
/* If we're less than param width, then start adding the
|
||||
description to this line. Otherwise, finish this line
|
||||
and start adding the description on the next line. */
|
||||
|
||||
if (strlen(line) > PARAM_WIDTH) {
|
||||
opal_argv_append(&argc, &argv, line);
|
||||
|
||||
/* Now reset the line to be all blanks up to
|
||||
PARAM_WIDTH so that we can start adding the
|
||||
description */
|
||||
|
||||
memset(line, ' ', PARAM_WIDTH);
|
||||
line[PARAM_WIDTH] = '\0';
|
||||
} else {
|
||||
|
||||
/* Add enough blanks to the end of the line so that we
|
||||
can start adding the description */
|
||||
|
||||
for (i = strlen(line); i < PARAM_WIDTH; ++i) {
|
||||
line[i] = ' ';
|
||||
}
|
||||
line[i] = '\0';
|
||||
}
|
||||
|
||||
/* Loop over adding the description to the array, breaking
|
||||
the string at most at MAX_WIDTH characters. We need a
|
||||
modifyable description (for simplicity), so strdup the
|
||||
clo_description (because it's likely a compiler
|
||||
constant, and may barf if we write temporary \0's in
|
||||
the middle). */
|
||||
|
||||
desc = strdup(option->clo_description);
|
||||
if (NULL == desc) {
|
||||
free(sorted);
|
||||
opal_mutex_unlock(&cmd->lcl_mutex);
|
||||
return strdup("");
|
||||
}
|
||||
start = desc;
|
||||
len = strlen(desc);
|
||||
do {
|
||||
|
||||
/* Trim off leading whitespace */
|
||||
|
||||
while (isspace(*start) && start < desc + len) {
|
||||
++start;
|
||||
}
|
||||
if (start >= desc + len) {
|
||||
break;
|
||||
}
|
||||
|
||||
/* Last line */
|
||||
|
||||
if (strlen(start) < (MAX_WIDTH - PARAM_WIDTH)) {
|
||||
strncat(line, start, sizeof(line) - 1);
|
||||
if (strlen(line) > PARAM_WIDTH) {
|
||||
opal_argv_append(&argc, &argv, line);
|
||||
break;
|
||||
|
||||
/* Now reset the line to be all blanks up to
|
||||
PARAM_WIDTH so that we can start adding the
|
||||
description */
|
||||
|
||||
memset(line, ' ', PARAM_WIDTH);
|
||||
line[PARAM_WIDTH] = '\0';
|
||||
} else {
|
||||
|
||||
/* Add enough blanks to the end of the line so that we
|
||||
can start adding the description */
|
||||
|
||||
for (i = strlen(line); i < PARAM_WIDTH; ++i) {
|
||||
line[i] = ' ';
|
||||
}
|
||||
line[i] = '\0';
|
||||
}
|
||||
|
||||
/* We have more than 1 line's worth left -- find this
|
||||
line's worth and add it to the array. Then reset
|
||||
and loop around to get the next line's worth. */
|
||||
/* Loop over adding the description to the array, breaking
|
||||
the string at most at MAX_WIDTH characters. We need a
|
||||
modifyable description (for simplicity), so strdup the
|
||||
clo_description (because it's likely a compiler
|
||||
constant, and may barf if we write temporary \0's in
|
||||
the middle). */
|
||||
|
||||
for (ptr = start + (MAX_WIDTH - PARAM_WIDTH);
|
||||
ptr > start; --ptr) {
|
||||
if (isspace(*ptr)) {
|
||||
*ptr = '\0';
|
||||
strncat(line, start, sizeof(line) - 1);
|
||||
opal_argv_append(&argc, &argv, line);
|
||||
desc = strdup(option->clo_description);
|
||||
if (NULL == desc) {
|
||||
free(sorted);
|
||||
opal_mutex_unlock(&cmd->lcl_mutex);
|
||||
return strdup("");
|
||||
}
|
||||
start = desc;
|
||||
len = strlen(desc);
|
||||
do {
|
||||
|
||||
start = ptr + 1;
|
||||
memset(line, ' ', PARAM_WIDTH);
|
||||
line[PARAM_WIDTH] = '\0';
|
||||
/* Trim off leading whitespace */
|
||||
|
||||
while (isspace(*start) && start < desc + len) {
|
||||
++start;
|
||||
}
|
||||
if (start >= desc + len) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/* If we got all the way back to the beginning of the
|
||||
string, then go forward looking for a whitespace
|
||||
and break there. */
|
||||
/* Last line */
|
||||
|
||||
if (strlen(start) < (MAX_WIDTH - PARAM_WIDTH)) {
|
||||
strncat(line, start, sizeof(line) - 1);
|
||||
opal_argv_append(&argc, &argv, line);
|
||||
break;
|
||||
}
|
||||
|
||||
/* We have more than 1 line's worth left -- find this
|
||||
line's worth and add it to the array. Then reset
|
||||
and loop around to get the next line's worth. */
|
||||
|
||||
if (ptr == start) {
|
||||
for (ptr = start + (MAX_WIDTH - PARAM_WIDTH);
|
||||
ptr < start + len; ++ptr) {
|
||||
ptr > start; --ptr) {
|
||||
if (isspace(*ptr)) {
|
||||
*ptr = '\0';
|
||||
|
||||
strncat(line, start, sizeof(line) - 1);
|
||||
opal_argv_append(&argc, &argv, line);
|
||||
|
||||
@ -689,17 +686,38 @@ char *opal_cmd_line_get_usage_msg(opal_cmd_line_t *cmd)
|
||||
}
|
||||
}
|
||||
|
||||
/* If we reached the end of the string with no
|
||||
whitespace, then just add it on and be done */
|
||||
/* If we got all the way back to the beginning of the
|
||||
string, then go forward looking for a whitespace
|
||||
and break there. */
|
||||
|
||||
if (ptr >= start + len) {
|
||||
strncat(line, start, sizeof(line) - 1);
|
||||
opal_argv_append(&argc, &argv, line);
|
||||
start = desc + len + 1;
|
||||
if (ptr == start) {
|
||||
for (ptr = start + (MAX_WIDTH - PARAM_WIDTH);
|
||||
ptr < start + len; ++ptr) {
|
||||
if (isspace(*ptr)) {
|
||||
*ptr = '\0';
|
||||
|
||||
strncat(line, start, sizeof(line) - 1);
|
||||
opal_argv_append(&argc, &argv, line);
|
||||
|
||||
start = ptr + 1;
|
||||
memset(line, ' ', PARAM_WIDTH);
|
||||
line[PARAM_WIDTH] = '\0';
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/* If we reached the end of the string with no
|
||||
whitespace, then just add it on and be done */
|
||||
|
||||
if (ptr >= start + len) {
|
||||
strncat(line, start, sizeof(line) - 1);
|
||||
opal_argv_append(&argc, &argv, line);
|
||||
start = desc + len + 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
} while (start < desc + len);
|
||||
free(desc);
|
||||
} while (start < desc + len);
|
||||
free(desc);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (NULL != argv) {
|
||||
@ -798,7 +816,7 @@ char *opal_cmd_line_get_param(opal_cmd_line_t *cmd, const char *opt, int inst,
|
||||
opal_list_get_end(&cmd->lcl_params) != item;
|
||||
item = opal_list_get_next(item)) {
|
||||
param = (cmd_line_param_t *) item;
|
||||
if (param->clp_option == option) {
|
||||
if (param->clp_argc > 0 && param->clp_option == option) {
|
||||
if (num_found == inst) {
|
||||
opal_mutex_unlock(&cmd->lcl_mutex);
|
||||
return param->clp_argv[idx];
|
||||
@ -872,6 +890,7 @@ static void option_constructor(cmd_line_option_t *o)
|
||||
o->clo_mca_param_env_var = NULL;
|
||||
o->clo_variable_dest = NULL;
|
||||
o->clo_variable_set = false;
|
||||
o->clo_otype = OPAL_CMD_LINE_OTYPE_NULL;
|
||||
}
|
||||
|
||||
|
||||
@ -915,7 +934,7 @@ static void cmd_line_constructor(opal_cmd_line_t *cmd)
|
||||
only thread that has this instance), there's no need to lock it
|
||||
right now. */
|
||||
|
||||
OBJ_CONSTRUCT(&cmd->lcl_mutex, opal_mutex_t);
|
||||
OBJ_CONSTRUCT(&cmd->lcl_mutex, opal_recursive_mutex_t);
|
||||
|
||||
/* Initialize the lists */
|
||||
|
||||
@ -1012,6 +1031,8 @@ static int make_opt(opal_cmd_line_t *cmd, opal_cmd_line_init_t *e)
|
||||
&option->clo_mca_param_env_var);
|
||||
}
|
||||
|
||||
option->clo_otype = e->ocl_otype;
|
||||
|
||||
/* Append the item, serializing thread access */
|
||||
|
||||
opal_mutex_lock(&cmd->lcl_mutex);
|
||||
@ -1307,3 +1328,54 @@ static int qsort_callback(const void *aa, const void *bb)
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Helper function to find the option type specified in the help
|
||||
* command.
|
||||
*/
|
||||
static opal_cmd_line_otype_t get_help_otype(opal_cmd_line_t *cmd)
|
||||
{
|
||||
/* Initialize to NULL, if it remains so, the user asked for
|
||||
"full" help output */
|
||||
opal_cmd_line_otype_t otype = OPAL_CMD_LINE_OTYPE_NULL;
|
||||
char *arg;
|
||||
|
||||
arg = opal_cmd_line_get_param(cmd, "help", 0, 0);
|
||||
|
||||
/* If not "help", check for "h" */
|
||||
if(NULL == arg) {
|
||||
arg = opal_cmd_line_get_param(cmd, "h", 0, 0);
|
||||
}
|
||||
|
||||
/* If arg is still NULL, give them the General info by default */
|
||||
if(NULL == arg) {
|
||||
arg = "general";
|
||||
}
|
||||
|
||||
if (0 == strcmp(arg, "debug")) {
|
||||
otype = OPAL_CMD_LINE_OTYPE_DEBUG;
|
||||
} else if (0 == strcmp(arg, "output")) {
|
||||
otype = OPAL_CMD_LINE_OTYPE_OUTPUT;
|
||||
} else if (0 == strcmp(arg, "input")) {
|
||||
otype = OPAL_CMD_LINE_OTYPE_INPUT;
|
||||
} else if (0 == strcmp(arg, "mapping")) {
|
||||
otype = OPAL_CMD_LINE_OTYPE_MAPPING;
|
||||
} else if (0 == strcmp(arg, "ranking")) {
|
||||
otype = OPAL_CMD_LINE_OTYPE_RANKING;
|
||||
} else if (0 == strcmp(arg, "binding")) {
|
||||
otype = OPAL_CMD_LINE_OTYPE_BINDING;
|
||||
} else if (0 == strcmp(arg, "devel")) {
|
||||
otype = OPAL_CMD_LINE_OTYPE_DEVEL;
|
||||
} else if (0 == strcmp(arg, "compatibility")) {
|
||||
otype = OPAL_CMD_LINE_OTYPE_COMPAT;
|
||||
} else if (0 == strcmp(arg, "launch")) {
|
||||
otype = OPAL_CMD_LINE_OTYPE_LAUNCH;
|
||||
} else if (0 == strcmp(arg, "dvm")) {
|
||||
otype = OPAL_CMD_LINE_OTYPE_DVM;
|
||||
} else if (0 == strcmp(arg, "general")) {
|
||||
otype = OPAL_CMD_LINE_OTYPE_GENERAL;
|
||||
}
|
||||
|
||||
return otype;
|
||||
}
|
||||
|
@ -12,7 +12,7 @@
|
||||
* All rights reserved.
|
||||
* Copyright (c) 2012 Cisco Systems, Inc. All rights reserved.
|
||||
* Copyright (c) 2015-2016 Intel, Inc. All rights reserved.
|
||||
* Copyright (c) 2016 Los Alamos National Security, LLC. All rights
|
||||
* Copyright (c) 2016-2017 Los Alamos National Security, LLC. All rights
|
||||
* reserved.
|
||||
* $COPYRIGHT$
|
||||
*
|
||||
@ -132,7 +132,7 @@ BEGIN_C_DECLS
|
||||
opal_object_t super;
|
||||
|
||||
/** Thread safety */
|
||||
opal_mutex_t lcl_mutex;
|
||||
opal_recursive_mutex_t lcl_mutex;
|
||||
|
||||
/** List of cmd_line_option_t's (defined internally) */
|
||||
opal_list_t lcl_options;
|
||||
@ -176,6 +176,32 @@ BEGIN_C_DECLS
|
||||
*/
|
||||
typedef enum opal_cmd_line_type_t opal_cmd_line_type_t;
|
||||
|
||||
/**
|
||||
* Command line option type, for use in
|
||||
* mpirun --help output.
|
||||
*/
|
||||
enum opal_cmd_line_otype_t {
|
||||
OPAL_CMD_LINE_OTYPE_GENERAL,
|
||||
OPAL_CMD_LINE_OTYPE_DEBUG,
|
||||
OPAL_CMD_LINE_OTYPE_OUTPUT,
|
||||
OPAL_CMD_LINE_OTYPE_INPUT,
|
||||
OPAL_CMD_LINE_OTYPE_MAPPING,
|
||||
OPAL_CMD_LINE_OTYPE_RANKING,
|
||||
OPAL_CMD_LINE_OTYPE_BINDING,
|
||||
OPAL_CMD_LINE_OTYPE_DEVEL,
|
||||
OPAL_CMD_LINE_OTYPE_COMPAT, /* Backwards compatibility */
|
||||
OPAL_CMD_LINE_OTYPE_LAUNCH,
|
||||
OPAL_CMD_LINE_OTYPE_DVM,
|
||||
OPAL_CMD_LINE_OTYPE_UNSUPPORTED,
|
||||
OPAL_CMD_LINE_OTYPE_NULL
|
||||
};
|
||||
/**
|
||||
* \internal
|
||||
*
|
||||
* Convenience typedef
|
||||
*/
|
||||
typedef enum opal_cmd_line_otype_t opal_cmd_line_otype_t;
|
||||
|
||||
/**
|
||||
* Datatype used to construct a command line handle; see
|
||||
* opal_cmd_line_create().
|
||||
@ -207,6 +233,9 @@ BEGIN_C_DECLS
|
||||
/** Description of the command line option, to be used with
|
||||
opal_cmd_line_get_usage_msg(). */
|
||||
const char *ocl_description;
|
||||
|
||||
/** Category for mpirun --help output */
|
||||
opal_cmd_line_otype_t ocl_otype;
|
||||
};
|
||||
/**
|
||||
* \internal
|
||||
|
@ -9,7 +9,7 @@
|
||||
* University of Stuttgart. All rights reserved.
|
||||
* Copyright (c) 2004-2005 The Regents of the University of California.
|
||||
* All rights reserved.
|
||||
* Copyright (c) 2006-2013 Los Alamos National Security, LLC.
|
||||
* Copyright (c) 2006-2017 Los Alamos National Security, LLC.
|
||||
* All rights reserved.
|
||||
* Copyright (c) 2009-2016 Cisco Systems, Inc. All rights reserved.
|
||||
* Copyright (c) 2011-2017 Oak Ridge National Labs. All rights reserved.
|
||||
@ -75,96 +75,109 @@ orte_schizo_base_module_t orte_schizo_ompi_module = {
|
||||
|
||||
static opal_cmd_line_init_t cmd_line_init[] = {
|
||||
/* Various "obvious" options */
|
||||
{ NULL, 'h', NULL, "help", 0,
|
||||
&orte_cmd_options.help, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"This help message" },
|
||||
{ NULL, 'h', NULL, "help", 1,
|
||||
&orte_cmd_options.help, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Help messages. Argument options are: general (Defaults to this option), debug, output, input, mapping, ranking, binding, devel (arguments usefull to OMPI Developers), compatibility (arguments supported for backwards compatibility) launch (arguments to modify launch options), and dvm (Distributed Virtual Machine arguments", OPAL_CMD_LINE_OTYPE_GENERAL },
|
||||
{ NULL, 'V', NULL, "version", 0,
|
||||
&orte_cmd_options.version, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Print version and exit" },
|
||||
"Print version and exit", OPAL_CMD_LINE_OTYPE_GENERAL },
|
||||
{ NULL, 'v', NULL, "verbose", 0,
|
||||
&orte_cmd_options.verbose, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Be verbose" },
|
||||
"Be verbose", OPAL_CMD_LINE_OTYPE_GENERAL },
|
||||
{ "orte_execute_quiet", 'q', NULL, "quiet", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Suppress helpful messages" },
|
||||
"Suppress helpful messages", OPAL_CMD_LINE_OTYPE_GENERAL },
|
||||
{ NULL, '\0', "report-pid", "report-pid", 1,
|
||||
&orte_cmd_options.report_pid, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Printout pid on stdout [-], stderr [+], or a file [anything else]" },
|
||||
"Printout pid on stdout [-], stderr [+], or a file [anything else]",
|
||||
OPAL_CMD_LINE_OTYPE_GENERAL },
|
||||
{ NULL, '\0', "report-uri", "report-uri", 1,
|
||||
&orte_cmd_options.report_uri, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Printout URI on stdout [-], stderr [+], or a file [anything else]" },
|
||||
"Printout URI on stdout [-], stderr [+], or a file [anything else]",
|
||||
OPAL_CMD_LINE_OTYPE_GENERAL },
|
||||
|
||||
/* testing options */
|
||||
{ NULL, '\0', "timeout", "timeout", 1,
|
||||
&orte_cmd_options.timeout, OPAL_CMD_LINE_TYPE_INT,
|
||||
"Timeout the job after the specified number of seconds" },
|
||||
"Timeout the job after the specified number of seconds",
|
||||
OPAL_CMD_LINE_OTYPE_DEBUG },
|
||||
{ NULL, '\0', "report-state-on-timeout", "report-state-on-timeout", 0,
|
||||
&orte_cmd_options.report_state_on_timeout, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Report all job and process states upon timeout" },
|
||||
"Report all job and process states upon timeout",
|
||||
OPAL_CMD_LINE_OTYPE_DEBUG },
|
||||
{ NULL, '\0', "get-stack-traces", "get-stack-traces", 0,
|
||||
&orte_cmd_options.get_stack_traces, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Get stack traces of all application procs on timeout" },
|
||||
"Get stack traces of all application procs on timeout",
|
||||
OPAL_CMD_LINE_OTYPE_DEBUG },
|
||||
|
||||
|
||||
/* exit status reporting */
|
||||
{ "orte_report_child_jobs_separately", '\0', "report-child-jobs-separately", "report-child-jobs-separately", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Return the exit status of the primary job only" },
|
||||
"Return the exit status of the primary job only", OPAL_CMD_LINE_OTYPE_OUTPUT },
|
||||
|
||||
/* uri of the dvm, or at least where to get it */
|
||||
{ NULL, '\0', "hnp", "hnp", 1,
|
||||
&orte_cmd_options.hnp, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Specify the URI of the HNP, or the name of the file (specified as file:filename) that contains that info" },
|
||||
"Specify the URI of the HNP, or the name of the file (specified as file:filename) that contains that info",
|
||||
OPAL_CMD_LINE_OTYPE_DVM },
|
||||
|
||||
/* select XML output */
|
||||
{ "orte_xml_output", '\0', "xml", "xml", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Provide all output in XML format" },
|
||||
"Provide all output in XML format", OPAL_CMD_LINE_OTYPE_OUTPUT },
|
||||
{ "orte_xml_file", '\0', "xml-file", "xml-file", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Provide all output in XML format to the specified file" },
|
||||
"Provide all output in XML format to the specified file", OPAL_CMD_LINE_OTYPE_OUTPUT },
|
||||
|
||||
/* tag output */
|
||||
{ "orte_tag_output", '\0', "tag-output", "tag-output", 0,
|
||||
&orte_cmd_options.tag_output, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Tag all output with [job,rank]" },
|
||||
"Tag all output with [job,rank]", OPAL_CMD_LINE_OTYPE_OUTPUT },
|
||||
{ "orte_timestamp_output", '\0', "timestamp-output", "timestamp-output", 0,
|
||||
&orte_cmd_options.timestamp_output, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Timestamp all application process output" },
|
||||
"Timestamp all application process output", OPAL_CMD_LINE_OTYPE_OUTPUT },
|
||||
{ "orte_output_filename", '\0', "output-filename", "output-filename", 1,
|
||||
&orte_cmd_options.output_filename, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Redirect output from application processes into filename/job/rank/std[out,err,diag]" },
|
||||
"Redirect output from application processes into filename/job/rank/std[out,err,diag]",
|
||||
OPAL_CMD_LINE_OTYPE_OUTPUT },
|
||||
{ NULL, '\0', "merge-stderr-to-stdout", "merge-stderr-to-stdout", 0,
|
||||
&orte_cmd_options.merge, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Merge stderr to stdout for each process"},
|
||||
"Merge stderr to stdout for each process", OPAL_CMD_LINE_OTYPE_OUTPUT },
|
||||
{ "orte_xterm", '\0', "xterm", "xterm", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Create a new xterm window and display output from the specified ranks there" },
|
||||
"Create a new xterm window and display output from the specified ranks there",
|
||||
OPAL_CMD_LINE_OTYPE_OUTPUT },
|
||||
|
||||
/* select stdin option */
|
||||
{ NULL, '\0', "stdin", "stdin", 1,
|
||||
&orte_cmd_options.stdin_target, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Specify procs to receive stdin [rank, all, none] (default: 0, indicating rank 0)" },
|
||||
"Specify procs to receive stdin [rank, all, none] (default: 0, indicating rank 0)",
|
||||
OPAL_CMD_LINE_OTYPE_INPUT },
|
||||
|
||||
/* request that argv[0] be indexed */
|
||||
{ NULL, '\0', "index-argv-by-rank", "index-argv-by-rank", 0,
|
||||
&orte_cmd_options.index_argv, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Uniquely index argv[0] for each process using its rank" },
|
||||
"Uniquely index argv[0] for each process using its rank",
|
||||
OPAL_CMD_LINE_OTYPE_INPUT },
|
||||
|
||||
/* Specify the launch agent to be used */
|
||||
{ "orte_launch_agent", '\0', "launch-agent", "launch-agent", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Command used to start processes on remote nodes (default: orted)" },
|
||||
"Command used to start processes on remote nodes (default: orted)",
|
||||
OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
|
||||
/* Preload the binary on the remote machine */
|
||||
{ NULL, 's', NULL, "preload-binary", 0,
|
||||
&orte_cmd_options.preload_binaries, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Preload the binary on the remote machine before starting the remote process." },
|
||||
"Preload the binary on the remote machine before starting the remote process.",
|
||||
OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
|
||||
/* Preload files on the remote machine */
|
||||
{ NULL, '\0', NULL, "preload-files", 1,
|
||||
&orte_cmd_options.preload_files, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Preload the comma separated list of files to the remote machines current working directory before starting the remote process." },
|
||||
"Preload the comma separated list of files to the remote machines current working directory before starting the remote process.",
|
||||
OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
|
||||
#if OPAL_ENABLE_FT_CR == 1
|
||||
/* Tell SStore to preload a snapshot before launch */
|
||||
@ -176,248 +189,287 @@ static opal_cmd_line_init_t cmd_line_init[] = {
|
||||
/* Use an appfile */
|
||||
{ NULL, '\0', NULL, "app", 1,
|
||||
&orte_cmd_options.appfile, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Provide an appfile; ignore all other command line options" },
|
||||
"Provide an appfile; ignore all other command line options",
|
||||
OPAL_CMD_LINE_OTYPE_GENERAL },
|
||||
|
||||
/* Number of processes; -c, -n, --n, -np, and --np are all
|
||||
synonyms */
|
||||
{ NULL, 'c', "np", "np", 1,
|
||||
&orte_cmd_options.num_procs, OPAL_CMD_LINE_TYPE_INT,
|
||||
"Number of processes to run" },
|
||||
"Number of processes to run", OPAL_CMD_LINE_OTYPE_GENERAL },
|
||||
{ NULL, '\0', "n", "n", 1,
|
||||
&orte_cmd_options.num_procs, OPAL_CMD_LINE_TYPE_INT,
|
||||
"Number of processes to run" },
|
||||
"Number of processes to run", OPAL_CMD_LINE_OTYPE_GENERAL },
|
||||
|
||||
/* maximum size of VM - typically used to subdivide an allocation */
|
||||
{ "orte_max_vm_size", '\0', "max-vm-size", "max-vm-size", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_INT,
|
||||
"Number of processes to run" },
|
||||
"Number of processes to run", OPAL_CMD_LINE_OTYPE_DVM },
|
||||
|
||||
/* Set a hostfile */
|
||||
{ NULL, '\0', "hostfile", "hostfile", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Provide a hostfile" },
|
||||
"Provide a hostfile", OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
{ NULL, '\0', "machinefile", "machinefile", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Provide a hostfile" },
|
||||
"Provide a hostfile", OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
{ "orte_default_hostfile", '\0', "default-hostfile", "default-hostfile", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Provide a default hostfile" },
|
||||
"Provide a default hostfile", OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
{ "opal_if_do_not_resolve", '\0', "do-not-resolve", "do-not-resolve", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Do not attempt to resolve interfaces" },
|
||||
"Do not attempt to resolve interfaces", OPAL_CMD_LINE_OTYPE_DEVEL },
|
||||
|
||||
/* uri of PMIx publish/lookup server, or at least where to get it */
|
||||
{ "pmix_server_uri", '\0', "ompi-server", "ompi-server", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Specify the URI of the publish/lookup server, or the name of the file (specified as file:filename) that contains that info" },
|
||||
"Specify the URI of the publish/lookup server, or the name of the file (specified as file:filename) that contains that info",
|
||||
OPAL_CMD_LINE_OTYPE_DVM },
|
||||
|
||||
{ "carto_file_path", '\0', "cf", "cartofile", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Provide a cartography file" },
|
||||
"Provide a cartography file", OPAL_CMD_LINE_OTYPE_MAPPING },
|
||||
|
||||
{ "orte_rankfile", '\0', "rf", "rankfile", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Provide a rankfile file" },
|
||||
"Provide a rankfile file", OPAL_CMD_LINE_OTYPE_MAPPING },
|
||||
|
||||
/* Export environment variables; potentially used multiple times,
|
||||
so it does not make sense to set into a variable */
|
||||
{ NULL, 'x', NULL, NULL, 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_NULL,
|
||||
"Export an environment variable, optionally specifying a value (e.g., \"-x foo\" exports the environment variable foo and takes its value from the current environment; \"-x foo=bar\" exports the environment variable name foo and sets its value to \"bar\" in the started processes)" },
|
||||
"Export an environment variable, optionally specifying a value (e.g., \"-x foo\" exports the environment variable foo and takes its value from the current environment; \"-x foo=bar\" exports the environment variable name foo and sets its value to \"bar\" in the started processes)", OPAL_CMD_LINE_OTYPE_GENERAL },
|
||||
|
||||
/* Mapping controls */
|
||||
{ "rmaps_base_display_map", '\0', "display-map", "display-map", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Display the process map just before launch"},
|
||||
"Display the process map just before launch", OPAL_CMD_LINE_OTYPE_DEBUG },
|
||||
{ "rmaps_base_display_devel_map", '\0', "display-devel-map", "display-devel-map", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Display a detailed process map (mostly intended for developers) just before launch"},
|
||||
"Display a detailed process map (mostly intended for developers) just before launch",
|
||||
OPAL_CMD_LINE_OTYPE_DEVEL },
|
||||
{ "rmaps_base_display_topo_with_map", '\0', "display-topo", "display-topo", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Display the topology as part of the process map (mostly intended for developers) just before launch"},
|
||||
"Display the topology as part of the process map (mostly intended for developers) just before launch",
|
||||
OPAL_CMD_LINE_OTYPE_DEVEL },
|
||||
{ "rmaps_base_display_diffable_map", '\0', "display-diffable-map", "display-diffable-map", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Display a diffable process map (mostly intended for developers) just before launch"},
|
||||
"Display a diffable process map (mostly intended for developers) just before launch",
|
||||
OPAL_CMD_LINE_OTYPE_DEVEL },
|
||||
{ NULL, 'H', "host", "host", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"List of hosts to invoke processes on" },
|
||||
"List of hosts to invoke processes on",
|
||||
OPAL_CMD_LINE_OTYPE_MAPPING },
|
||||
{ "rmaps_base_no_schedule_local", '\0', "nolocal", "nolocal", 0,
|
||||
&orte_cmd_options.nolocal, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Do not run any MPI applications on the local node" },
|
||||
"Do not run any MPI applications on the local node",
|
||||
OPAL_CMD_LINE_OTYPE_MAPPING },
|
||||
{ "rmaps_base_no_oversubscribe", '\0', "nooversubscribe", "nooversubscribe", 0,
|
||||
&orte_cmd_options.no_oversubscribe, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Nodes are not to be oversubscribed, even if the system supports such operation"},
|
||||
"Nodes are not to be oversubscribed, even if the system supports such operation",
|
||||
OPAL_CMD_LINE_OTYPE_MAPPING },
|
||||
{ "rmaps_base_oversubscribe", '\0', "oversubscribe", "oversubscribe", 0,
|
||||
&orte_cmd_options.oversubscribe, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Nodes are allowed to be oversubscribed, even on a managed system, and overloading of processing elements"},
|
||||
"Nodes are allowed to be oversubscribed, even on a managed system, and overloading of processing elements",
|
||||
OPAL_CMD_LINE_OTYPE_MAPPING },
|
||||
{ "rmaps_base_cpus_per_rank", '\0', "cpus-per-proc", "cpus-per-proc", 1,
|
||||
&orte_cmd_options.cpus_per_proc, OPAL_CMD_LINE_TYPE_INT,
|
||||
"Number of cpus to use for each process [default=1]" },
|
||||
"Number of cpus to use for each process [default=1]",
|
||||
OPAL_CMD_LINE_OTYPE_MAPPING },
|
||||
{ "rmaps_base_cpus_per_rank", '\0', "cpus-per-rank", "cpus-per-rank", 1,
|
||||
&orte_cmd_options.cpus_per_proc, OPAL_CMD_LINE_TYPE_INT,
|
||||
"Synonym for cpus-per-proc" },
|
||||
"Synonym for cpus-per-proc", OPAL_CMD_LINE_OTYPE_MAPPING },
|
||||
|
||||
/* backward compatiblity */
|
||||
{ "rmaps_base_bycore", '\0', "bycore", "bycore", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Whether to map and rank processes round-robin by core" },
|
||||
"Whether to map and rank processes round-robin by core",
|
||||
OPAL_CMD_LINE_OTYPE_COMPAT },
|
||||
{ "rmaps_base_bynode", '\0', "bynode", "bynode", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Whether to map and rank processes round-robin by node" },
|
||||
"Whether to map and rank processes round-robin by node",
|
||||
OPAL_CMD_LINE_OTYPE_COMPAT },
|
||||
{ "rmaps_base_byslot", '\0', "byslot", "byslot", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Whether to map and rank processes round-robin by slot" },
|
||||
"Whether to map and rank processes round-robin by slot",
|
||||
OPAL_CMD_LINE_OTYPE_COMPAT },
|
||||
|
||||
/* Nperxxx options that do not require topology and are always
|
||||
* available - included for backwards compatibility
|
||||
*/
|
||||
{ "rmaps_ppr_pernode", '\0', "pernode", "pernode", 0,
|
||||
&orte_cmd_options.pernode, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Launch one process per available node" },
|
||||
"Launch one process per available node",
|
||||
OPAL_CMD_LINE_OTYPE_COMPAT },
|
||||
{ "rmaps_ppr_n_pernode", '\0', "npernode", "npernode", 1,
|
||||
&orte_cmd_options.npernode, OPAL_CMD_LINE_TYPE_INT,
|
||||
"Launch n processes per node on all allocated nodes" },
|
||||
&orte_cmd_options.npernode, OPAL_CMD_LINE_TYPE_INT,
|
||||
"Launch n processes per node on all allocated nodes",
|
||||
OPAL_CMD_LINE_OTYPE_COMPAT },
|
||||
{ "rmaps_ppr_n_pernode", '\0', "N", NULL, 1,
|
||||
&orte_cmd_options.npernode, OPAL_CMD_LINE_TYPE_INT,
|
||||
"Launch n processes per node on all allocated nodes (synonym for npernode)" },
|
||||
&orte_cmd_options.npernode, OPAL_CMD_LINE_TYPE_INT,
|
||||
"Launch n processes per node on all allocated nodes (synonym for npernode)",
|
||||
OPAL_CMD_LINE_OTYPE_GENERAL },
|
||||
|
||||
/* declare hardware threads as independent cpus */
|
||||
{ "hwloc_base_use_hwthreads_as_cpus", '\0', "use-hwthread-cpus", "use-hwthread-cpus", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Use hardware threads as independent cpus" },
|
||||
"Use hardware threads as independent cpus", OPAL_CMD_LINE_OTYPE_MAPPING },
|
||||
|
||||
/* include npersocket for backwards compatibility */
|
||||
{ "rmaps_ppr_n_persocket", '\0', "npersocket", "npersocket", 1,
|
||||
&orte_cmd_options.npersocket, OPAL_CMD_LINE_TYPE_INT,
|
||||
"Launch n processes per socket on all allocated nodes" },
|
||||
"Launch n processes per socket on all allocated nodes",
|
||||
OPAL_CMD_LINE_OTYPE_COMPAT },
|
||||
|
||||
/* Mapping options */
|
||||
{ "rmaps_base_mapping_policy", '\0', NULL, "map-by", 1,
|
||||
&orte_cmd_options.mapping_policy, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Mapping Policy [slot | hwthread | core | socket (default) | numa | board | node]" },
|
||||
"Mapping Policy [slot | hwthread | core | socket (default) | numa | board | node]",
|
||||
OPAL_CMD_LINE_OTYPE_MAPPING },
|
||||
|
||||
/* Ranking options */
|
||||
{ "rmaps_base_ranking_policy", '\0', NULL, "rank-by", 1,
|
||||
&orte_cmd_options.ranking_policy, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Ranking Policy [slot (default) | hwthread | core | socket | numa | board | node]" },
|
||||
"Ranking Policy [slot (default) | hwthread | core | socket | numa | board | node]",
|
||||
OPAL_CMD_LINE_OTYPE_RANKING },
|
||||
|
||||
/* Binding options */
|
||||
{ "hwloc_base_binding_policy", '\0', NULL, "bind-to", 1,
|
||||
&orte_cmd_options.binding_policy, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Policy for binding processes. Allowed values: none, hwthread, core, l1cache, l2cache, l3cache, socket, numa, board (\"none\" is the default when oversubscribed, \"core\" is the default when np<=2, and \"socket\" is the default when np>2). Allowed qualifiers: overload-allowed, if-supported" },
|
||||
"Policy for binding processes. Allowed values: none, hwthread, core, l1cache, l2cache, l3cache, socket, numa, board (\"none\" is the default when oversubscribed, \"core\" is the default when np<=2, and \"socket\" is the default when np>2). Allowed qualifiers: overload-allowed, if-supported", OPAL_CMD_LINE_OTYPE_BINDING },
|
||||
|
||||
/* backward compatiblity */
|
||||
{ "hwloc_base_bind_to_core", '\0', "bind-to-core", "bind-to-core", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Bind processes to cores" },
|
||||
"Bind processes to cores", OPAL_CMD_LINE_OTYPE_COMPAT },
|
||||
{ "hwloc_base_bind_to_socket", '\0', "bind-to-socket", "bind-to-socket", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Bind processes to sockets" },
|
||||
"Bind processes to sockets", OPAL_CMD_LINE_OTYPE_COMPAT },
|
||||
|
||||
{ "hwloc_base_report_bindings", '\0', "report-bindings", "report-bindings", 0,
|
||||
&orte_cmd_options.report_bindings, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Whether to report process bindings to stderr" },
|
||||
"Whether to report process bindings to stderr",
|
||||
OPAL_CMD_LINE_OTYPE_BINDING },
|
||||
|
||||
/* slot list option */
|
||||
{ "hwloc_base_cpu_list", '\0', "cpu-list", "cpu-list", 1,
|
||||
&orte_cmd_options.cpu_list, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"List of processor IDs to bind processes to [default=NULL]"},
|
||||
"List of processor IDs to bind processes to [default=NULL]",
|
||||
OPAL_CMD_LINE_OTYPE_BINDING },
|
||||
|
||||
/* generalized pattern mapping option */
|
||||
{ "rmaps_ppr_pattern", '\0', NULL, "ppr", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Comma-separated list of number of processes on a given resource type [default: none]" },
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Comma-separated list of number of processes on a given resource type [default: none]",
|
||||
OPAL_CMD_LINE_OTYPE_MAPPING },
|
||||
|
||||
/* Allocation options */
|
||||
{ "orte_display_alloc", '\0', "display-allocation", "display-allocation", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Display the allocation being used by this job"},
|
||||
"Display the allocation being used by this job", OPAL_CMD_LINE_OTYPE_DEBUG },
|
||||
{ "orte_display_devel_alloc", '\0', "display-devel-allocation", "display-devel-allocation", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Display a detailed list (mostly intended for developers) of the allocation being used by this job"},
|
||||
"Display a detailed list (mostly intended for developers) of the allocation being used by this job",
|
||||
OPAL_CMD_LINE_OTYPE_DEVEL },
|
||||
{ "hwloc_base_cpu_set", '\0', "cpu-set", "cpu-set", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Comma-separated list of ranges specifying logical cpus allocated to this job [default: none]"},
|
||||
"Comma-separated list of ranges specifying logical cpus allocated to this job [default: none]",
|
||||
OPAL_CMD_LINE_OTYPE_DEBUG },
|
||||
|
||||
/* mpiexec-like arguments */
|
||||
{ NULL, '\0', "wdir", "wdir", 1,
|
||||
&orte_cmd_options.wdir, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Set the working directory of the started processes" },
|
||||
"Set the working directory of the started processes",
|
||||
OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
{ NULL, '\0', "wd", "wd", 1,
|
||||
&orte_cmd_options.wdir, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Synonym for --wdir" },
|
||||
"Synonym for --wdir", OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
{ NULL, '\0', "set-cwd-to-session-dir", "set-cwd-to-session-dir", 0,
|
||||
&orte_cmd_options.set_cwd_to_session_dir, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Set the working directory of the started processes to their session directory" },
|
||||
"Set the working directory of the started processes to their session directory",
|
||||
OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
{ NULL, '\0', "path", "path", 1,
|
||||
&orte_cmd_options.path, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"PATH to be used to look for executables to start processes" },
|
||||
"PATH to be used to look for executables to start processes",
|
||||
OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
|
||||
/* User-level debugger arguments */
|
||||
{ NULL, '\0', "tv", "tv", 0,
|
||||
&orte_cmd_options.debugger, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Deprecated backwards compatibility flag; synonym for \"--debug\"" },
|
||||
"Deprecated backwards compatibility flag; synonym for \"--debug\"",
|
||||
OPAL_CMD_LINE_OTYPE_DEBUG },
|
||||
{ NULL, '\0', "debug", "debug", 0,
|
||||
&orte_cmd_options.debugger, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Invoke the user-level debugger indicated by the orte_base_user_debugger MCA parameter" },
|
||||
"Invoke the user-level debugger indicated by the orte_base_user_debugger MCA parameter",
|
||||
OPAL_CMD_LINE_OTYPE_DEBUG },
|
||||
{ "orte_base_user_debugger", '\0', "debugger", "debugger", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Sequence of debuggers to search for when \"--debug\" is used" },
|
||||
"Sequence of debuggers to search for when \"--debug\" is used",
|
||||
OPAL_CMD_LINE_OTYPE_DEBUG },
|
||||
{ "orte_output_debugger_proctable", '\0', "output-proctable", "output-proctable", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Output the debugger proctable after launch" },
|
||||
"Output the debugger proctable after launch",
|
||||
OPAL_CMD_LINE_OTYPE_DEBUG },
|
||||
|
||||
/* OpenRTE arguments */
|
||||
{ "orte_debug", 'd', "debug-devel", "debug-devel", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Enable debugging of OpenRTE" },
|
||||
"Enable debugging of OpenRTE", OPAL_CMD_LINE_OTYPE_DEVEL },
|
||||
|
||||
{ "orte_debug_daemons", '\0', "debug-daemons", "debug-daemons", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_INT,
|
||||
"Enable debugging of any OpenRTE daemons used by this application" },
|
||||
"Enable debugging of any OpenRTE daemons used by this application",
|
||||
OPAL_CMD_LINE_OTYPE_DEVEL },
|
||||
|
||||
{ "orte_debug_daemons_file", '\0', "debug-daemons-file", "debug-daemons-file", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Enable debugging of any OpenRTE daemons used by this application, storing output in files" },
|
||||
"Enable debugging of any OpenRTE daemons used by this application, storing output in files",
|
||||
OPAL_CMD_LINE_OTYPE_DEVEL },
|
||||
|
||||
{ "orte_leave_session_attached", '\0', "leave-session-attached", "leave-session-attached", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Enable debugging of OpenRTE" },
|
||||
"Enable debugging of OpenRTE", OPAL_CMD_LINE_OTYPE_DEBUG },
|
||||
|
||||
{ "orte_do_not_launch", '\0', "do-not-launch", "do-not-launch", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Perform all necessary operations to prepare to launch the application, but do not actually launch it" },
|
||||
"Perform all necessary operations to prepare to launch the application, but do not actually launch it",
|
||||
OPAL_CMD_LINE_OTYPE_DEVEL },
|
||||
|
||||
{ NULL, '\0', NULL, "prefix", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Prefix where Open MPI is installed on remote nodes" },
|
||||
"Prefix where Open MPI is installed on remote nodes",
|
||||
OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
{ NULL, '\0', NULL, "noprefix", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Disable automatic --prefix behavior" },
|
||||
"Disable automatic --prefix behavior",
|
||||
OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
|
||||
{ "orte_report_launch_progress", '\0', "show-progress", "show-progress", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Output a brief periodic report on launch progress" },
|
||||
"Output a brief periodic report on launch progress",
|
||||
OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
|
||||
{ "orte_use_regexp", '\0', "use-regexp", "use-regexp", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Use regular expressions for launch" },
|
||||
"Use regular expressions for launch", OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
|
||||
{ "orte_report_events", '\0', "report-events", "report-events", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Report events to a tool listening at the specified URI" },
|
||||
"Report events to a tool listening at the specified URI", OPAL_CMD_LINE_OTYPE_DEBUG },
|
||||
|
||||
{ "orte_enable_recovery", '\0', "enable-recovery", "enable-recovery", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Enable recovery from process failure [Default = disabled]" },
|
||||
"Enable recovery from process failure [Default = disabled]",
|
||||
OPAL_CMD_LINE_OTYPE_UNSUPPORTED },
|
||||
|
||||
{ "orte_max_restarts", '\0', "max-restarts", "max-restarts", 1,
|
||||
NULL, OPAL_CMD_LINE_TYPE_INT,
|
||||
"Max number of times to restart a failed process" },
|
||||
"Max number of times to restart a failed process",
|
||||
OPAL_CMD_LINE_OTYPE_UNSUPPORTED },
|
||||
|
||||
{ NULL, '\0', "continuous", "continuous", 0,
|
||||
&orte_cmd_options.continuous, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Job is to run until explicitly terminated" },
|
||||
"Job is to run until explicitly terminated", OPAL_CMD_LINE_OTYPE_DEBUG },
|
||||
|
||||
#if OPAL_ENABLE_CRDEBUG == 1
|
||||
{ "opal_cr_enable_crdebug", '\0', "crdebug", "crdebug", 0,
|
||||
@ -427,28 +479,33 @@ static opal_cmd_line_init_t cmd_line_init[] = {
|
||||
|
||||
{ NULL, '\0', "disable-recovery", "disable-recovery", 0,
|
||||
&orte_cmd_options.disable_recovery, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Disable recovery (resets all recovery options to off)" },
|
||||
"Disable recovery (resets all recovery options to off)",
|
||||
OPAL_CMD_LINE_OTYPE_UNSUPPORTED },
|
||||
|
||||
{ "orte_no_vm", '\0', "novm", "novm", 0,
|
||||
NULL, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Execute without creating an allocation-spanning virtual machine (only start daemons on nodes hosting application procs)" },
|
||||
"Execute without creating an allocation-spanning virtual machine (only start daemons on nodes hosting application procs)",
|
||||
OPAL_CMD_LINE_OTYPE_DVM },
|
||||
|
||||
{ NULL, '\0', "allow-run-as-root", "allow-run-as-root", 0,
|
||||
&orte_cmd_options.run_as_root, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Allow execution as root (STRONGLY DISCOURAGED)" },
|
||||
"Allow execution as root (STRONGLY DISCOURAGED)",
|
||||
OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
|
||||
{ NULL, '\0', "personality", "personality", 1,
|
||||
&orte_cmd_options.personality, OPAL_CMD_LINE_TYPE_STRING,
|
||||
"Comma-separated list of programming model, languages, and containers being used (default=\"ompi\")" },
|
||||
"Comma-separated list of programming model, languages, and containers being used (default=\"ompi\")",
|
||||
OPAL_CMD_LINE_OTYPE_LAUNCH },
|
||||
|
||||
{ NULL, '\0', "dvm", "dvm", 0,
|
||||
&orte_cmd_options.create_dvm, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Create a persistent distributed virtual machine (DVM)" },
|
||||
"Create a persistent distributed virtual machine (DVM)",
|
||||
OPAL_CMD_LINE_OTYPE_DVM },
|
||||
|
||||
/* tell the dvm to terminate */
|
||||
{ NULL, '\0', "terminate", "terminate", 0,
|
||||
&orte_cmd_options.terminate_dvm, OPAL_CMD_LINE_TYPE_BOOL,
|
||||
"Terminate the DVM" },
|
||||
"Terminate the DVM", OPAL_CMD_LINE_OTYPE_DVM },
|
||||
|
||||
/* fwd mpirun port */
|
||||
{ "orte_fwd_mpirun_port", '\0', "fwd-mpirun-port", "fwd-mpirun-port", 0,
|
||||
|
@ -12,7 +12,7 @@
|
||||
* All rights reserved.
|
||||
* Copyright (c) 2006-2017 Cisco Systems, Inc. All rights reserved
|
||||
* Copyright (c) 2007-2009 Sun Microsystems, Inc. All rights reserved.
|
||||
* Copyright (c) 2007-2016 Los Alamos National Security, LLC. All rights
|
||||
* Copyright (c) 2007-2017 Los Alamos National Security, LLC. All rights
|
||||
* reserved.
|
||||
* Copyright (c) 2013-2017 Intel, Inc. All rights reserved.
|
||||
* Copyright (c) 2015-2017 Research Organization for Information Science
|
||||
@ -153,6 +153,7 @@ static void build_debugger_args(orte_app_context_t *debugger);
|
||||
static void open_fifo (void);
|
||||
static void run_debugger(char *basename, opal_cmd_line_t *cmd_line,
|
||||
int argc, char *argv[], int num_procs);
|
||||
static void print_help(void);
|
||||
|
||||
/* instance the standard MPIR interfaces */
|
||||
#define MPIR_MAX_PATH_LENGTH 512
|
||||
@ -355,24 +356,9 @@ int orte_submit_init(int argc, char *argv[],
|
||||
}
|
||||
|
||||
/* Check for help request */
|
||||
if (orte_cmd_options.help) {
|
||||
char *str, *args = NULL;
|
||||
char *project_name = NULL;
|
||||
if (0 == strcmp(orte_basename, "mpirun")) {
|
||||
project_name = "Open MPI";
|
||||
} else {
|
||||
project_name = "OpenRTE";
|
||||
}
|
||||
args = opal_cmd_line_get_usage_msg(orte_cmd_line);
|
||||
str = opal_show_help_string("help-orterun.txt", "orterun:usage", false,
|
||||
orte_basename, project_name, OPAL_VERSION,
|
||||
orte_basename, args,
|
||||
PACKAGE_BUGREPORT);
|
||||
if (NULL != str) {
|
||||
printf("%s", str);
|
||||
free(str);
|
||||
}
|
||||
free(args);
|
||||
if (NULL != orte_cmd_options.help) {
|
||||
print_help();
|
||||
|
||||
/* If someone asks for help, that should be all we do */
|
||||
exit(0);
|
||||
}
|
||||
@ -589,6 +575,27 @@ int orte_submit_init(int argc, char *argv[],
|
||||
return ORTE_SUCCESS;
|
||||
}
|
||||
|
||||
static void print_help()
|
||||
{
|
||||
char *str = NULL, *args;
|
||||
char *project_name = NULL;
|
||||
|
||||
if (0 == strcmp(orte_basename, "mpirun")) {
|
||||
project_name = "Open MPI";
|
||||
} else {
|
||||
project_name = "OpenRTE";
|
||||
}
|
||||
args = opal_cmd_line_get_usage_msg(orte_cmd_line);
|
||||
str = opal_show_help_string("help-orterun.txt", "orterun:usage", false,
|
||||
orte_basename, project_name, OPAL_VERSION,
|
||||
orte_basename, args,
|
||||
PACKAGE_BUGREPORT);
|
||||
if (NULL != str) {
|
||||
printf("%s", str);
|
||||
free(str);
|
||||
}
|
||||
free(args);
|
||||
}
|
||||
|
||||
void orte_submit_finalize(void)
|
||||
{
|
||||
@ -1114,7 +1121,7 @@ int orte_submit_job(char *argv[], int *index,
|
||||
static int init_globals(void)
|
||||
{
|
||||
/* Reset the other fields every time */
|
||||
orte_cmd_options.help = false;
|
||||
orte_cmd_options.help = NULL;
|
||||
orte_cmd_options.version = false;
|
||||
orte_cmd_options.num_procs = 0;
|
||||
if (NULL != orte_cmd_options.appfile) {
|
||||
|
@ -3,6 +3,8 @@
|
||||
* Copyright (c) 2016 Cisco Systems, Inc. All rights reserved.
|
||||
* Copyright (c) 2017 Research Organization for Information Science
|
||||
* and Technology (RIST). All rights reserved.
|
||||
* Copyright (c) 2017 Los Alamos National Security, LLC. All rights
|
||||
* reserved.
|
||||
* $COPYRIGHT$
|
||||
*
|
||||
* Additional copyrights may follow
|
||||
@ -45,7 +47,7 @@ extern char MPIR_attach_fifo[];
|
||||
* Global struct for caching orte command line options.
|
||||
*/
|
||||
struct orte_cmd_options_t {
|
||||
bool help;
|
||||
char *help;
|
||||
bool version;
|
||||
bool verbose;
|
||||
char *report_pid;
|
||||
|
@ -12,7 +12,7 @@
|
||||
* All rights reserved.
|
||||
* Copyright (c) 2006-2017 Cisco Systems, Inc. All rights reserved
|
||||
* Copyright (c) 2007-2009 Sun Microsystems, Inc. All rights reserved.
|
||||
* Copyright (c) 2007-2016 Los Alamos National Security, LLC. All rights
|
||||
* Copyright (c) 2007-2017 Los Alamos National Security, LLC. All rights
|
||||
* reserved.
|
||||
* Copyright (c) 2013-2017 Intel, Inc. All rights reserved.
|
||||
* Copyright (c) 2015 Research Organization for Information Science
|
||||
@ -136,6 +136,28 @@ int orterun(int argc, char *argv[])
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/* check if we are running as root - if we are, then only allow
|
||||
* us to proceed if the allow-run-as-root flag was given. Otherwise,
|
||||
* exit with a giant warning flag
|
||||
*/
|
||||
if (0 == geteuid() && !orte_cmd_options.run_as_root) {
|
||||
fprintf(stderr, "--------------------------------------------------------------------------\n");
|
||||
if (NULL != orte_cmd_options.help) {
|
||||
fprintf(stderr, "%s cannot provide the help message when run as root.\n", orte_basename);
|
||||
} else {
|
||||
/* show_help is not yet available, so print an error manually */
|
||||
fprintf(stderr, "%s has detected an attempt to run as root.\n", orte_basename);
|
||||
}
|
||||
fprintf(stderr, "Running at root is *strongly* discouraged as any mistake (e.g., in\n");
|
||||
fprintf(stderr, "defining TMPDIR) or bug can result in catastrophic damage to the OS\n");
|
||||
fprintf(stderr, "file system, leaving your system in an unusable state.\n\n");
|
||||
fprintf(stderr, "You can override this protection by adding the --allow-run-as-root\n");
|
||||
fprintf(stderr, "option to your cmd line. However, we reiterate our strong advice\n");
|
||||
fprintf(stderr, "against doing so - please do so at your own risk.\n");
|
||||
fprintf(stderr, "--------------------------------------------------------------------------\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/* setup to listen for commands sent specifically to me, even though I would probably
|
||||
* be the one sending them! Unfortunately, since I am a participating daemon,
|
||||
* there are times I need to send a command to "all daemons", and that means *I* have
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user