Skip to content
Snippets Groups Projects

use `0` as tag in MPI to avoid too large value

Merged Ansgar Burchardt requested to merge ansgar/dune-grid-glue:use-lower-tag-for-mpi into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -221,7 +221,7 @@ namespace Parallel {
std::array<MPI_Request,N> requests_send;
std::array<MPI_Request,N> requests_recv;
int tag = 12345678;
int tag = 0;
Dune::Hybrid::forEach(indices,
// [&](auto i){
// MPI_SendVectorInRing(
Loading