Use own implementation of Boost::mpi API instead of real Boost::mpi.
This commit is contained in:
parent
1f5719c647
commit
dc58ab7739
3 changed files with 293 additions and 2 deletions
|
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue