X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ecd5f7562caf1d443bf22788fa5f4fac408776ec..84637d5a56f373e75eb6619d1afb54b7da3f5e36:/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..bd1095d820 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 @@ -30,7 +30,7 @@ ****************************************************************************/ 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();