X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/40616078da72e823931c1fb884949054699ec39d..5e1fa53a0d0ae78cebae28364e6802aa1db1cba3:/src/smpi/colls/bcast/bcast-SMP-binary.cpp diff --git a/src/smpi/colls/bcast/bcast-SMP-binary.cpp b/src/smpi/colls/bcast/bcast-SMP-binary.cpp index fa9cf451ae..240d6fe1e9 100644 --- a/src/smpi/colls/bcast/bcast-SMP-binary.cpp +++ b/src/smpi/colls/bcast/bcast-SMP-binary.cpp @@ -1,23 +1,21 @@ -/* Copyright (c) 2013-2014. The SimGrid Team. +/* Copyright (c) 2013-2020. 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" int bcast_SMP_binary_segment_byte = 8192; - -int smpi_coll_tuned_bcast_SMP_binary(void *buf, int count, - MPI_Datatype datatype, int root, - MPI_Comm comm) +namespace simgrid{ +namespace smpi{ +int bcast__SMP_binary(void *buf, int count, + MPI_Datatype datatype, int root, + MPI_Comm comm) { int tag = COLL_TAG_BCAST; MPI_Status status; MPI_Request request; - MPI_Request *request_array; - MPI_Status *status_array; int rank, size; int i; MPI_Aint extent; @@ -33,8 +31,7 @@ int smpi_coll_tuned_bcast_SMP_binary(void *buf, int count, host_num_core = comm->get_intra_comm()->size(); }else{ //implementation buggy in this case - return smpi_coll_tuned_bcast_mpich( buf , count, datatype, - root, comm); + return bcast__mpich(buf , count, datatype, root, comm); } int segment = bcast_SMP_binary_segment_byte / extent; @@ -61,7 +58,7 @@ int smpi_coll_tuned_bcast_SMP_binary(void *buf, int count, else if (rank == 0) Request::recv(buf, count, datatype, root, tag, comm, &status); } - // when a message is smaller than a block size => no pipeline + // when a message is smaller than a block size => no pipeline if (count <= segment) { // case ROOT-of-each-SMP if (rank % host_num_core == 0) { @@ -123,10 +120,8 @@ int smpi_coll_tuned_bcast_SMP_binary(void *buf, int count, // pipeline bcast else { - request_array = - (MPI_Request *) xbt_malloc((size + pipe_length) * sizeof(MPI_Request)); - status_array = - (MPI_Status *) xbt_malloc((size + pipe_length) * sizeof(MPI_Status)); + auto* request_array = new MPI_Request[size + pipe_length]; + auto* status_array = new MPI_Status[size + pipe_length]; // case ROOT-of-each-SMP if (rank % host_num_core == 0) { @@ -215,16 +210,18 @@ int smpi_coll_tuned_bcast_SMP_binary(void *buf, int count, } } - free(request_array); - free(status_array); + delete[] request_array; + delete[] status_array; } // when count is not divisible by block size, use default BCAST for the remainder if ((remainder != 0) && (count > segment)) { - XBT_WARN("MPI_bcast_SMP_binary use default MPI_bcast."); - smpi_mpi_bcast((char *) buf + (pipe_length * increment), remainder, datatype, - root, comm); + XBT_WARN("MPI_bcast_SMP_binary use default MPI_bcast."); + colls::bcast((char*)buf + (pipe_length * increment), remainder, datatype, root, comm); } return 1; } + +} +}