Skip to content

Commit 8459d29

Browse files
authored
Merge pull request #5979 from mkurnosov/coll-libnbc-cleanup
coll/libnbc: remove debug output
2 parents dbe064a + 64abd0f commit 8459d29

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

ompi/mca/coll/libnbc/nbc_iallgather.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@ static int nbc_allgather_init(const void* sendbuf, int sendcount, MPI_Datatype s
136136
recvbuf, recvcount, recvtype);
137137
break;
138138
case NBC_ALLGATHER_RDBL:
139-
if (rank == 0) printf("MK: RDBL\n");
140139
res = allgather_sched_recursivedoubling(rank, p, schedule, sendbuf, sendcount,
141140
sendtype, recvbuf, recvcount, recvtype);
142141
break;

ompi/mca/coll/libnbc/nbc_ibcast.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,6 @@ static inline int bcast_sched_chain(int rank, int p, int root, NBC_Schedule *sch
368368
* Description: an implementation of Ibcast using k-nomial tree algorithm
369369
*
370370
* Time: (radix - 1)O(log_{radix}(comm_size))
371-
* Memory: O(reqs_max)
372371
* Schedule length (rounds): O(log(comm_size))
373372
*/
374373
static inline int bcast_sched_knomial(

0 commit comments

Comments
 (0)