Skip to content

Commit b05ef1e

Browse files
committed
btl/uct: add Intel iRDMA to the default list of UCT memory domains
This commit adds rocep0s4 (iRDMA device) to the default list of memory domains to ensure it is available by default. This device should work once iRDMA support has been fixed in UCX (UD is currently broken). Signed-off-by: Nathan Hjelm <[email protected]>
1 parent a0af26a commit b05ef1e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

opal/mca/btl/uct/btl_uct_component.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* Copyright (c) 2018 Amazon.com, Inc. or its affiliates. All Rights reserved.
1818
* Copyright (c) 2018-2024 Triad National Security, LLC. All rights
1919
* reserved.
20-
* Copyright (c) 2019-2021 Google, LLC. All rights reserved.
20+
* Copyright (c) 2019-2024 Google, LLC. All rights reserved.
2121
* Copyright (c) 2019 Intel, Inc. All rights reserved.
2222
* Copyright (c) 2022 IBM Corporation. All rights reserved.
2323
* $COPYRIGHT$
@@ -48,13 +48,13 @@ static int mca_btl_uct_component_register(void)
4848
{
4949
mca_btl_uct_module_t *module = &mca_btl_uct_module_template;
5050

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

0 commit comments

Comments
 (0)