From: Julien EMMANUEL Date: Thu, 25 Jun 2020 13:39:03 +0000 (+0200) Subject: Typo in SMPI gather algorithm (comment) X-Git-Tag: v3.26~527^2 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/5d5908983f6cad90c0677775988aa58495763d19?hp=4b7251c4ac80f95f82ac25ecfb3a9f618150cb11 Typo in SMPI gather algorithm (comment) --- diff --git a/src/smpi/colls/gather/gather-ompi.cpp b/src/smpi/colls/gather/gather-ompi.cpp index 3aaaab58b1..f1fca998f6 100644 --- a/src/smpi/colls/gather/gather-ompi.cpp +++ b/src/smpi/colls/gather/gather-ompi.cpp @@ -104,7 +104,7 @@ int gather__ompi_binomial(const void* sbuf, int scount, MPI_Datatype sdtype, voi } else if (!(vrank % 2)) { /* other non-leaf nodes, allocate temp buffer for data received from * children, the most we need is half of the total data elements due - * to the property of binimoal tree */ + * to the property of binomial tree */ tempbuf = smpi_get_tmp_sendbuffer(strue_extent + (scount * size - 1) * sextent); if (NULL == tempbuf) { err = MPI_ERR_OTHER;