1
1

reductions to initial memory footprint

This commit was SVN r7455.
Этот коммит содержится в:
Tim Woodall 2005-09-21 19:10:56 +00:00
родитель 4296e723c9
Коммит a74ca0062a
5 изменённых файлов: 6 добавлений и 7 удалений

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

@ -681,7 +681,7 @@ int mca_btl_mvapi_endpoint_send(
rc = OMPI_SUCCESS;
break;
case MCA_BTL_IB_WAITING_ACK:
case MCA_BTL_IB_WAITING_ACK:
case MCA_BTL_IB_CONNECT_ACK:
BTL_VERBOSE(("Queuing because waiting for ack"));

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

@ -107,7 +107,7 @@ int mca_btl_self_component_open(void)
mca_btl_self_component.free_list_max =
mca_btl_self_param_register_int("free_list_max", -1);
mca_btl_self_component.free_list_inc =
mca_btl_self_param_register_int("free_list_inc", 256);
mca_btl_self_param_register_int("free_list_inc", 32);
mca_btl_self.btl_eager_limit =
mca_btl_self_param_register_int("eager_limit", 128*1024);
mca_btl_self.btl_min_send_size =

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

@ -198,7 +198,7 @@ int mca_btl_tcp_component_open(void)
mca_btl_tcp_component.tcp_free_list_num =
mca_btl_tcp_param_register_int ("free_list_num", 8);
mca_btl_tcp_component.tcp_free_list_max =
mca_btl_tcp_param_register_int ("free_list_max", 1024);
mca_btl_tcp_param_register_int ("free_list_max", -1);
mca_btl_tcp_component.tcp_free_list_inc =
mca_btl_tcp_param_register_int ("free_list_inc", 32);
mca_btl_tcp_component.tcp_sndbuf =

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

@ -139,11 +139,10 @@ int mca_pml_ob1_add_procs(ompi_proc_t** procs, size_t nprocs)
&mca_pml_ob1.buffers,
sizeof(mca_pml_ob1_buffer_t) + mca_pml_ob1.eager_limit,
OBJ_CLASS(mca_pml_ob1_buffer_t),
mca_pml_ob1.free_list_num,
0,
mca_pml_ob1.free_list_max,
mca_pml_ob1.free_list_inc,
NULL);
return rc;
}

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

@ -81,11 +81,11 @@ int mca_pml_ob1_component_open(void)
int param, value;
mca_pml_ob1.free_list_num =
mca_pml_ob1_param_register_int("free_list_num", 8);
mca_pml_ob1_param_register_int("free_list_num", 4);
mca_pml_ob1.free_list_max =
mca_pml_ob1_param_register_int("free_list_max", -1);
mca_pml_ob1.free_list_inc =
mca_pml_ob1_param_register_int("free_list_inc", 256);
mca_pml_ob1_param_register_int("free_list_inc", 64);
mca_pml_ob1.priority =
mca_pml_ob1_param_register_int("priority", 1);
mca_pml_ob1.eager_limit =