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> (cherry picked from commit 64abd0f405be91b927cd8f37d30cdf41aa6685c2) Signed-off-by: Brian Barrett <bbarrett@amazon.com>
Этот коммит содержится в:
родитель
bf1c8bb394
Коммит
ba11f31fc8
@ -132,12 +132,10 @@ static int nbc_allgather_init(const void* sendbuf, int sendcount, MPI_Datatype s
|
|||||||
|
|
||||||
switch (alg) {
|
switch (alg) {
|
||||||
case NBC_ALLGATHER_LINEAR:
|
case NBC_ALLGATHER_LINEAR:
|
||||||
if (rank == 0) printf("MK: LINEAR\n");
|
|
||||||
res = allgather_sched_linear(rank, p, schedule, sendbuf, sendcount, sendtype,
|
res = allgather_sched_linear(rank, p, schedule, sendbuf, sendcount, sendtype,
|
||||||
recvbuf, recvcount, recvtype);
|
recvbuf, recvcount, recvtype);
|
||||||
break;
|
break;
|
||||||
case NBC_ALLGATHER_RDBL:
|
case NBC_ALLGATHER_RDBL:
|
||||||
if (rank == 0) printf("MK: RDBL\n");
|
|
||||||
res = allgather_sched_recursivedoubling(rank, p, schedule, sendbuf, sendcount,
|
res = allgather_sched_recursivedoubling(rank, p, schedule, sendbuf, sendcount,
|
||||||
sendtype, recvbuf, recvcount, recvtype);
|
sendtype, recvbuf, recvcount, recvtype);
|
||||||
break;
|
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
|
* Description: an implementation of Ibcast using k-nomial tree algorithm
|
||||||
*
|
*
|
||||||
* Time: (radix - 1)O(log_{radix}(comm_size))
|
* Time: (radix - 1)O(log_{radix}(comm_size))
|
||||||
* Memory: O(reqs_max)
|
|
||||||
* Schedule length (rounds): O(log(comm_size))
|
* Schedule length (rounds): O(log(comm_size))
|
||||||
*/
|
*/
|
||||||
static inline int bcast_sched_knomial(
|
static inline int bcast_sched_knomial(
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user