@@ -37,13 +37,13 @@ const char *mca_coll_han_component_version_string =
37
37
"Open MPI HAN collective MCA component version " OMPI_VERSION ;
38
38
39
39
ompi_coll_han_components ompi_coll_han_available_components [COMPONENTS_COUNT ] = {
40
- { SELF , "self" , NULL },
41
- { BASIC , "basic" , NULL },
42
- { LIBNBC , "libnbc" , NULL },
43
- { TUNED , "tuned" , NULL },
44
- { SM , "sm" , NULL },
45
- { ADAPT , "adapt" , NULL },
46
- { HAN , "han" , NULL }
40
+ { SELF , "self" },
41
+ { BASIC , "basic" },
42
+ { LIBNBC , "libnbc" },
43
+ { TUNED , "tuned" },
44
+ { SM , "sm" }, /* this should not be used, the collective component is gone */
45
+ { ADAPT , "adapt" },
46
+ { HAN , "han" }
47
47
};
48
48
49
49
/*
@@ -287,7 +287,7 @@ static int han_register(void)
287
287
288
288
cs -> han_bcast_low_module = 0 ;
289
289
(void ) mca_coll_han_query_module_from_mca (c , "bcast_low_module" ,
290
- "low level module for bcast, 0 tuned, 1 sm " ,
290
+ "low level module for bcast, currently only 0 for tuned " ,
291
291
OPAL_INFO_LVL_9 ,
292
292
& cs -> han_bcast_low_module ,
293
293
& cs -> han_op_module_name .bcast .han_op_low_module_name );
@@ -307,7 +307,7 @@ static int han_register(void)
307
307
308
308
cs -> han_reduce_low_module = 0 ;
309
309
(void ) mca_coll_han_query_module_from_mca (c , "reduce_low_module" ,
310
- "low level module for allreduce, 0 tuned, 1 sm " ,
310
+ "low level module for allreduce, currently only 0 tuned " ,
311
311
OPAL_INFO_LVL_9 , & cs -> han_reduce_low_module ,
312
312
& cs -> han_op_module_name .reduce .han_op_low_module_name );
313
313
@@ -326,7 +326,7 @@ static int han_register(void)
326
326
327
327
cs -> han_allreduce_low_module = 0 ;
328
328
(void ) mca_coll_han_query_module_from_mca (c , "allreduce_low_module" ,
329
- "low level module for allreduce, 0 tuned, 1 sm " ,
329
+ "low level module for allreduce, currently only 0 tuned " ,
330
330
OPAL_INFO_LVL_9 , & cs -> han_allreduce_low_module ,
331
331
& cs -> han_op_module_name .allreduce .han_op_low_module_name );
332
332
@@ -338,7 +338,7 @@ static int han_register(void)
338
338
339
339
cs -> han_allgather_low_module = 0 ;
340
340
(void ) mca_coll_han_query_module_from_mca (c , "allgather_low_module" ,
341
- "low level module for allgather, 0 tuned, 1 sm " ,
341
+ "low level module for allgather, currently only 0 tuned " ,
342
342
OPAL_INFO_LVL_9 , & cs -> han_allgather_low_module ,
343
343
& cs -> han_op_module_name .allgather .han_op_low_module_name );
344
344
@@ -350,7 +350,7 @@ static int han_register(void)
350
350
351
351
cs -> han_gather_low_module = 0 ;
352
352
(void ) mca_coll_han_query_module_from_mca (c , "gather_low_module" ,
353
- "low level module for gather, 0 tuned, 1 sm " ,
353
+ "low level module for gather, currently only 0 tuned " ,
354
354
OPAL_INFO_LVL_9 , & cs -> han_gather_low_module ,
355
355
& cs -> han_op_module_name .gather .han_op_low_module_name );
356
356
@@ -374,7 +374,7 @@ static int han_register(void)
374
374
375
375
cs -> han_scatter_low_module = 0 ;
376
376
(void ) mca_coll_han_query_module_from_mca (c , "scatter_low_module" ,
377
- "low level module for scatter, 0 tuned, 1 sm " ,
377
+ "low level module for scatter, currently only 0 tuned " ,
378
378
OPAL_INFO_LVL_9 , & cs -> han_scatter_low_module ,
379
379
& cs -> han_op_module_name .scatter .han_op_low_module_name );
380
380
0 commit comments