From 231e91fa6c563d6ba516c45706619560c8212d82 Mon Sep 17 00:00:00 2001 From: Thomas Naughton Date: Wed, 12 Jan 2022 15:06:56 -0500 Subject: [PATCH] mtl: add FI_HMEM cap to ofi component Signed-off-by: Thomas Naughton --- ompi/mca/mtl/ofi/mtl_ofi_component.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mca/mtl/ofi/mtl_ofi_component.c b/ompi/mca/mtl/ofi/mtl_ofi_component.c index c1aac6934d0..c3bdc630cfb 100644 --- a/ompi/mca/mtl/ofi/mtl_ofi_component.c +++ b/ompi/mca/mtl/ofi/mtl_ofi_component.c @@ -612,7 +612,7 @@ ompi_mtl_ofi_component_init(bool enable_progress_threads, interface and local communication and remote communication. */ hints->mode = FI_CONTEXT | FI_CONTEXT2; hints->ep_attr->type = FI_EP_RDM; - hints->caps = FI_TAGGED | FI_LOCAL_COMM | FI_REMOTE_COMM | FI_DIRECTED_RECV; + hints->caps = FI_HMEM | FI_TAGGED | FI_LOCAL_COMM | FI_REMOTE_COMM | FI_DIRECTED_RECV; hints->tx_attr->msg_order = FI_ORDER_SAS; hints->rx_attr->msg_order = FI_ORDER_SAS; hints->rx_attr->op_flags = FI_COMPLETION;