Skip to content

Commit

Permalink
Merge pull request #12844 from hjelmn/btl_uct_add_irdma_to_uct_defaults
Browse files Browse the repository at this point in the history
btl/uct: add Intel iRDMA to the default list of UCT memory domains
  • Loading branch information
bosilca authored Oct 7, 2024
2 parents 25ea13d + b05ef1e commit f31a9be
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit f31a9be

Please sign in to comment.