Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/transport_ofi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1470,7 +1470,9 @@ int query_for_fabric(struct fabric_info *info)
struct fi_fabric_attr fabric_attr = {0};
struct fi_ep_attr ep_attr = {0};

shmem_transport_ofi_max_buffered_send = sizeof(long double);
/* Hint 0 = no minimum inject requirement; provider returns its natural
* inject_size, which is adopted below after fi_getinfo. */
shmem_transport_ofi_max_buffered_send = 0;

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good!


fabric_attr.prov_name = info->prov_name;

Expand Down
Loading