From 860a17e0269e19f713cc922cf8c26d6fb8b764b5 Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Tue, 17 Sep 2013 14:53:55 +0200 Subject: [PATCH 1/1] use tuned algo here --- src/smpi/colls/allgather-GB.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smpi/colls/allgather-GB.c b/src/smpi/colls/allgather-GB.c index f9a1e072b1..5783741dca 100644 --- a/src/smpi/colls/allgather-GB.c +++ b/src/smpi/colls/allgather-GB.c @@ -8,7 +8,7 @@ int smpi_coll_tuned_allgather_GB(void *send_buff, int send_count, { int num_procs; num_procs = smpi_comm_size(comm); - smpi_mpi_gather(send_buff, send_count, send_type, recv_buff, recv_count, recv_type, + mpi_coll_gather_fun(send_buff, send_count, send_type, recv_buff, recv_count, recv_type, 0, comm); mpi_coll_bcast_fun(recv_buff, (recv_count * num_procs), recv_type, 0, comm); -- 2.20.1