X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9b73466ada27682d1729f394549479da83ef4a99..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 c2b24a4d00..6053e49c7a 100644 --- a/src/smpi/colls/bcast-SMP-binomial.c +++ b/src/smpi/colls/bcast-SMP-binomial.c @@ -1,7 +1,10 @@ +/* Copyright (c) 2013-2014. 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" -#ifndef NUM_CORE -#define NUM_CORE 8 -#endif int smpi_coll_tuned_bcast_SMP_binomial(void *buf, int count, MPI_Datatype datatype, int root, @@ -16,14 +19,26 @@ int smpi_coll_tuned_bcast_SMP_binomial(void *buf, int count, size = smpi_comm_size(comm); rank = smpi_comm_rank(comm); + 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; - int inter_rank = rank / NUM_CORE; - int inter_size = (size - 1) / NUM_CORE + 1; - int intra_rank = rank % NUM_CORE; - int intra_size = NUM_CORE; - if (((rank / NUM_CORE) * NUM_CORE) == ((size / NUM_CORE) * NUM_CORE)) - intra_size = size - (rank / NUM_CORE) * NUM_CORE; + int inter_rank = rank / num_core; + int inter_size = (size - 1) / num_core + 1; + int intra_rank = rank % num_core; + int intra_size = num_core; + if (((rank / num_core) * num_core) == ((size / num_core) * num_core)) + intra_size = size - (rank / num_core) * num_core; // if root is not zero send to rank zero first if (root != 0) { @@ -40,7 +55,7 @@ int smpi_coll_tuned_bcast_SMP_binomial(void *buf, int count, mask = 1; while (mask < inter_size) { if (inter_rank & mask) { - from_inter = (inter_rank - mask) * NUM_CORE; + from_inter = (inter_rank - mask) * num_core; //printf("Node %d recv from node %d when mask is %d\n", rank, from_inter, mask); smpi_mpi_recv(buf, count, datatype, from_inter, tag, comm, &status); break; @@ -53,7 +68,7 @@ int smpi_coll_tuned_bcast_SMP_binomial(void *buf, int count, while (mask > 0) { if (inter_rank < inter_size) { - to_inter = (inter_rank + mask) * NUM_CORE; + to_inter = (inter_rank + mask) * num_core; if (to_inter < size) { //printf("Node %d send to node %d when mask is %d\n", rank, to_inter, mask); smpi_mpi_send(buf, count, datatype, to_inter, tag, comm); @@ -64,7 +79,7 @@ int smpi_coll_tuned_bcast_SMP_binomial(void *buf, int count, } // SECOND STEP every root-of-each-SMP send to all children with binomial tree // base is a rank of root-of-each-SMP - int base = (rank / NUM_CORE) * NUM_CORE; + int base = (rank / num_core) * num_core; mask = 1; while (mask < intra_size) { if (intra_rank & mask) {