X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ecd5f7562caf1d443bf22788fa5f4fac408776ec..f89671e0bd7450461d70d5ced6079123e73c2a63:/src/smpi/colls/alltoall/alltoall-pair.cpp diff --git a/src/smpi/colls/alltoall/alltoall-pair.cpp b/src/smpi/colls/alltoall/alltoall-pair.cpp index 2519526516..25ba861d49 100644 --- a/src/smpi/colls/alltoall/alltoall-pair.cpp +++ b/src/smpi/colls/alltoall/alltoall-pair.cpp @@ -1,4 +1,4 @@ -/* 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 @@ -25,12 +25,12 @@ * Descrp: Function works when P is power of two. In each phase of P - 1 phases, nodes in pair communicate their data. - * Auther: Ahmad Faraj + * Author: Ahmad Faraj ****************************************************************************/ namespace simgrid{ namespace smpi{ -int Coll_alltoall_pair_rma::alltoall(void *send_buff, int send_count, MPI_Datatype send_type, +int Coll_alltoall_pair_rma::alltoall(const void *send_buff, int send_count, MPI_Datatype send_type, void *recv_buff, int recv_count, MPI_Datatype recv_type, MPI_Comm comm) { @@ -64,7 +64,7 @@ int Coll_alltoall_pair_rma::alltoall(void *send_buff, int send_count, MPI_Dataty } -int Coll_alltoall_pair::alltoall(void *send_buff, int send_count, +int Coll_alltoall_pair::alltoall(const void *send_buff, int send_count, MPI_Datatype send_type, void *recv_buff, int recv_count, MPI_Datatype recv_type, MPI_Comm comm) @@ -81,7 +81,7 @@ int Coll_alltoall_pair::alltoall(void *send_buff, int send_count, num_procs = comm->size(); if((num_procs&(num_procs-1))) - THROWF(arg_error,0, "alltoall pair algorithm can't be used with non power of two number of processes ! "); + throw std::invalid_argument("alltoall pair algorithm can't be used with non power of two number of processes!"); send_chunk = send_type->get_extent(); recv_chunk = recv_type->get_extent();