Skip to content

Commit 2715e03

Browse files
committed
usnic: change retrans timeout to 5ms
A bunch of empirical testing has shown that increasing the retranmit timeout from 1ms to 5ms doesn't adversely affect performance, yet decreases the number of gratuitious retransmissions. (cherry picked from commit open-mpi/ompi@c2615a4)
1 parent 6dc4404 commit 2715e03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/mca/btl/usnic/btl_usnic_mca.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ int opal_btl_usnic_component_register(void)
245245
mca_btl_usnic_component.udp_port_base = (int) udp_port_base;
246246

247247
CHECK(reg_int("retrans_timeout", "Number of microseconds before retransmitting a frame",
248-
1000, &mca_btl_usnic_component.retrans_timeout,
248+
5000, &mca_btl_usnic_component.retrans_timeout,
249249
REGINT_GE_ONE, OPAL_INFO_LVL_5));
250250

251251
CHECK(reg_int("priority_limit", "Max size of \"priority\" messages (0 = use pre-set defaults; depends on number and type of devices available)",

0 commit comments

Comments
 (0)