Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SMPI] Remove wrong comments on functions
authorChristian Heinrich <franz-christian.heinrich@inria.fr>
Wed, 6 Dec 2017 13:35:46 +0000 (14:35 +0100)
committerChristian Heinrich <franz-christian.heinrich@inria.fr>
Fri, 12 Jan 2018 00:08:32 +0000 (01:08 +0100)
src/smpi/internals/smpi_deployment.cpp

index d470ebd..85de568 100644 (file)
@@ -78,7 +78,6 @@ void SMPI_app_instance_register(const char *name, xbt_main_func_t code, int num_
   smpi_instances.insert(std::pair<std::string, Instance>(name, instance));
 }
 
-//get the index of the process in the process_data array
 void smpi_deployment_register_process(const char* instance_id, int rank, int index)
 {
   if (smpi_instances.empty()) { // no instance registered, we probably used smpirun.
@@ -93,7 +92,6 @@ void smpi_deployment_register_process(const char* instance_id, int rank, int ind
   instance.comm_world->group()->set_mapping(index, rank);
 }
 
-//get the index of the process in the process_data array
 MPI_Comm* smpi_deployment_comm_world(const char* instance_id)
 {
   if (smpi_instances.empty()) { // no instance registered, we probably used smpirun.