fix(mpi): fix some namespaces issues with mpi

This commit is contained in:
Johann Dreo 2024-08-23 10:02:22 +02:00
commit 4bbb4a595e
8 changed files with 30 additions and 16 deletions

View file

@ -23,7 +23,7 @@ Authors:
# define __MPI_NODE_H__
# include "implMpi.h"
namespace bmpi = mpi;
// namespace bmpi = mpi;
namespace eo
{
@ -54,10 +54,10 @@ namespace eo
/**
* @brief Returns the global mpi::communicator
*/
static bmpi::communicator& comm();
static eo::mpi::communicator& comm();
protected:
static bmpi::communicator _comm;
static eo::mpi::communicator _comm;
};
}
}