From 2d230b3aacce0185f0d46e69f608071b670eeb3c Mon Sep 17 00:00:00 2001 From: Sergey Oblomov Date: Tue, 27 Nov 2018 14:20:28 +0200 Subject: [PATCH] OSC/UCX: set max level value to 60 Signed-off-by: Sergey Oblomov --- ompi/mca/osc/ucx/osc_ucx_component.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mca/osc/ucx/osc_ucx_component.c b/ompi/mca/osc/ucx/osc_ucx_component.c index 54571542e3..4415e8d094 100644 --- a/ompi/mca/osc/ucx/osc_ucx_component.c +++ b/ompi/mca/osc/ucx/osc_ucx_component.c @@ -114,7 +114,7 @@ static int component_register(void) { ucp_get_version(&major, &minor, &release_number); - mca_osc_ucx_component.priority = UCX_VERSION(major, minor, release_number) >= UCX_VERSION(1, 5, 0) ? 200 : 0; + mca_osc_ucx_component.priority = UCX_VERSION(major, minor, release_number) >= UCX_VERSION(1, 5, 0) ? 60 : 0; opal_asprintf(&description_str, "Priority of the osc/ucx component (default: %d)", mca_osc_ucx_component.priority);