-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature: Add multirail support and optional usage of hwloc for optimal NIC assignment #1107
feature: Add multirail support and optional usage of hwloc for optimal NIC assignment #1107
Conversation
6796126
to
0b52547
Compare
2f5c521
to
175e917
Compare
…ld cannot be found
175e917
to
d331a77
Compare
@wrrobin @markbrown314 @parkerha1 Just wanted to give a little reminder that this branch is ready for review when you have the cycles to give it a look :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
src/transport_ofi.c
Outdated
if (NULL == info->p_info) { | ||
RAISE_WARN_MSG("OFI transport, no valid fabric (prov=%s, fabric=%s, domain=%s)\n", | ||
info->prov_name != NULL ? info->prov_name : "<auto>", | ||
info->fabric_name != NULL ? info->fabric_name : "<auto>", | ||
info->domain_name != NULL ? info->domain_name : "<auto>"); | ||
return ret; | ||
} | ||
DEBUG_MSG("provider: %s\n", info->p_info->domain_attr->name); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this is included in the DEBUG_MSG
below, can we remove it here?
This PR adds support for utilizing multiple NICs to increase peak RMA bandwidth. Additionally, it adds support for use of hwloc to optimally assign processes to a NIC based on each process' CPU affinity.