From: Frederic Suter Date: Fri, 21 Jul 2017 17:45:44 +0000 (+0200) Subject: kill degomme's masochist troll ;) X-Git-Tag: v3_17~327 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/0ce348a43e3205b61d11024b3f0218d5b79293e6 kill degomme's masochist troll ;) --- diff --git a/src/smpi/include/smpi_group.hpp b/src/smpi/include/smpi_group.hpp index 64812ca7e6..73803641d1 100644 --- a/src/smpi/include/smpi_group.hpp +++ b/src/smpi/include/smpi_group.hpp @@ -16,7 +16,7 @@ class Group : public F2C{ private: int size_; int *rank_to_index_map_; - xbt_dict_t index_to_rank_map_; + std::unordered_map index_to_rank_map_; int refcount_; public: explicit Group(); diff --git a/src/smpi/mpi/smpi_group.cpp b/src/smpi/mpi/smpi_group.cpp index 115cf49a17..8eb2f7c5a0 100644 --- a/src/smpi/mpi/smpi_group.cpp +++ b/src/smpi/mpi/smpi_group.cpp @@ -18,62 +18,44 @@ Group::Group() { size_=0; /* size */ rank_to_index_map_=nullptr; /* rank_to_index_map_ */ - index_to_rank_map_=nullptr; /* index_to_rank_map_ */ refcount_=1; /* refcount_: start > 0 so that this group never gets freed */ } Group::Group(int n) : size_(n) { - rank_to_index_map_ = xbt_new(int, size_); - index_to_rank_map_ = xbt_dict_new_homogeneous(xbt_free_f); + rank_to_index_map_ = new int[size_]; refcount_ = 1; - for (int i = 0; i < size_; i++) { + for (int i = 0; i < size_; i++) rank_to_index_map_[i] = MPI_UNDEFINED; - } } Group::Group(MPI_Group origin) { - if(origin != MPI_GROUP_NULL - && origin != MPI_GROUP_EMPTY) - { - size_ = origin->size(); - rank_to_index_map_ = xbt_new(int, size_); - index_to_rank_map_ = xbt_dict_new_homogeneous(xbt_free_f); - refcount_ = 1; - for (int i = 0; i < size_; i++) { - rank_to_index_map_[i] = origin->rank_to_index_map_[i]; - } + if (origin != MPI_GROUP_NULL && origin != MPI_GROUP_EMPTY) { + size_ = origin->size(); + rank_to_index_map_ = xbt_new(int, size_); + refcount_ = 1; + for (int i = 0; i < size_; i++) { + rank_to_index_map_[i] = origin->rank_to_index_map_[i]; + } - char* key; - char* ptr_rank; - xbt_dict_cursor_t cursor = nullptr; - xbt_dict_foreach(origin->index_to_rank_map_, cursor, key, ptr_rank) { - int * cp = static_cast(xbt_malloc(sizeof(int))); - *cp=*reinterpret_cast(ptr_rank); - xbt_dict_set(index_to_rank_map_, key, cp, nullptr); - } + for (auto elm : origin->index_to_rank_map_) { + index_to_rank_map_.insert({elm.first, elm.second}); } + } } Group::~Group() { - xbt_free(rank_to_index_map_); - xbt_dict_free(&index_to_rank_map_); + delete[] rank_to_index_map_; } void Group::set_mapping(int index, int rank) { if (rank < size_) { rank_to_index_map_[rank] = index; - if (index!=MPI_UNDEFINED ) { - int* val_rank = static_cast(xbt_malloc(sizeof(int))); - *val_rank = rank; - - char * key = bprintf("%d", index); - xbt_dict_set(index_to_rank_map_, key, val_rank, nullptr); - xbt_free(key); - } + if (index != MPI_UNDEFINED) + index_to_rank_map_.insert({index, rank}); } } @@ -89,16 +71,12 @@ int Group::index(int rank) int Group::rank(int index) { - int * ptr_rank = nullptr; - if (this==MPI_GROUP_EMPTY) + if (this == MPI_GROUP_EMPTY) return MPI_UNDEFINED; - char * key = bprintf("%d", index); - ptr_rank = static_cast(xbt_dict_get_or_null(index_to_rank_map_, key)); - xbt_free(key); - - if (ptr_rank==nullptr) + if (index_to_rank_map_.find(index) == index_to_rank_map_.end()) return MPI_UNDEFINED; - return *ptr_rank; + else + return index_to_rank_map_.at(index); } void Group::ref()