X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/49e85177c669d793e84242983a1b1f430e47184e..ec3e4ee5f1a7ffeb96e044057809944f364014e6:/src/smpi/colls/bcast-SMP-binomial.c diff --git a/src/smpi/colls/bcast-SMP-binomial.c b/src/smpi/colls/bcast-SMP-binomial.c index a45dca5fe4..6053e49c7a 100644 --- a/src/smpi/colls/bcast-SMP-binomial.c +++ b/src/smpi/colls/bcast-SMP-binomial.c @@ -5,9 +5,6 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include "colls_private.h" -#ifndef NUM_CORE -#define NUM_CORE 8 -#endif int smpi_coll_tuned_bcast_SMP_binomial(void *buf, int count, MPI_Datatype datatype, int root, @@ -22,13 +19,17 @@ int smpi_coll_tuned_bcast_SMP_binomial(void *buf, int count, size = smpi_comm_size(comm); rank = smpi_comm_rank(comm); - int num_core = simcall_host_get_core(SIMIX_host_self()); - // do we use the default one or the number of cores in the platform ? - // if the number of cores is one, the platform may be simulated with 1 node = 1 core - if (num_core == 1) num_core = NUM_CORE; - - if(size%num_core) - THROWF(arg_error,0, "bcast SMP binomial can't be used with non multiple of NUM_CORE=%d number of processes ! ",num_core); + if(smpi_comm_get_leaders_comm(comm)==MPI_COMM_NULL){ + smpi_comm_init_smp(comm); + } + int num_core=1; + if (smpi_comm_is_uniform(comm)){ + num_core = smpi_comm_size(smpi_comm_get_intra_comm(comm)); + }else{ + //implementation buggy in this case + return smpi_coll_tuned_bcast_mpich( buf , count, datatype, + root, comm); + } int to_intra, to_inter; int from_intra, from_inter;