/* * Copyright (c) 2022 Amazon.com, Inc. or its affiliates. All rights reserved. */ #include "config.h" #include "nccl_ofi.h" const ncclNet_v5_t ncclNetPlugin_v5 = { .name = "AWS Libfabric", .init = nccl_net_ofi_init, .devices = nccl_net_ofi_devices, .getProperties = nccl_net_ofi_getProperties, .listen = nccl_net_ofi_listen, .connect = nccl_net_ofi_connect, .accept = nccl_net_ofi_accept, .regMr = nccl_net_ofi_regMr, .deregMr = nccl_net_ofi_deregMr, .isend = nccl_net_ofi_isend, .irecv = nccl_net_ofi_irecv, .iflush = nccl_net_ofi_iflush, .test = nccl_net_ofi_test, .closeSend = nccl_net_ofi_closeSend, .closeRecv = nccl_net_ofi_closeRecv, .closeListen = nccl_net_ofi_closeListen, };