From 5c8a6fecac6786d448015473fd4d01ebffd2fee5 Mon Sep 17 00:00:00 2001 From: Hui Zhou Date: Sun, 30 Jun 2024 15:13:25 -0500 Subject: [PATCH] ch4/hcoll: fix call hcoll_do_progress Previously we added a vci parameter to progress hooks. We negelected update one of the two calls to hcoll_do_progress. --- src/mpid/common/hcoll/hcoll_rte.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mpid/common/hcoll/hcoll_rte.c b/src/mpid/common/hcoll/hcoll_rte.c index 0db52cd6226..7eb9d8d39de 100644 --- a/src/mpid/common/hcoll/hcoll_rte.c +++ b/src/mpid/common/hcoll/hcoll_rte.c @@ -55,7 +55,7 @@ static void progress(void) /* FIXME: The hcoll library needs to be updated to return * error codes. The progress function pointer right now * expects that the function returns void. */ - ret = hcoll_do_progress(&made_progress); + ret = hcoll_do_progress(-1, &made_progress); MPIR_Assert(ret == MPI_SUCCESS); } }