1
1

Make the radix routed component the default pending repair/completion of debruijn option

This commit was SVN r32276.
Этот коммит содержится в:
Ralph Castain 2014-07-22 16:48:51 +00:00
родитель 828a4a29b7
Коммит 2f579806ae
2 изменённых файлов: 3 добавлений и 7 удалений

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

@ -48,12 +48,8 @@ static int orte_routed_binomial_component_query(mca_base_module_t **module, int
{ {
/* make this selected ONLY if the user directs as this module scales /* make this selected ONLY if the user directs as this module scales
* poorly compared to our other options * poorly compared to our other options
*
* XXX: make this the default until we can figure out what's going on with
* debruijn within undersubscribed allocations. Once debruijn is fixed,
* revert back to priority 0.
*/ */
*priority = 70; *priority = 30;
*module = (mca_base_module_t *) &orte_routed_binomial_module; *module = (mca_base_module_t *) &orte_routed_binomial_module;
return ORTE_SUCCESS; return ORTE_SUCCESS;
} }

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

@ -54,7 +54,7 @@ static int orte_routed_radix_component_register(void)
{ {
mca_base_component_t *c = &mca_routed_radix_component.super.base_version; mca_base_component_t *c = &mca_routed_radix_component.super.base_version;
mca_routed_radix_component.radix = 32; mca_routed_radix_component.radix = 64;
(void) mca_base_component_var_register(c, NULL, (void) mca_base_component_var_register(c, NULL,
"Radix to be used for routed radix tree", "Radix to be used for routed radix tree",
MCA_BASE_VAR_TYPE_INT, NULL, 0, 0, MCA_BASE_VAR_TYPE_INT, NULL, 0, 0,
@ -79,7 +79,7 @@ static int orte_routed_radix_component_query(mca_base_module_t **module, int *pr
return ORTE_ERR_BAD_PARAM; return ORTE_ERR_BAD_PARAM;
} }
*priority = 30; *priority = 70;
*module = (mca_base_module_t *) &orte_routed_radix_module; *module = (mca_base_module_t *) &orte_routed_radix_module;
return ORTE_SUCCESS; return ORTE_SUCCESS;
} }