1
1

Merge pull request #5979 from mkurnosov/coll-libnbc-cleanup

coll/libnbc: remove debug output
Этот коммит содержится в:
Jeff Squyres 2018-11-26 18:10:10 -05:00 коммит произвёл GitHub
родитель dbe064af97 64abd0f405
Коммит 8459d29738
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 0 добавлений и 2 удалений

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

@ -136,7 +136,6 @@ static int nbc_allgather_init(const void* sendbuf, int sendcount, MPI_Datatype s
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(