Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use a vector for index_to_rank_map_ too.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 1 Nov 2017 14:13:39 +0000 (15:13 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 1 Nov 2017 14:14:20 +0000 (15:14 +0100)
src/smpi/include/smpi_group.hpp
src/smpi/mpi/smpi_group.cpp

index ca6ad34..a763548 100644 (file)
@@ -9,6 +9,7 @@
 
 #include "smpi_f2c.hpp"
 #include <smpi/smpi.h>
 
 #include "smpi_f2c.hpp"
 #include <smpi/smpi.h>
+#include <vector>
 
 namespace simgrid{
 namespace smpi{
 
 namespace simgrid{
 namespace smpi{
@@ -21,7 +22,7 @@ class Group : public F2C{
      * For a vector, this costs O(1). We hence go with the vector.
      */
     std::vector<int> rank_to_index_map_;
      * For a vector, this costs O(1). We hence go with the vector.
      */
     std::vector<int> rank_to_index_map_;
-    std::unordered_map<int, int> index_to_rank_map_;
+    std::vector<int> index_to_rank_map_;
     int refcount_;
   public:
     explicit Group();
     int refcount_;
   public:
     explicit Group();
index 23c4809..bd77424 100644 (file)
@@ -22,11 +22,9 @@ Group::Group()
   refcount_          = 1;       /* refcount_: start > 0 so that this group never gets freed */
 }
 
   refcount_          = 1;       /* refcount_: start > 0 so that this group never gets freed */
 }
 
-Group::Group(int n) : size_(n), rank_to_index_map_(size_)
+Group::Group(int n) : size_(n), rank_to_index_map_(size_, MPI_UNDEFINED)
 {
   refcount_ = 1;
 {
   refcount_ = 1;
-  for (int i              = 0; i < size_; i++)
-    rank_to_index_map_[i] = MPI_UNDEFINED;
 }
 
 Group::Group(MPI_Group origin)
 }
 
 Group::Group(MPI_Group origin)
@@ -35,43 +33,44 @@ Group::Group(MPI_Group origin)
     size_              = origin->size();
     refcount_          = 1;
     rank_to_index_map_ = origin->rank_to_index_map_;
     size_              = origin->size();
     refcount_          = 1;
     rank_to_index_map_ = origin->rank_to_index_map_;
-
-    for (auto const& elm : origin->index_to_rank_map_) {
-      index_to_rank_map_.insert({elm.first, elm.second});
-    }
+    index_to_rank_map_ = origin->index_to_rank_map_;
   }
 }
 
 Group::~Group()
 {
   }
 }
 
 Group::~Group()
 {
-  rank_to_index_map_.clear();
 }
 
 void Group::set_mapping(int index, int rank)
 {
 }
 
 void Group::set_mapping(int index, int rank)
 {
-  if (rank < size_) {
+  if (0 <= rank && rank < size_) {
     rank_to_index_map_[rank] = index;
     rank_to_index_map_[rank] = index;
-    if (index != MPI_UNDEFINED)
-      index_to_rank_map_.insert({index, rank});
+    if (index != MPI_UNDEFINED) {
+      if ((unsigned)index >= index_to_rank_map_.size())
+        index_to_rank_map_.resize(index + 1, MPI_UNDEFINED);
+      index_to_rank_map_[index] = rank;
+    }
   }
 }
 
 int Group::index(int rank)
 {
   }
 }
 
 int Group::index(int rank)
 {
-  int index = MPI_UNDEFINED;
-
-  if (0 <= rank && rank < size_) {
+  int index;
+  if (0 <= rank && rank < size_)
     index = rank_to_index_map_[rank];
     index = rank_to_index_map_[rank];
-  }
+  else
+    index = MPI_UNDEFINED;
   return index;
 }
 
 int Group::rank(int index)
 {
   return index;
 }
 
 int Group::rank(int index)
 {
-  if (this == MPI_GROUP_EMPTY)
-    return MPI_UNDEFINED;
-  auto rank = index_to_rank_map_.find(index);
-  return rank == index_to_rank_map_.end() ? MPI_UNDEFINED : rank->second;
+  int rank;
+  if (0 <= index && (unsigned)index < index_to_rank_map_.size())
+    rank = index_to_rank_map_[index];
+  else
+    rank = MPI_UNDEFINED;
+  return rank;
 }
 
 void Group::ref()
 }
 
 void Group::ref()