From 5a20bbe2a3f5311826b95610e4c3c40d360cc1e8 Mon Sep 17 00:00:00 2001 From: Markus Blatt <mblatt@dune-project.org> Date: Tue, 27 Jan 2009 17:00:32 +0000 Subject: [PATCH] Deactivate error checking. It just consumes time. [[Imported from SVN: r982]] --- istl/communicator.hh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/istl/communicator.hh b/istl/communicator.hh index 0af1860c1..05ba04b4a 100644 --- a/istl/communicator.hh +++ b/istl/communicator.hh @@ -1496,12 +1496,13 @@ namespace Dune std::cerr<<rank<<": MPI_Error occurred while sending message to "<<processMap[finished]<<std::endl; success=0; } - int globalSuccess; - MPI_Allreduce(&success, &globalSuccess, 1, MPI_INT, MPI_MIN, interface_->communicator()); - - if(!globalSuccess) - DUNE_THROW(CommunicationError, "A communication error occurred!"); + /* + int globalSuccess; + MPI_Allreduce(&success, &globalSuccess, 1, MPI_INT, MPI_MIN, interface_->communicator()); + if(!globalSuccess) + DUNE_THROW(CommunicationError, "A communication error occurred!"); + */ delete[] processMap; delete[] sendRequests; delete[] recvRequests; -- GitLab