@@ -39,7 +39,6 @@ ompi_coll_han_components available_components[COMPONENTS_COUNT] = {
39
39
{ LIBNBC , "libnbc" , NULL },
40
40
{ TUNED , "tuned" , NULL },
41
41
{ SM , "sm" , NULL },
42
- { SHARED , "shared" , NULL },
43
42
{ ADAPT , "adapt" , NULL },
44
43
{ HAN , "han" , NULL }
45
44
};
@@ -179,7 +178,7 @@ static int han_register(void)
179
178
180
179
cs -> han_bcast_low_module = 0 ;
181
180
(void ) mca_base_component_var_register (c , "bcast_low_module" ,
182
- "low level module for bcast, 0 sm , 1 solo " ,
181
+ "low level module for bcast, 0 tuned , 1 sm " ,
183
182
MCA_BASE_VAR_TYPE_INT , NULL , 0 , 0 ,
184
183
OPAL_INFO_LVL_9 ,
185
184
MCA_BASE_VAR_SCOPE_READONLY , & cs -> han_bcast_low_module );
@@ -200,7 +199,7 @@ static int han_register(void)
200
199
201
200
cs -> han_reduce_low_module = 0 ;
202
201
(void ) mca_base_component_var_register (c , "reduce_low_module" ,
203
- "low level module for allreduce, 0 sm , 1 shared " ,
202
+ "low level module for allreduce, 0 tuned , 1 sm " ,
204
203
MCA_BASE_VAR_TYPE_INT , NULL , 0 , 0 ,
205
204
OPAL_INFO_LVL_9 ,
206
205
MCA_BASE_VAR_SCOPE_READONLY , & cs -> han_reduce_low_module );
@@ -220,7 +219,7 @@ static int han_register(void)
220
219
221
220
cs -> han_allreduce_low_module = 0 ;
222
221
(void ) mca_base_component_var_register (c , "allreduce_low_module" ,
223
- "low level module for allreduce, 0 sm , 1 shared " ,
222
+ "low level module for allreduce, 0 tuned , 1 sm " ,
224
223
MCA_BASE_VAR_TYPE_INT , NULL , 0 , 0 ,
225
224
OPAL_INFO_LVL_9 ,
226
225
MCA_BASE_VAR_SCOPE_READONLY , & cs -> han_allreduce_low_module );
@@ -234,7 +233,7 @@ static int han_register(void)
234
233
235
234
cs -> han_allgather_low_module = 0 ;
236
235
(void ) mca_base_component_var_register (c , "allgather_low_module" ,
237
- "low level module for allgather, 0 sm , 1 shared " ,
236
+ "low level module for allgather, 0 tuned , 1 sm " ,
238
237
MCA_BASE_VAR_TYPE_INT , NULL , 0 , 0 ,
239
238
OPAL_INFO_LVL_9 ,
240
239
MCA_BASE_VAR_SCOPE_READONLY , & cs -> han_allgather_low_module );
@@ -248,7 +247,7 @@ static int han_register(void)
248
247
249
248
cs -> han_gather_low_module = 0 ;
250
249
(void ) mca_base_component_var_register (c , "gather_low_module" ,
251
- "low level module for gather, 0 sm , 1 shared " ,
250
+ "low level module for gather, 0 tuned , 1 sm " ,
252
251
MCA_BASE_VAR_TYPE_INT , NULL , 0 , 0 ,
253
252
OPAL_INFO_LVL_9 ,
254
253
MCA_BASE_VAR_SCOPE_READONLY , & cs -> han_gather_low_module );
@@ -262,7 +261,7 @@ static int han_register(void)
262
261
263
262
cs -> han_scatter_low_module = 0 ;
264
263
(void ) mca_base_component_var_register (c , "scatter_low_module" ,
265
- "low level module for scatter, 0 sm , 1 shared " ,
264
+ "low level module for scatter, 0 tuned , 1 sm " ,
266
265
MCA_BASE_VAR_TYPE_INT , NULL , 0 , 0 ,
267
266
OPAL_INFO_LVL_9 ,
268
267
MCA_BASE_VAR_SCOPE_READONLY , & cs -> han_scatter_low_module );
0 commit comments