From 1fe18814da89acacc2f478363165ccfc002a090a Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Thu, 6 Oct 2005 00:05:01 +0000 Subject: [PATCH] Decrease the default length for the first fragment. This commit was SVN r7643. --- ompi/mca/btl/mx/btl_mx_component.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ompi/mca/btl/mx/btl_mx_component.c b/ompi/mca/btl/mx/btl_mx_component.c index aa3a4c9e3b..3e55a1aa41 100644 --- a/ompi/mca/btl/mx/btl_mx_component.c +++ b/ompi/mca/btl/mx/btl_mx_component.c @@ -128,9 +128,9 @@ 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", 64*1024); + mca_btl_mx_param_register_int ("first_frag_size", 32*1024); mca_btl_mx_module.super.btl_min_send_size = - mca_btl_mx_param_register_int ("min_send_size", 64*1024); + mca_btl_mx_param_register_int ("min_send_size", 32*1024); mca_btl_mx_module.super.btl_max_send_size = mca_btl_mx_param_register_int ("max_send_size", 128*1024); mca_btl_mx_module.super.btl_min_rdma_size =