@@ -60,7 +60,8 @@ ompi_coll_tuned_allreduce_intra_dec_dynamic (const void *sbuf, void *rbuf, size_
6060{
6161 mca_coll_tuned_module_t * tuned_module = (mca_coll_tuned_module_t * ) module ;
6262
63- OPAL_OUTPUT ((ompi_coll_tuned_stream , "ompi_coll_tuned_allreduce_intra_dec_dynamic" ));
63+ OPAL_OUTPUT_VERBOSE ((COLL_TUNED_TRACING_VERBOSE , ompi_coll_tuned_stream ,
64+ "ompi_coll_tuned_allreduce_intra_dec_dynamic" ));
6465
6566 /* Check first if an algorithm is set explicitly for this collective */
6667 if (tuned_module -> user_forced [ALLREDUCE ].algorithm ) {
@@ -111,7 +112,8 @@ int ompi_coll_tuned_alltoall_intra_dec_dynamic(const void *sbuf, size_t scount,
111112{
112113 mca_coll_tuned_module_t * tuned_module = (mca_coll_tuned_module_t * ) module ;
113114
114- OPAL_OUTPUT ((ompi_coll_tuned_stream , "ompi_coll_tuned_alltoall_intra_dec_dynamic" ));
115+ OPAL_OUTPUT_VERBOSE ((COLL_TUNED_TRACING_VERBOSE , ompi_coll_tuned_stream ,
116+ "ompi_coll_tuned_alltoall_intra_dec_dynamic" ));
115117
116118 /* Check first if an algorithm is set explicitly for this collective */
117119 if (tuned_module -> user_forced [ALLTOALL ].algorithm ) {
@@ -167,7 +169,8 @@ int ompi_coll_tuned_alltoallv_intra_dec_dynamic(const void *sbuf, ompi_count_arr
167169{
168170 mca_coll_tuned_module_t * tuned_module = (mca_coll_tuned_module_t * ) module ;
169171
170- OPAL_OUTPUT ((ompi_coll_tuned_stream , "ompi_coll_tuned_alltoallv_intra_dec_dynamic" ));
172+ OPAL_OUTPUT_VERBOSE ((COLL_TUNED_TRACING_VERBOSE , ompi_coll_tuned_stream ,
173+ "ompi_coll_tuned_alltoallv_intra_dec_dynamic" ));
171174
172175 /* Check first if an algorithm is set explicitly for this collective */
173176 if (tuned_module -> user_forced [ALLTOALLV ].algorithm ) {
@@ -215,7 +218,8 @@ int ompi_coll_tuned_barrier_intra_dec_dynamic(struct ompi_communicator_t *comm,
215218{
216219 mca_coll_tuned_module_t * tuned_module = (mca_coll_tuned_module_t * ) module ;
217220
218- OPAL_OUTPUT ((ompi_coll_tuned_stream ,"ompi_coll_tuned_barrier_intra_dec_dynamic" ));
221+ OPAL_OUTPUT_VERBOSE ((COLL_TUNED_TRACING_VERBOSE , ompi_coll_tuned_stream ,
222+ "ompi_coll_tuned_barrier_intra_dec_dynamic" ));
219223
220224 /* Check first if an algorithm is set explicitly for this collective */
221225 if (tuned_module -> user_forced [BARRIER ].algorithm ) {
@@ -257,7 +261,8 @@ int ompi_coll_tuned_bcast_intra_dec_dynamic(void *buf, size_t count,
257261{
258262 mca_coll_tuned_module_t * tuned_module = (mca_coll_tuned_module_t * ) module ;
259263
260- OPAL_OUTPUT ((ompi_coll_tuned_stream , "coll:tuned:bcast_intra_dec_dynamic" ));
264+ OPAL_OUTPUT_VERBOSE ((COLL_TUNED_TRACING_VERBOSE , ompi_coll_tuned_stream ,
265+ "coll:tuned:bcast_intra_dec_dynamic" ));
261266
262267 /* Check first if an algorithm is set explicitly for this collective */
263268 if (tuned_module -> user_forced [BCAST ].algorithm ) {
@@ -309,7 +314,8 @@ int ompi_coll_tuned_reduce_intra_dec_dynamic( const void *sbuf, void *rbuf,
309314{
310315 mca_coll_tuned_module_t * tuned_module = (mca_coll_tuned_module_t * ) module ;
311316
312- OPAL_OUTPUT ((ompi_coll_tuned_stream , "coll:tuned:reduce_intra_dec_dynamic" ));
317+ OPAL_OUTPUT_VERBOSE ((COLL_TUNED_TRACING_VERBOSE , ompi_coll_tuned_stream ,
318+ "coll:tuned:reduce_intra_dec_dynamic" ));
313319
314320 /* Check first if an algorithm is set explicitly for this collective */
315321 if (tuned_module -> user_forced [REDUCE ].algorithm ) {
@@ -365,7 +371,8 @@ int ompi_coll_tuned_reduce_scatter_intra_dec_dynamic(const void *sbuf, void *rbu
365371{
366372 mca_coll_tuned_module_t * tuned_module = (mca_coll_tuned_module_t * ) module ;
367373
368- OPAL_OUTPUT ((ompi_coll_tuned_stream , "coll:tuned:reduce_scatter_intra_dec_dynamic" ));
374+ OPAL_OUTPUT_VERBOSE ((COLL_TUNED_TRACING_VERBOSE , ompi_coll_tuned_stream ,
375+ "coll:tuned:reduce_scatter_intra_dec_dynamic" ));
369376
370377 /* Check first if an algorithm is set explicitly for this collective */
371378 if (tuned_module -> user_forced [REDUCESCATTER ].algorithm ) {
@@ -420,7 +427,8 @@ int ompi_coll_tuned_reduce_scatter_block_intra_dec_dynamic(const void *sbuf, voi
420427{
421428 mca_coll_tuned_module_t * tuned_module = (mca_coll_tuned_module_t * ) module ;
422429
423- OPAL_OUTPUT ((ompi_coll_tuned_stream , "coll:tuned:reduce_scatter_block_intra_dec_dynamic" ));
430+ OPAL_OUTPUT_VERBOSE ((COLL_TUNED_TRACING_VERBOSE , ompi_coll_tuned_stream ,
431+ "coll:tuned:reduce_scatter_block_intra_dec_dynamic" ));
424432
425433 /* Check first if an algorithm is set explicitly for this collective */
426434 if (tuned_module -> user_forced [REDUCESCATTERBLOCK ].algorithm ) {
@@ -474,7 +482,7 @@ int ompi_coll_tuned_allgather_intra_dec_dynamic(const void *sbuf, size_t scount,
474482{
475483 mca_coll_tuned_module_t * tuned_module = (mca_coll_tuned_module_t * ) module ;
476484
477- OPAL_OUTPUT (( ompi_coll_tuned_stream ,
485+ OPAL_OUTPUT_VERBOSE (( COLL_TUNED_TRACING_VERBOSE , ompi_coll_tuned_stream ,
478486 "ompi_coll_tuned_allgather_intra_dec_dynamic" ));
479487
480488 /* Check first if an algorithm is set explicitly for this collective */
@@ -536,7 +544,7 @@ int ompi_coll_tuned_allgatherv_intra_dec_dynamic(const void *sbuf, size_t scount
536544{
537545 mca_coll_tuned_module_t * tuned_module = (mca_coll_tuned_module_t * ) module ;
538546
539- OPAL_OUTPUT (( ompi_coll_tuned_stream ,
547+ OPAL_OUTPUT_VERBOSE (( COLL_TUNED_TRACING_VERBOSE , ompi_coll_tuned_stream ,
540548 "ompi_coll_tuned_allgatherv_intra_dec_dynamic" ));
541549
542550 /* Check first if an algorithm is set explicitly for this collective */
@@ -593,7 +601,7 @@ int ompi_coll_tuned_gather_intra_dec_dynamic(const void *sbuf, size_t scount,
593601{
594602 mca_coll_tuned_module_t * tuned_module = (mca_coll_tuned_module_t * ) module ;
595603
596- OPAL_OUTPUT (( ompi_coll_tuned_stream ,
604+ OPAL_OUTPUT_VERBOSE (( COLL_TUNED_TRACING_VERBOSE , ompi_coll_tuned_stream ,
597605 "ompi_coll_tuned_gather_intra_dec_dynamic" ));
598606
599607 /* Check first if an algorithm is set explicitly for this collective */
@@ -643,7 +651,7 @@ int ompi_coll_tuned_scatter_intra_dec_dynamic(const void *sbuf, size_t scount,
643651{
644652 mca_coll_tuned_module_t * tuned_module = (mca_coll_tuned_module_t * ) module ;
645653
646- OPAL_OUTPUT (( ompi_coll_tuned_stream ,
654+ OPAL_OUTPUT_VERBOSE (( COLL_TUNED_TRACING_VERBOSE , ompi_coll_tuned_stream ,
647655 "ompi_coll_tuned_scatter_intra_dec_dynamic" ));
648656
649657 /* Check first if an algorithm is set explicitly for this collective */
@@ -692,7 +700,7 @@ int ompi_coll_tuned_exscan_intra_dec_dynamic(const void *sbuf, void* rbuf, size_
692700{
693701 mca_coll_tuned_module_t * tuned_module = (mca_coll_tuned_module_t * ) module ;
694702
695- OPAL_OUTPUT (( ompi_coll_tuned_stream ,
703+ OPAL_OUTPUT_VERBOSE (( COLL_TUNED_TRACING_VERBOSE , ompi_coll_tuned_stream ,
696704 "ompi_coll_tuned_exscan_intra_dec_dynamic" ));
697705
698706 /* Check first if an algorithm is set explicitly for this collective */
@@ -736,7 +744,7 @@ int ompi_coll_tuned_scan_intra_dec_dynamic(const void *sbuf, void* rbuf, size_t
736744{
737745 mca_coll_tuned_module_t * tuned_module = (mca_coll_tuned_module_t * ) module ;
738746
739- OPAL_OUTPUT (( ompi_coll_tuned_stream ,
747+ OPAL_OUTPUT_VERBOSE (( COLL_TUNED_TRACING_VERBOSE , ompi_coll_tuned_stream ,
740748 "ompi_coll_tuned_scan_intra_dec_dynamic" ));
741749
742750 /* Check first if an algorithm is set explicitly for this collective */
0 commit comments