Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions opal/mca/btl/uct/btl_uct_component.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* Copyright (c) 2018 Amazon.com, Inc. or its affiliates. All Rights reserved.
* Copyright (c) 2018-2024 Triad National Security, LLC. All rights
* reserved.
* Copyright (c) 2019-2021 Google, LLC. All rights reserved.
* Copyright (c) 2019-2024 Google, LLC. All rights reserved.
* Copyright (c) 2019 Intel, Inc. All rights reserved.
* Copyright (c) 2022 IBM Corporation. All rights reserved.
* $COPYRIGHT$
Expand Down Expand Up @@ -48,13 +48,13 @@ static int mca_btl_uct_component_register(void)
{
mca_btl_uct_module_t *module = &mca_btl_uct_module_template;

mca_btl_uct_component.memory_domains = "mlx5_0,mlx4_0";
mca_btl_uct_component.memory_domains = "mlx5_0,mlx4_0,rocep0s4";
(void) mca_base_component_var_register(
&mca_btl_uct_component.super.btl_version, "memory_domains",
"Comma-delimited list of memory domains of the form "
"to use for communication. Memory domains MUST provide transports that "
"support put, get, and amos. Special values: all (all available), none."
" (default: mlx5_0,mlx4_0)",
" (default: mlx5_0,mlx4_0,rocep0s4)",
MCA_BASE_VAR_TYPE_STRING, NULL, 0, MCA_BASE_VAR_FLAG_SETTABLE, OPAL_INFO_LVL_3,
MCA_BASE_VAR_SCOPE_LOCAL, &mca_btl_uct_component.memory_domains);

Expand Down
Loading