Use own implementation of Boost::mpi API instead of real Boost::mpi.

This commit is contained in:
Benjamin Bouvier 2012-07-24 15:40:54 +02:00
commit dc58ab7739
3 changed files with 293 additions and 2 deletions

View file

@ -9,3 +9,11 @@ namespace eo
}
}
namespace mpi
{
void broadcast( communicator & comm, int value, int root )
{
comm; // unused
MPI_Bcast( &value, 1, MPI_INT, root, MPI_COMM_WORLD );
}
}