1
1

Make the description of mca_btl_openib_cq_size be more accurate of

what it really is/does.

cmr:v1.5.4:kliteyn cmr:v1.4.4:reviewer=kliteyn

This commit was SVN r24684.
Этот коммит содержится в:
Jeff Squyres 2011-05-05 13:10:11 +00:00
родитель bab59bda76
Коммит d1d2cd0a87

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

@ -248,9 +248,10 @@ int btl_openib_register_mca_params(void)
REGINT_GE_ONE)); REGINT_GE_ONE));
CHECK(reg_int("cq_size", "ib_cq_size", CHECK(reg_int("cq_size", "ib_cq_size",
"Size of the OpenFabrics completion " "Minimum size of the OpenFabrics completion queue "
"queue (will automatically be set to a minimum of " "(CQs are automatically sized based on the number "
"(2 * number_of_peers * btl_openib_rd_num))", "of peer MPI processes; this value determines the "
"*minimum* size of all CQs)",
1000, &ival, REGINT_GE_ONE)); 1000, &ival, REGINT_GE_ONE));
mca_btl_openib_component.ib_cq_size[BTL_OPENIB_LP_CQ] = mca_btl_openib_component.ib_cq_size[BTL_OPENIB_LP_CQ] =
mca_btl_openib_component.ib_cq_size[BTL_OPENIB_HP_CQ] = (uint32_t) ival; mca_btl_openib_component.ib_cq_size[BTL_OPENIB_HP_CQ] = (uint32_t) ival;