Skip to content
Snippets Groups Projects
Commit 2c9cd7c5 authored by Lisa Julia Nebel's avatar Lisa Julia Nebel
Browse files

Adjust Riemannian trust-region solver for parallel runs

In case the solve step (which is only done on process 0) goes wrong
communicate it to all processes.
parent b4957ee2
No related branches found
No related tags found
1 merge request!44Read in deformation function on each process and adapt riemannian trustregion solver - parallel assembly works again!
...@@ -462,14 +462,14 @@ void RiemannianTrustRegionSolver<Basis,TargetSpace>::solve() ...@@ -462,14 +462,14 @@ void RiemannianTrustRegionSolver<Basis,TargetSpace>::solve()
} catch (Dune::Exception &e) { } catch (Dune::Exception &e) {
std::cerr << "Error while solving: " << e << std::endl; std::cerr << "Error while solving: " << e << std::endl;
solved = false; solved = false;
corr_global = 0;
} }
std::cout << "Solving the quadratic problem took " << solutionTimer.elapsed() << " seconds." << std::endl; std::cout << "Solving the quadratic problem took " << solutionTimer.elapsed() << " seconds." << std::endl;
totalSolverTime += solutionTimer.elapsed(); totalSolverTime += solutionTimer.elapsed();
if (mgStep && solved) if (mgStep && solved) {
corr_global = mgStep->getSol(); corr_global = mgStep->getSol();
std::cout << "Two norm of the correction: " << corr_global.two_norm() << std::endl; std::cout << "Two norm of the correction: " << corr_global.two_norm() << std::endl;
}
} }
// Distribute solution // Distribute solution
...@@ -477,7 +477,13 @@ void RiemannianTrustRegionSolver<Basis,TargetSpace>::solve() ...@@ -477,7 +477,13 @@ void RiemannianTrustRegionSolver<Basis,TargetSpace>::solve()
std::cout << "Transfer solution back to root process ..." << std::endl; std::cout << "Transfer solution back to root process ..." << std::endl;
#if HAVE_MPI #if HAVE_MPI
corr = vectorComm.scatter(corr_global); solved = grid_->comm().min(solved);
if (solved) {
corr = vectorComm.scatter(corr_global);
} else {
corr_global = 0;
corr = 0;
}
#else #else
corr = corr_global; corr = corr_global;
#endif #endif
...@@ -583,11 +589,14 @@ void RiemannianTrustRegionSolver<Basis,TargetSpace>::solve() ...@@ -583,11 +589,14 @@ void RiemannianTrustRegionSolver<Basis,TargetSpace>::solve()
} catch (Dune::Exception &e) { } catch (Dune::Exception &e) {
std::cerr << "Error while computing the energy of the new Iterate: " << e << std::endl; std::cerr << "Error while computing the energy of the new Iterate: " << e << std::endl;
std::cerr << "Redoing trust region step with smaller radius..." << std::endl; std::cerr << "Redoing trust region step with smaller radius..." << std::endl;
newIterate = x_;
solved = false; solved = false;
energy = oldEnergy;
} }
if (solved) { solved = grid_->comm().min(solved);
if (!solved) {
newIterate = x_;
energy = oldEnergy;
} else {
energy = grid_->comm().sum(energy); energy = grid_->comm().sum(energy);
// compute the model decrease // compute the model decrease
......
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