Use this option only on Windows, so protect it with #ifdef __WINDOWS__.
This commit was SVN r22701.
Этот коммит содержится в:
родитель
774a7a58b0
Коммит
44fe33452c
@ -148,7 +148,9 @@ uint8_t orte_default_num_cores_per_socket;
|
|||||||
char *orte_default_cpu_set;
|
char *orte_default_cpu_set;
|
||||||
char *orte_default_hostfile = NULL;
|
char *orte_default_hostfile = NULL;
|
||||||
char *orte_rankfile;
|
char *orte_rankfile;
|
||||||
|
#ifdef __WINDOWS__
|
||||||
char *orte_ccp_headnode;
|
char *orte_ccp_headnode;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* default rank assigment and binding policy */
|
/* default rank assigment and binding policy */
|
||||||
orte_mapping_policy_t orte_default_mapping_policy = 0;
|
orte_mapping_policy_t orte_default_mapping_policy = 0;
|
||||||
|
@ -623,7 +623,9 @@ ORTE_DECLSPEC extern uint8_t orte_default_num_cores_per_socket;
|
|||||||
ORTE_DECLSPEC extern char *orte_default_cpu_set;
|
ORTE_DECLSPEC extern char *orte_default_cpu_set;
|
||||||
ORTE_DECLSPEC extern char *orte_default_hostfile;
|
ORTE_DECLSPEC extern char *orte_default_hostfile;
|
||||||
ORTE_DECLSPEC extern char *orte_rankfile;
|
ORTE_DECLSPEC extern char *orte_rankfile;
|
||||||
|
#ifdef __WINDOWS__
|
||||||
ORTE_DECLSPEC extern char *orte_ccp_headnode;
|
ORTE_DECLSPEC extern char *orte_ccp_headnode;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* default rank assigment and binding policy */
|
/* default rank assigment and binding policy */
|
||||||
ORTE_DECLSPEC extern orte_mapping_policy_t orte_default_mapping_policy;
|
ORTE_DECLSPEC extern orte_mapping_policy_t orte_default_mapping_policy;
|
||||||
|
@ -224,10 +224,12 @@ int orte_register_params(void)
|
|||||||
mca_base_param_reg_syn_name(tmp, "rmaps", "rank_file_path", false);
|
mca_base_param_reg_syn_name(tmp, "rmaps", "rank_file_path", false);
|
||||||
mca_base_param_lookup_string(tmp, &orte_rankfile);
|
mca_base_param_lookup_string(tmp, &orte_rankfile);
|
||||||
|
|
||||||
|
#ifdef __WINDOWS__
|
||||||
mca_base_param_reg_string_name("orte", "ccp_headnode",
|
mca_base_param_reg_string_name("orte", "ccp_headnode",
|
||||||
"Name of the cluster head node. (For Windows CCP only.)",
|
"Name of the cluster head node. (For Windows CCP only.)",
|
||||||
false, false,
|
false, false,
|
||||||
NULL, &orte_ccp_headnode);
|
NULL, &orte_ccp_headnode);
|
||||||
|
#endif
|
||||||
|
|
||||||
/* whether or not to keep FQDN hostnames */
|
/* whether or not to keep FQDN hostnames */
|
||||||
mca_base_param_reg_int_name("orte", "keep_fqdn_hostnames",
|
mca_base_param_reg_int_name("orte", "keep_fqdn_hostnames",
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user