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

UCT/IB/MLX5/RC: perf tuning - increase dc latency estimation when AR is enabled #10415

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion src/uct/ib/mlx5/rc/rc_mlx5_iface.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ static ucs_status_t uct_rc_mlx5_iface_query(uct_iface_h tl_iface, uct_iface_attr
uct_rc_mlx5_iface_common_query(&rc_iface->super, iface_attr, max_am_inline,
UCT_RC_MLX5_TM_EAGER_ZCOPY_MAX_IOV(0));
iface_attr->cap.flags |= UCT_IFACE_FLAG_EP_CHECK;
iface_attr->latency.m += 1e-9; /* 1 ns per each extra QP */
iface_attr->latency.m += 32e-11; /* 0.32 ns per each extra QP */
Copy link
Contributor

Choose a reason for hiding this comment

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

maybe make it configurable?

iface_attr->ep_addr_len = ep_addr_len;
iface_attr->iface_addr_len = sizeof(uint8_t);
return UCS_OK;
Expand Down
Loading