X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/863aeead864a309c494893a1b06ec33ed2b7daf1..f6580a65e86d6ff3af93ceb647c49897f0b0f590:/src/smpi/colls/allgather/allgather-rhv.cpp diff --git a/src/smpi/colls/allgather/allgather-rhv.cpp b/src/smpi/colls/allgather/allgather-rhv.cpp index 1c50923087..3fc59a6ceb 100644 --- a/src/smpi/colls/allgather/allgather-rhv.cpp +++ b/src/smpi/colls/allgather/allgather-rhv.cpp @@ -1,10 +1,10 @@ -/* Copyright (c) 2013-2017. The SimGrid Team. +/* Copyright (c) 2013-2019. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "../colls_private.h" +#include "../colls_private.hpp" namespace simgrid{ namespace smpi{ @@ -13,10 +13,10 @@ namespace smpi{ // now only work with power of two processes int -Coll_allgather_rhv::allgather(void *sbuf, int send_count, - MPI_Datatype send_type, void *rbuf, - int recv_count, MPI_Datatype recv_type, - MPI_Comm comm) +allgather__rhv(const void *sbuf, int send_count, + MPI_Datatype send_type, void *rbuf, + int recv_count, MPI_Datatype recv_type, + MPI_Comm comm) { MPI_Status status; MPI_Aint s_extent, r_extent; @@ -32,7 +32,7 @@ Coll_allgather_rhv::allgather(void *sbuf, int send_count, unsigned int num_procs = comm->size(); if((num_procs&(num_procs-1))) - THROWF(arg_error,0, "allgather rhv algorithm can't be used with non power of two number of processes ! "); + throw std::invalid_argument("allgather rhv algorithm can't be used with non power of two number of processes!"); unsigned int rank = comm->rank(); @@ -46,8 +46,8 @@ Coll_allgather_rhv::allgather(void *sbuf, int send_count, if (send_chunk != recv_chunk) { XBT_WARN("MPI_allgather_rhv use default MPI_allgather."); - Coll_allgather_default::allgather(sbuf, send_count, send_type, rbuf, recv_count, - recv_type, comm); + allgather__default(sbuf, send_count, send_type, rbuf, recv_count, + recv_type, comm); return MPI_SUCCESS; }