Skip to content
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

src: Change NIC affinity warning to debug message #1152

Merged
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
2 changes: 1 addition & 1 deletion src/transport_ofi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1391,7 +1391,7 @@ struct fi_info *assign_nic_with_hwloc(struct fi_info *fabric, struct fi_info **p
DEBUG_MSG("Num. NICs w/ affinity to process: %zu\n", num_close_nics);

if (!close_provs) {
RAISE_WARN_MSG("Could not detect any NICs with affinity to the process\n");
DEBUG_MSG("Could not detect any NICs with affinity to the process\n");

/* If no 'close' NICs, select from list of all NICs using round-robin assignment */
return provs[shmem_internal_my_pe % num_nics];
Expand Down
Loading