1
1

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>
Этот коммит содержится в:
Mikhail Kurnosov 2018-10-26 15:52:02 +07:00
родитель 1a97555478
Коммит 64abd0f405
2 изменённых файлов: 0 добавлений и 3 удалений

Просмотреть файл

@ -132,12 +132,10 @@ static int nbc_allgather_init(const void* sendbuf, int sendcount, MPI_Datatype s
switch (alg) {
case NBC_ALLGATHER_LINEAR:
if (rank == 0) printf("MK: LINEAR\n");
res = allgather_sched_linear(rank, p, schedule, sendbuf, sendcount, sendtype,
recvbuf, recvcount, recvtype);
break;
case NBC_ALLGATHER_RDBL:
if (rank == 0) printf("MK: RDBL\n");
res = allgather_sched_recursivedoubling(rank, p, schedule, sendbuf, sendcount,
sendtype, recvbuf, recvcount, recvtype);
break;

Просмотреть файл

@ -368,7 +368,6 @@ static inline int bcast_sched_chain(int rank, int p, int root, NBC_Schedule *sch
* Description: an implementation of Ibcast using k-nomial tree algorithm
*
* Time: (radix - 1)O(log_{radix}(comm_size))
* Memory: O(reqs_max)
* Schedule length (rounds): O(log(comm_size))
*/
static inline int bcast_sched_knomial(