Skip to content
Snippets Groups Projects
Commit 148e9cae authored by Timo Koch's avatar Timo Koch
Browse files

[solver][fix] Make sure to only call communication code if we are able to communicate

parent b9bab33d
No related branches found
No related tags found
1 merge request!3413Fix/istl solvers can communicate
...@@ -143,16 +143,24 @@ public: ...@@ -143,16 +143,24 @@ public:
{ {
initializeParameters_(paramGroup); initializeParameters_(paramGroup);
#if HAVE_MPI #if HAVE_MPI
solverCategory_ = Detail::solverCategory<LinearSolverTraits>(gridView); if constexpr (LinearSolverTraits::canCommunicate)
if (solverCategory_ != Dune::SolverCategory::sequential)
{ {
parallelHelper_ = std::make_unique<ParallelISTLHelper<LinearSolverTraits>>(gridView, dofMapper); solverCategory_ = Detail::solverCategory<LinearSolverTraits>(gridView);
communication_ = std::make_shared<Comm>(gridView.comm(), solverCategory_); if (solverCategory_ != Dune::SolverCategory::sequential)
scalarProduct_ = Dune::createScalarProduct<XVector>(*communication_, solverCategory_); {
parallelHelper_->createParallelIndexSet(*communication_); parallelHelper_ = std::make_unique<ParallelISTLHelper<LinearSolverTraits>>(gridView, dofMapper);
communication_ = std::make_shared<Comm>(gridView.comm(), solverCategory_);
scalarProduct_ = Dune::createScalarProduct<XVector>(*communication_, solverCategory_);
parallelHelper_->createParallelIndexSet(*communication_);
}
else
scalarProduct_ = std::make_shared<ScalarProduct>();
} }
else else
{
solverCategory_ = Dune::SolverCategory::sequential;
scalarProduct_ = std::make_shared<ScalarProduct>(); scalarProduct_ = std::make_shared<ScalarProduct>();
}
#else #else
solverCategory_ = Dune::SolverCategory::sequential; solverCategory_ = Dune::SolverCategory::sequential;
scalarProduct_ = std::make_shared<ScalarProduct>(); scalarProduct_ = std::make_shared<ScalarProduct>();
...@@ -174,10 +182,13 @@ public: ...@@ -174,10 +182,13 @@ public:
solverCategory_ = Detail::solverCategory(gridView); solverCategory_ = Detail::solverCategory(gridView);
scalarProduct_ = scalarProduct; scalarProduct_ = scalarProduct;
communication_ = communication; communication_ = communication;
if (solverCategory_ != Dune::SolverCategory::sequential) if constexpr (LinearSolverTraits::canCommunicate)
{ {
parallelHelper_ = std::make_unique<ParallelISTLHelper<LinearSolverTraits>>(gridView, dofMapper); if (solverCategory_ != Dune::SolverCategory::sequential)
parallelHelper_->createParallelIndexSet(communication); {
parallelHelper_ = std::make_unique<ParallelISTLHelper<LinearSolverTraits>>(gridView, dofMapper);
parallelHelper_->createParallelIndexSet(communication);
}
} }
} }
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment