@@ -116,15 +116,15 @@ int ompi_coll_tuned_alltoall_intra_check_forced_init (coll_tuned_force_algorithm
116116
117117 (void ) mca_base_component_var_register (& mca_coll_tuned_component .super .collm_version ,
118118 "alltoall_large_msg" ,
119- "threshold (if supported) to decide if large MSGs alltoall algorithm will be used " ,
119+ "use pairwise exchange algorithm for messages larger than this value " ,
120120 MCA_BASE_VAR_TYPE_INT , NULL , 0 , 0 ,
121121 OPAL_INFO_LVL_6 ,
122122 MCA_BASE_VAR_SCOPE_READONLY ,
123123 & ompi_coll_tuned_alltoall_large_msg );
124124
125125 (void ) mca_base_component_var_register (& mca_coll_tuned_component .super .collm_version ,
126126 "alltoall_min_procs" ,
127- "threshold (if supported) to decide if many processes alltoall algorithm will be used " ,
127+ "use pairwise exchange algorithm for communicators larger than this value " ,
128128 MCA_BASE_VAR_TYPE_INT , NULL , 0 , 0 ,
129129 OPAL_INFO_LVL_6 ,
130130 MCA_BASE_VAR_SCOPE_READONLY ,
@@ -137,16 +137,16 @@ int ompi_coll_tuned_alltoall_intra_check_forced_init (coll_tuned_force_algorithm
137137 MCA_BASE_VAR_TYPE_INT , NULL , 0 , MCA_BASE_VAR_FLAG_SETTABLE ,
138138 OPAL_INFO_LVL_5 ,
139139 MCA_BASE_VAR_SCOPE_ALL ,
140- & ompi_coll_tuned_alltoall_max_reqs );
140+ & ompi_coll_tuned_alltoall_max_requests );
141141 if (mca_param_indices -> max_requests_param_index < 0 ) {
142142 return mca_param_indices -> max_requests_param_index ;
143143 }
144144
145- if (ompi_coll_tuned_alltoall_max_reqs < 0 ) {
145+ if (ompi_coll_tuned_alltoall_max_requests < 0 ) {
146146 if ( 0 == ompi_comm_rank ( MPI_COMM_WORLD ) ) {
147147 opal_output ( 0 , "Maximum outstanding requests must be positive number greater than 1. Switching to 0 \n" );
148148 }
149- ompi_coll_tuned_alltoall_max_reqs = 0 ;
149+ ompi_coll_tuned_alltoall_max_requests = 0 ;
150150 }
151151
152152 return (MPI_SUCCESS );
0 commit comments