X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/167f4aca4f02c8b1fb6634301f479b7c856ba1ce..9b5c287fbf93c2ae7c3d18c8584647ef9920fe87:/src/smpi/mpi/smpi_group.cpp diff --git a/src/smpi/mpi/smpi_group.cpp b/src/smpi/mpi/smpi_group.cpp index 2128c4c876..cbd973a064 100644 --- a/src/smpi/mpi/smpi_group.cpp +++ b/src/smpi/mpi/smpi_group.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2019. 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. */ @@ -17,36 +17,21 @@ MPI_Group MPI_GROUP_EMPTY=&mpi_MPI_GROUP_EMPTY; namespace simgrid{ namespace smpi{ -using simgrid::s4u::ActorPtr; - -Group::Group() -{ - size_ = 0; /* size */ - refcount_ = 1; /* refcount_: start > 0 so that this group never gets freed */ -} - -Group::Group(int n) : size_(n), rank_to_actor_map_(size_, nullptr), rank_to_index_map_(size_, MPI_UNDEFINED), index_to_rank_map_(size_, MPI_UNDEFINED) -{ - refcount_ = 1; -} - -Group::Group(MPI_Group origin) +Group::Group(Group* origin) { if (origin != MPI_GROUP_NULL && origin != MPI_GROUP_EMPTY) { size_ = origin->size(); - refcount_ = 1; - rank_to_index_map_ = origin->rank_to_index_map_; + // FIXME: cheinrich: There is no such thing as an index any more; the two maps should be removed index_to_rank_map_ = origin->index_to_rank_map_; rank_to_actor_map_ = origin->rank_to_actor_map_; actor_to_rank_map_ = origin->actor_to_rank_map_; } } -void Group::set_mapping(simgrid::s4u::ActorPtr actor, int rank) +void Group::set_mapping(s4u::Actor* actor, int rank) { if (0 <= rank && rank < size_) { - int index = actor->getPid(); - rank_to_index_map_[rank] = index; + int index = actor->get_pid(); if (index != MPI_UNDEFINED) { if ((unsigned)index >= index_to_rank_map_.size()) index_to_rank_map_.resize(index + 1, MPI_UNDEFINED); @@ -54,9 +39,7 @@ void Group::set_mapping(simgrid::s4u::ActorPtr actor, int rank) } rank_to_actor_map_[rank] = actor; - if (actor != nullptr) { - actor_to_rank_map_.insert({actor, rank}); - } + actor_to_rank_map_.insert({actor, rank}); } } @@ -71,14 +54,16 @@ int Group::rank(int index) return rank; } -simgrid::s4u::ActorPtr Group::actor(int rank) { +s4u::Actor* Group::actor(int rank) +{ if (0 <= rank && rank < size_) return rank_to_actor_map_[rank]; else return nullptr; } -int Group::rank(const simgrid::s4u::ActorPtr actor) { +int Group::rank(s4u::Actor* actor) +{ auto iterator = actor_to_rank_map_.find(actor); return (iterator == actor_to_rank_map_.end()) ? MPI_UNDEFINED : (*iterator).second; } @@ -96,11 +81,6 @@ void Group::unref(Group* group) } } -int Group::size() -{ - return size_; -} - int Group::compare(MPI_Group group2) { int result; @@ -110,7 +90,7 @@ int Group::compare(MPI_Group group2) result = MPI_UNEQUAL; } else { for (int i = 0; i < size_; i++) { - ActorPtr actor = this->actor(i); + s4u::Actor* actor = this->actor(i); int rank = group2->rank(actor); if (rank == MPI_UNDEFINED) { result = MPI_UNEQUAL; @@ -124,7 +104,7 @@ int Group::compare(MPI_Group group2) return result; } -int Group::incl(int n, int* ranks, MPI_Group* newgroup) +int Group::incl(int n, const int* ranks, MPI_Group* newgroup) { int i=0; if (n == 0) { @@ -136,7 +116,7 @@ int Group::incl(int n, int* ranks, MPI_Group* newgroup) } else { *newgroup = new Group(n); for (i = 0; i < n; i++) { - ActorPtr actor = this->actor(ranks[i]); // ranks[] was passed as a param! + s4u::Actor* actor = this->actor(ranks[i]); // ranks[] was passed as a param! (*newgroup)->set_mapping(actor, i); } } @@ -148,7 +128,7 @@ int Group::group_union(MPI_Group group2, MPI_Group* newgroup) int size1 = size_; int size2 = group2->size(); for (int i = 0; i < size2; i++) { - ActorPtr actor = group2->actor(i); + s4u::Actor* actor = group2->actor(i); int proc1 = this->rank(actor); if (proc1 == MPI_UNDEFINED) { size1++; @@ -160,11 +140,11 @@ int Group::group_union(MPI_Group group2, MPI_Group* newgroup) *newgroup = new Group(size1); size2 = this->size(); for (int i = 0; i < size2; i++) { - ActorPtr actor1 = this->actor(i); + s4u::Actor* actor1 = this->actor(i); (*newgroup)->set_mapping(actor1, i); } for (int i = size2; i < size1; i++) { - ActorPtr actor = group2->actor(i - size2); + s4u::Actor* actor = group2->actor(i - size2); (*newgroup)->set_mapping(actor, i); } } @@ -175,7 +155,7 @@ int Group::intersection(MPI_Group group2, MPI_Group* newgroup) { int size2 = group2->size(); for (int i = 0; i < size2; i++) { - ActorPtr actor = group2->actor(i); + s4u::Actor* actor = group2->actor(i); int proc1 = this->rank(actor); if (proc1 == MPI_UNDEFINED) { size2--; @@ -187,7 +167,7 @@ int Group::intersection(MPI_Group group2, MPI_Group* newgroup) *newgroup = new Group(size2); int j=0; for (int i = 0; i < group2->size(); i++) { - ActorPtr actor = group2->actor(i); + s4u::Actor* actor = group2->actor(i); int proc1 = this->rank(actor); if (proc1 != MPI_UNDEFINED) { (*newgroup)->set_mapping(actor, j); @@ -203,7 +183,7 @@ int Group::difference(MPI_Group group2, MPI_Group* newgroup) int newsize = size_; int size2 = size_; for (int i = 0; i < size2; i++) { - ActorPtr actor = this->actor(i); + s4u::Actor* actor = this->actor(i); int proc2 = group2->rank(actor); if (proc2 != MPI_UNDEFINED) { newsize--; @@ -214,7 +194,7 @@ int Group::difference(MPI_Group group2, MPI_Group* newgroup) } else { *newgroup = new Group(newsize); for (int i = 0; i < size2; i++) { - ActorPtr actor = this->actor(i); + s4u::Actor* actor = this->actor(i); int proc2 = group2->rank(actor); if (proc2 == MPI_UNDEFINED) { (*newgroup)->set_mapping(actor, i); @@ -224,7 +204,7 @@ int Group::difference(MPI_Group group2, MPI_Group* newgroup) return MPI_SUCCESS; } -int Group::excl(int n, int *ranks, MPI_Group * newgroup){ +int Group::excl(int n, const int *ranks, MPI_Group * newgroup){ int oldsize = size_; int newsize = oldsize - n; *newgroup = new Group(newsize); @@ -236,7 +216,7 @@ int Group::excl(int n, int *ranks, MPI_Group * newgroup){ int j = 0; for (int i = 0; i < oldsize; i++) { if(to_exclude[i]==0){ - ActorPtr actor = this->actor(i); + s4u::Actor* actor = this->actor(i); (*newgroup)->set_mapping(actor, j); j++; } @@ -275,7 +255,7 @@ int Group::range_incl(int n, int ranges[][3], MPI_Group * newgroup){ for (int rank = ranges[i][0]; /* First */ rank >= 0 && rank < size_; /* Last */ ) { - ActorPtr actor = this->actor(rank); + s4u::Actor* actor = this->actor(rank); (*newgroup)->set_mapping(actor, j); j++; if(rank == ranges[i][1]){/*already last ?*/ @@ -327,7 +307,7 @@ int Group::range_excl(int n, int ranges[][3], MPI_Group * newgroup){ } } if(add==1){ - ActorPtr actor = this->actor(oldrank); + s4u::Actor* actor = this->actor(oldrank); (*newgroup)->set_mapping(actor, newrank); newrank++; }