Skip to content

Commit 64abd0f

Browse files
committed
coll/libnbc: remove debug output
1. Remove debug output in iallgather (I have forgotten to remove it). 2. Remove an incorrect comment in description of ibcast Signed-off-by: Mikhail Kurnosov <mkurnosov@gmail.com>
1 parent 1a97555 commit 64abd0f

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

ompi/mca/coll/libnbc/nbc_iallgather.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,10 @@ static int nbc_allgather_init(const void* sendbuf, int sendcount, MPI_Datatype s
132132

133133
switch (alg) {
134134
case NBC_ALLGATHER_LINEAR:
135-
if (rank == 0) printf("MK: LINEAR\n");
136135
res = allgather_sched_linear(rank, p, schedule, sendbuf, sendcount, sendtype,
137136
recvbuf, recvcount, recvtype);
138137
break;
139138
case NBC_ALLGATHER_RDBL:
140-
if (rank == 0) printf("MK: RDBL\n");
141139
res = allgather_sched_recursivedoubling(rank, p, schedule, sendbuf, sendcount,
142140
sendtype, recvbuf, recvcount, recvtype);
143141
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)