Skip to content

Commit 97a5845

Browse files
authored
Merge pull request #5792 from bwbarrett/v3.0.x-ofi-mtl-selection
mtl ofi: Change from opt-in to opt-out provider selection
2 parents 468418a + 8b30249 commit 97a5845

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ompi/mca/mtl/ofi/mtl_ofi_component.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ ompi_mtl_ofi_component_register(void)
108108
MCA_BASE_VAR_SCOPE_READONLY,
109109
&param_priority);
110110

111-
prov_include = "psm,psm2,gni";
111+
prov_include = NULL;
112112
mca_base_component_var_register(&mca_mtl_ofi_component.super.mtl_version,
113113
"provider_include",
114114
"Comma-delimited list of OFI providers that are considered for use (e.g., \"psm,psm2\"; an empty value means that all providers will be considered). Mutually exclusive with mtl_ofi_provider_exclude.",
@@ -117,7 +117,7 @@ ompi_mtl_ofi_component_register(void)
117117
MCA_BASE_VAR_SCOPE_READONLY,
118118
&prov_include);
119119

120-
prov_exclude = NULL;
120+
prov_exclude = "shm,sockets,tcp,udp,rstream";
121121
mca_base_component_var_register(&mca_mtl_ofi_component.super.mtl_version,
122122
"provider_exclude",
123123
"Comma-delimited list of OFI providers that are not considered for use (default: \"sockets,mxm\"; empty value means that all providers will be considered). Mutually exclusive with mtl_ofi_provider_include.",

0 commit comments

Comments
 (0)