X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6633f5c4d1b7d52fa54306ee3fb7eb573daeb274..f89671e0bd7450461d70d5ced6079123e73c2a63:/src/smpi/colls/allreduce/allreduce-rdb.cpp diff --git a/src/smpi/colls/allreduce/allreduce-rdb.cpp b/src/smpi/colls/allreduce/allreduce-rdb.cpp index 6041a42946..ba19511b29 100644 --- a/src/smpi/colls/allreduce/allreduce-rdb.cpp +++ b/src/smpi/colls/allreduce/allreduce-rdb.cpp @@ -55,7 +55,7 @@ int Coll_allreduce_rdb::allreduce(const void *sbuff, void *rbuff, int count, Request::send(rbuff, count, dtype, rank + 1, tag, comm); // temporarily set the rank to -1 so that this - // process does not pariticipate in recursive + // process does not participate in recursive // doubling newrank = -1; } else // odd @@ -99,7 +99,7 @@ int Coll_allreduce_rdb::allreduce(const void *sbuff, void *rbuff, int count, // recvbuf contains data accumulated so far // op is commutative OR the order is already right - // we assume it is commuttive op + // we assume it is commutative op // if (op -> op_commute || (dst < rank)) if ((dst < rank)) { if(op!=MPI_OP_NULL) op->apply( tmp_buf, rbuff, &count, dtype);