1
1

MX has 2 limitations regarding the iovecs. First they do not support iovec witha total size

larger than 32K for inter-nodes transfert ... and then they do not support iovecs larger than
16K for inter-node transfert. Therefore we have to set the size of our first fragment to
16K to match both cases.

This commit was SVN r7926.
Этот коммит содержится в:
George Bosilca 2005-10-28 20:37:43 +00:00
родитель 8503fce61b
Коммит b0def3f6bf

Просмотреть файл

@ -128,7 +128,7 @@ int mca_btl_mx_component_open(void)
mca_btl_mx_module.super.btl_exclusivity =
mca_btl_mx_param_register_int ("exclusivity", 0);
mca_btl_mx_module.super.btl_eager_limit =
mca_btl_mx_param_register_int ("first_frag_size", 32*1024);
mca_btl_mx_param_register_int ("first_frag_size", 16*1024);
mca_btl_mx_module.super.btl_min_send_size =
mca_btl_mx_param_register_int ("min_send_size", 32*1024);
mca_btl_mx_module.super.btl_max_send_size =