Skip to content
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
4 changes: 4 additions & 0 deletions opal/mca/common/verbs/common_verbs_port.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ int opal_common_verbs_port_bw(struct ibv_port_attr *port_attr,
/* EDR: 25.78125 Gbps * 64/66, in megabits */
*bandwidth = 25000;
break;
case 64:
/* HDR: 50Gbps * 64/66, in megabits */
*bandwidth = 50000;
break;
default:
/* Who knows? */
return OPAL_ERR_NOT_FOUND;
Expand Down