46 template<
class M,
class X,
class S,
class P,
class K,
class A>
62 template<
class M,
class X,
class S,
class PI=SequentialInformation,
63 class A=std::allocator<X> >
66 template<
class M1,
class X1,
class S1,
class P1,
class K1,
class A1>
209 std::size_t levels();
211 std::size_t maxlevels();
241 void createCriterionAndHierarchies(std::shared_ptr<const Operator> matrixptr,
242 const PI& pinfo,
const Norm&,
244 std::true_type compiles = std::true_type());
246 void createCriterionAndHierarchies(std::shared_ptr<const Operator> matrixptr,
247 const PI& pinfo,
const Norm&,
255 void createHierarchies(C& criterion, std::shared_ptr<const Operator> matrixptr,
264 void createHierarchies(C& criterion,
265 const std::shared_ptr<const Operator>& matrixptr,
291 typename OperatorHierarchy::RedistributeInfoList::const_iterator
redist;
295 typename OperatorHierarchy::AggregatesMapList::const_iterator
aggregates;
319 void mgc(LevelContext& levelContext);
329 void moveToFineLevel(LevelContext& levelContext,
bool processedFineLevel);
335 bool moveToCoarseLevel(LevelContext& levelContext);
341 void initIteratorsWithFineLevel(LevelContext& levelContext);
344 std::shared_ptr<OperatorHierarchy> matrices_;
348 std::shared_ptr<Hierarchy<Smoother,A> > smoothers_;
350 std::shared_ptr<CoarseSolver> solver_;
352 std::shared_ptr<Hierarchy<Range,A>> rhs_;
354 std::shared_ptr<Hierarchy<Domain,A>> lhs_;
356 std::shared_ptr<Hierarchy<Domain,A>> update_;
360 std::shared_ptr<ScalarProduct> scalarProduct_;
364 std::size_t preSteps_;
366 std::size_t postSteps_;
367 bool buildHierarchy_;
369 bool coarsesolverconverged;
370 std::shared_ptr<Smoother> coarseSmoother_;
374 std::size_t verbosity_;
378 std::string operator()(
const std::string& str)
380 std::stringstream retval;
381 std::ostream_iterator<char> out(retval);
382 std::transform(str.begin(), str.end(), out,
384 return std::tolower(c, std::locale::classic());
391 template<
class M,
class X,
class S,
class PI,
class A>
393 : matrices_(amg.matrices_), smootherArgs_(amg.smootherArgs_),
394 smoothers_(amg.smoothers_), solver_(amg.solver_),
395 rhs_(), lhs_(), update_(),
396 scalarProduct_(amg.scalarProduct_), gamma_(amg.gamma_),
397 preSteps_(amg.preSteps_), postSteps_(amg.postSteps_),
398 buildHierarchy_(amg.buildHierarchy_),
399 additive(amg.additive), coarsesolverconverged(amg.coarsesolverconverged),
400 coarseSmoother_(amg.coarseSmoother_),
401 category_(amg.category_),
402 verbosity_(amg.verbosity_)
405 template<
class M,
class X,
class S,
class PI,
class A>
411 rhs_(), lhs_(), update_(), scalarProduct_(0),
412 gamma_(parms.getGamma()), preSteps_(parms.getNoPreSmoothSteps()),
413 postSteps_(parms.getNoPostSmoothSteps()), buildHierarchy_(false),
414 additive(parms.getAdditive()), coarsesolverconverged(true),
418 verbosity_(parms.debugLevel())
420 assert(matrices_->isBuilt());
423 matrices_->coarsenSmoother(*smoothers_, smootherArgs_);
426 template<
class M,
class X,
class S,
class PI,
class A>
432 : smootherArgs_(smootherArgs),
434 rhs_(), lhs_(), update_(), scalarProduct_(),
435 gamma_(criterion.getGamma()), preSteps_(criterion.getNoPreSmoothSteps()),
436 postSteps_(criterion.getNoPostSmoothSteps()), buildHierarchy_(true),
437 additive(criterion.getAdditive()), coarsesolverconverged(true),
440 verbosity_(criterion.debugLevel())
443 DUNE_THROW(InvalidSolverCategory,
"Matrix and Communication must have the same SolverCategory!");
448 createHierarchies(criterion, matrixptr, pinfo);
451 template<
class M,
class X,
class S,
class PI,
class A>
456 solver_(), rhs_(), lhs_(), update_(), scalarProduct_(), buildHierarchy_(true),
457 coarsesolverconverged(true), coarseSmoother_(),
461 if (configuration.
hasKey (
"smootherIterations"))
462 smootherArgs_.iterations = configuration.
get<
int>(
"smootherIterations");
464 if (configuration.
hasKey (
"smootherRelaxation"))
465 smootherArgs_.relaxationFactor = configuration.
get<
typename SmootherArgs::RelaxationFactor>(
"smootherRelaxation");
467 auto normName = ToLower()(configuration.
get(
"strengthMeasure",
"diagonal"));
468 auto index = configuration.
get<
int>(
"diagonalRowIndex", 0);
470 if ( normName ==
"diagonal")
473 using real_type =
typename FieldTraits<field_type>::real_type;
474 std::is_convertible<field_type, real_type> compiles;
479 createCriterionAndHierarchies(matrixptr, pinfo,
Diagonal<0>(), configuration, compiles);
482 createCriterionAndHierarchies(matrixptr, pinfo,
Diagonal<1>(), configuration, compiles);
485 createCriterionAndHierarchies(matrixptr, pinfo,
Diagonal<2>(), configuration, compiles);
488 createCriterionAndHierarchies(matrixptr, pinfo,
Diagonal<3>(), configuration, compiles);
491 createCriterionAndHierarchies(matrixptr, pinfo,
Diagonal<4>(), configuration, compiles);
497 else if (normName ==
"rowsum")
498 createCriterionAndHierarchies(matrixptr, pinfo,
RowSum(), configuration);
499 else if (normName ==
"frobenius")
500 createCriterionAndHierarchies(matrixptr, pinfo, FrobeniusNorm(), configuration);
501 else if (normName ==
"one")
502 createCriterionAndHierarchies(matrixptr, pinfo, AlwaysOneNorm(), configuration);
507 template<
class M,
class X,
class S,
class PI,
class A>
512 << className<typename M::field_type>() <<
") as it is lacking a conversion to"
513 <<
className<
typename FieldTraits<typename M::field_type>::real_type>() <<
".");
516 template<
class M,
class X,
class S,
class PI,
class A>
518 void AMG<M,X,S,PI,A>::createCriterionAndHierarchies(std::shared_ptr<const Operator> matrixptr,
const PI& pinfo,
const Norm&,
const ParameterTree& configuration, std::true_type)
520 if (configuration.
get<
bool>(
"criterionSymmetric",
true))
525 createHierarchies(criterion, matrixptr, pinfo, configuration);
532 createHierarchies(criterion, matrixptr, pinfo, configuration);
536 template<
class M,
class X,
class S,
class PI,
class A>
538 void AMG<M,X,S,PI,A>::createHierarchies(C& criterion, std::shared_ptr<const Operator> matrixptr,
const PI& pinfo,
const ParameterTree& configuration)
540 if (configuration.hasKey (
"maxLevel"))
541 criterion.setMaxLevel(configuration.get<
int>(
"maxLevel"));
543 if (configuration.hasKey (
"minCoarseningRate"))
544 criterion.setMinCoarsenRate(configuration.get<
int>(
"minCoarseningRate"));
546 if (configuration.hasKey (
"coarsenTarget"))
547 criterion.setCoarsenTarget (configuration.get<
int>(
"coarsenTarget"));
549 if (configuration.hasKey (
"accumulationMode"))
551 std::string mode = ToLower()(configuration.get<std::string>(
"accumulationMode"));
554 else if ( mode ==
"atonce" )
556 else if ( mode ==
"successive")
559 DUNE_THROW(InvalidSolverFactoryConfiguration,
"Parameter accumulationMode does not allow value "
563 if (configuration.hasKey (
"prolongationDampingFactor"))
564 criterion.setProlongationDampingFactor (configuration.get<
double>(
"prolongationDampingFactor"));
566 if (configuration.hasKey(
"defaultAggregationSizeMode"))
568 auto mode = ToLower()(configuration.get<std::string>(
"defaultAggregationSizeMode"));
569 auto dim = configuration.get<std::size_t>(
"defaultAggregationDimension");
570 std::size_t maxDistance = 2;
571 if (configuration.hasKey(
"MaxAggregateDistance"))
572 maxDistance = configuration.get<std::size_t>(
"maxAggregateDistance");
573 if (mode ==
"isotropic")
574 criterion.setDefaultValuesIsotropic(dim, maxDistance);
575 else if(mode ==
"anisotropic")
576 criterion.setDefaultValuesAnisotropic(dim, maxDistance);
578 DUNE_THROW(InvalidSolverFactoryConfiguration,
"Parameter accumulationMode does not allow value "
582 if (configuration.hasKey(
"maxAggregateDistance"))
583 criterion.setMaxDistance(configuration.get<std::size_t>(
"maxAggregateDistance"));
585 if (configuration.hasKey(
"minAggregateSize"))
586 criterion.setMinAggregateSize(configuration.get<std::size_t>(
"minAggregateSize"));
588 if (configuration.hasKey(
"maxAggregateSize"))
589 criterion.setMaxAggregateSize(configuration.get<std::size_t>(
"maxAggregateSize"));
591 if (configuration.hasKey(
"maxAggregateConnectivity"))
592 criterion.setMaxConnectivity(configuration.get<std::size_t>(
"maxAggregateConnectivity"));
594 if (configuration.hasKey (
"alpha"))
595 criterion.setAlpha (configuration.get<
double> (
"alpha"));
597 if (configuration.hasKey (
"beta"))
598 criterion.setBeta (configuration.get<
double> (
"beta"));
600 if (configuration.hasKey (
"gamma"))
601 criterion.setGamma (configuration.get<std::size_t> (
"gamma"));
602 gamma_ = criterion.getGamma();
604 if (configuration.hasKey (
"additive"))
605 criterion.setAdditive (configuration.get<
bool>(
"additive"));
606 additive = criterion.getAdditive();
608 if (configuration.hasKey (
"preSteps"))
609 criterion.setNoPreSmoothSteps (configuration.get<std::size_t> (
"preSteps"));
610 preSteps_ = criterion.getNoPreSmoothSteps ();
612 if (configuration.hasKey (
"postSteps"))
613 criterion.setNoPostSmoothSteps (configuration.get<std::size_t> (
"postSteps"));
614 postSteps_ = criterion.getNoPostSmoothSteps ();
616 verbosity_ = configuration.get(
"verbosity", 0);
617 criterion.setDebugLevel (verbosity_);
619 createHierarchies(criterion, matrixptr, pinfo);
622 template <
class Matrix,
624 struct DirectSolverSelector
627 enum SolverType { umfpack, superlu,
none };
629 static constexpr SolverType solver =
630#if DISABLE_AMG_DIRECTSOLVER
632#elif HAVE_SUITESPARSE_UMFPACK
633 UMFPackMethodChooser< field_type > :: valid ? umfpack :
none ;
640 template <
class M, SolverType>
643 typedef InverseOperator<Vector,Vector> type;
644 static type* create(
const M& mat,
bool verbose,
bool reusevector )
646 DUNE_THROW(NotImplemented,
"DirectSolver not selected");
649 static std::string name () {
return "None"; }
651#if HAVE_SUITESPARSE_UMFPACK
653 struct Solver< M, umfpack >
655 typedef UMFPack< M > type;
656 static type* create(
const M& mat,
bool verbose,
bool reusevector )
658 return new type(mat, verbose, reusevector );
660 static std::string name () {
return "UMFPack"; }
665 struct Solver< M, superlu >
667 typedef SuperLU< M > type;
668 static type* create(
const M& mat,
bool verbose,
bool reusevector )
670 return new type(mat, verbose, reusevector );
672 static std::string name () {
return "SuperLU"; }
677 typedef Solver< Matrix, solver > SelectedSolver ;
678 typedef typename SelectedSolver :: type DirectSolver;
679 static constexpr bool isDirectSolver = solver !=
none;
680 static std::string name() {
return SelectedSolver :: name (); }
681 static DirectSolver* create(
const Matrix& mat,
bool verbose,
bool reusevector )
683 return SelectedSolver :: create( mat, verbose, reusevector );
687 template<
class M,
class X,
class S,
class PI,
class A>
689 void AMG<M,X,S,PI,A>::createHierarchies(C& criterion,
690 const std::shared_ptr<const Operator>& matrixptr,
694 matrices_ = std::make_shared<OperatorHierarchy>(
695 std::const_pointer_cast<Operator>(matrixptr),
698 matrices_->template build<NegateSet<typename PI::OwnerSet> >(criterion);
701 matrices_->coarsenSmoother(*smoothers_, smootherArgs_);
707 if(buildHierarchy_ && matrices_->levels()==matrices_->maxlevels()
708 && ( ! matrices_->redistributeInformation().back().isSetup() ||
709 matrices_->parallelInformation().coarsest().getRedistributed().communicator().size() ) )
712 SmootherArgs sargs(smootherArgs_);
713 sargs.iterations = 1;
716 cargs.setArgs(sargs);
717 if(matrices_->redistributeInformation().back().isSetup()) {
719 cargs.setMatrix(matrices_->matrices().coarsest().getRedistributed().getmat());
720 cargs.setComm(matrices_->parallelInformation().coarsest().getRedistributed());
722 cargs.setMatrix(matrices_->matrices().coarsest()->getmat());
723 cargs.setComm(*matrices_->parallelInformation().coarsest());
727 scalarProduct_ = createScalarProduct<X>(cargs.getComm(),category());
729 typedef DirectSolverSelector< typename M::matrix_type, X > SolverSelector;
732 if( SolverSelector::isDirectSolver &&
733 (std::is_same<ParallelInformation,SequentialInformation>::value
734 || matrices_->parallelInformation().coarsest()->communicator().size()==1
735 || (matrices_->parallelInformation().coarsest().isRedistributed()
736 && matrices_->parallelInformation().coarsest().getRedistributed().communicator().size()==1
737 && matrices_->parallelInformation().coarsest().getRedistributed().communicator().size()>0) )
740 if(matrices_->parallelInformation().coarsest().isRedistributed())
742 if(matrices_->matrices().coarsest().getRedistributed().getmat().N()>0)
745 solver_.reset(SolverSelector::create(matrices_->matrices().coarsest().getRedistributed().getmat(),
false,
false));
752 solver_.reset(SolverSelector::create(matrices_->matrices().coarsest()->getmat(),
false,
false));
754 if(verbosity_>0 && matrices_->parallelInformation().coarsest()->communicator().rank()==0)
755 std::cout<<
"Using a direct coarse solver (" << SolverSelector::name() <<
")" << std::endl;
759 if(matrices_->parallelInformation().coarsest().isRedistributed())
761 if(matrices_->matrices().coarsest().getRedistributed().getmat().N()>0)
766 solver_.reset(
new BiCGSTABSolver<X>(
const_cast<M&
>(matrices_->matrices().coarsest().getRedistributed()),
768 *coarseSmoother_, 1E-2, 1000, 0));
773 solver_.reset(
new BiCGSTABSolver<X>(
const_cast<M&
>(*matrices_->matrices().coarsest()),
775 *coarseSmoother_, 1E-2, 1000, 0));
794 if(verbosity_>0 && matrices_->parallelInformation().finest()->communicator().rank()==0)
795 std::cout<<
"Building hierarchy of "<<matrices_->maxlevels()<<
" levels "
796 <<
"(including coarse solver) took "<<watch.elapsed()<<
" seconds."<<std::endl;
800 template<
class M,
class X,
class S,
class PI,
class A>
807 typedef typename M::matrix_type
Matrix;
814 const Matrix& mat=matrices_->matrices().finest()->getmat();
815 for(RowIter row=mat.begin(); row!=mat.end(); ++row) {
816 bool isDirichlet =
true;
817 bool hasDiagonal =
false;
819 for(ColIter col=row->begin(); col!=row->end(); ++col) {
820 if(row.index()==col.index()) {
828 if(isDirichlet && hasDiagonal)
830 auto&& xEntry = Impl::asVector(x[row.index()]);
831 auto&& bEntry = Impl::asVector(b[row.index()]);
832 Impl::asMatrix(diagonal).solve(xEntry, bEntry);
836 if(smoothers_->levels()>0)
837 smoothers_->finest()->pre(x,b);
840 matrices_->parallelInformation().coarsest()->copyOwnerToAll(x,x);
841 rhs_ = std::make_shared<Hierarchy<Range,A>>(std::make_shared<Range>(b));
842 lhs_ = std::make_shared<Hierarchy<Domain,A>>(std::make_shared<Domain>(x));
843 update_ = std::make_shared<Hierarchy<Domain,A>>(std::make_shared<Domain>(x));
844 matrices_->coarsenVector(*rhs_);
845 matrices_->coarsenVector(*lhs_);
846 matrices_->coarsenVector(*update_);
852 Iterator coarsest = smoothers_->
coarsest();
853 Iterator smoother = smoothers_->finest();
854 RIterator rhs = rhs_->finest();
855 DIterator lhs = lhs_->finest();
856 if(smoothers_->levels()>1) {
858 assert(lhs_->levels()==rhs_->levels());
859 assert(smoothers_->levels()==lhs_->levels() || matrices_->levels()==matrices_->maxlevels());
860 assert(smoothers_->levels()+1==lhs_->levels() || matrices_->levels()<matrices_->maxlevels());
862 if(smoother!=coarsest)
863 for(++smoother, ++lhs, ++rhs; smoother != coarsest; ++smoother, ++lhs, ++rhs)
864 smoother->pre(*lhs,*rhs);
865 smoother->pre(*lhs,*rhs);
875 template<
class M,
class X,
class S,
class PI,
class A>
878 return matrices_->levels();
880 template<
class M,
class X,
class S,
class PI,
class A>
881 std::size_t AMG<M,X,S,PI,A>::maxlevels()
883 return matrices_->maxlevels();
887 template<
class M,
class X,
class S,
class PI,
class A>
890 LevelContext levelContext;
898 initIteratorsWithFineLevel(levelContext);
901 *levelContext.lhs = v;
902 *levelContext.rhs = d;
903 *levelContext.update=0;
904 levelContext.level=0;
908 if(postSteps_==0||matrices_->maxlevels()==1)
909 levelContext.pinfo->copyOwnerToAll(*levelContext.update, *levelContext.update);
911 v=*levelContext.update;
916 template<
class M,
class X,
class S,
class PI,
class A>
919 levelContext.smoother = smoothers_->finest();
920 levelContext.matrix = matrices_->matrices().finest();
921 levelContext.pinfo = matrices_->parallelInformation().finest();
922 levelContext.redist =
923 matrices_->redistributeInformation().begin();
924 levelContext.aggregates = matrices_->aggregatesMaps().begin();
925 levelContext.lhs = lhs_->finest();
926 levelContext.update = update_->finest();
927 levelContext.rhs = rhs_->finest();
930 template<
class M,
class X,
class S,
class PI,
class A>
932 ::moveToCoarseLevel(LevelContext& levelContext)
935 bool processNextLevel=
true;
937 if(levelContext.redist->isSetup()) {
938 levelContext.redist->redistribute(
static_cast<const Range&
>(*levelContext.rhs),
939 levelContext.rhs.getRedistributed());
940 processNextLevel = levelContext.rhs.getRedistributed().size()>0;
941 if(processNextLevel) {
944 ++levelContext.pinfo;
945 Transfer<typename OperatorHierarchy::AggregatesMap::AggregateDescriptor,Range,ParallelInformation>
946 ::restrictVector(*(*levelContext.aggregates), *levelContext.rhs,
947 static_cast<const Range&
>(fineRhs.getRedistributed()),
948 *levelContext.pinfo);
953 ++levelContext.pinfo;
954 Transfer<typename OperatorHierarchy::AggregatesMap::AggregateDescriptor,Range,ParallelInformation>
955 ::restrictVector(*(*levelContext.aggregates),
956 *levelContext.rhs,
static_cast<const Range&
>(*fineRhs),
957 *levelContext.pinfo);
960 if(processNextLevel) {
963 ++levelContext.update;
964 ++levelContext.matrix;
965 ++levelContext.level;
966 ++levelContext.redist;
968 if(levelContext.matrix != matrices_->matrices().coarsest() || matrices_->levels()<matrices_->maxlevels()) {
970 ++levelContext.smoother;
971 ++levelContext.aggregates;
974 *levelContext.update=0;
976 return processNextLevel;
979 template<
class M,
class X,
class S,
class PI,
class A>
981 ::moveToFineLevel(LevelContext& levelContext,
bool processNextLevel)
983 if(processNextLevel) {
984 if(levelContext.matrix != matrices_->matrices().coarsest() || matrices_->levels()<matrices_->maxlevels()) {
986 --levelContext.smoother;
987 --levelContext.aggregates;
989 --levelContext.redist;
990 --levelContext.level;
992 --levelContext.matrix;
996 --levelContext.pinfo;
998 if(levelContext.redist->isSetup()) {
1000 levelContext.lhs.getRedistributed()=0;
1001 Transfer<typename OperatorHierarchy::AggregatesMap::AggregateDescriptor,Range,ParallelInformation>
1002 ::prolongateVector(*(*levelContext.aggregates), *levelContext.update, *levelContext.lhs,
1003 levelContext.lhs.getRedistributed(),
1004 matrices_->getProlongationDampingFactor(),
1005 *levelContext.pinfo, *levelContext.redist);
1007 *levelContext.lhs=0;
1008 Transfer<typename OperatorHierarchy::AggregatesMap::AggregateDescriptor,Range,ParallelInformation>
1009 ::prolongateVector(*(*levelContext.aggregates), *levelContext.update, *levelContext.lhs,
1010 matrices_->getProlongationDampingFactor(),
1011 *levelContext.pinfo);
1015 if(processNextLevel) {
1016 --levelContext.update;
1020 *levelContext.update += *levelContext.lhs;
1023 template<
class M,
class X,
class S,
class PI,
class A>
1026 return IsDirectSolver< CoarseSolver>::value;
1029 template<
class M,
class X,
class S,
class PI,
class A>
1031 if(levelContext.matrix == matrices_->matrices().coarsest() && levels()==maxlevels()) {
1035 if(levelContext.redist->isSetup()) {
1036 levelContext.redist->redistribute(*levelContext.rhs, levelContext.rhs.getRedistributed());
1037 if(levelContext.rhs.getRedistributed().size()>0) {
1039 levelContext.pinfo.getRedistributed().copyOwnerToAll(levelContext.rhs.getRedistributed(),
1040 levelContext.rhs.getRedistributed());
1041 solver_->apply(levelContext.update.getRedistributed(),
1042 levelContext.rhs.getRedistributed(), res);
1044 levelContext.redist->redistributeBackward(*levelContext.update, levelContext.update.getRedistributed());
1045 levelContext.pinfo->copyOwnerToAll(*levelContext.update, *levelContext.update);
1047 levelContext.pinfo->copyOwnerToAll(*levelContext.rhs, *levelContext.rhs);
1048 solver_->apply(*levelContext.update, *levelContext.rhs, res);
1052 coarsesolverconverged =
false;
1057#ifndef DUNE_AMG_NO_COARSEGRIDCORRECTION
1058 bool processNextLevel = moveToCoarseLevel(levelContext);
1060 if(processNextLevel) {
1062 for(std::size_t i=0; i<gamma_; i++){
1064 if (levelContext.matrix == matrices_->matrices().coarsest() && levels()==maxlevels())
1067 levelContext.matrix->applyscaleadd(-1., *levelContext.lhs, *levelContext.rhs);
1072 moveToFineLevel(levelContext, processNextLevel);
1077 if(levelContext.matrix == matrices_->matrices().finest()) {
1078 coarsesolverconverged = matrices_->parallelInformation().finest()->communicator().prod(coarsesolverconverged);
1079 if(!coarsesolverconverged)
1080 DUNE_THROW(MathError,
"Coarse solver did not converge");
1088 template<
class M,
class X,
class S,
class PI,
class A>
1089 void AMG<M,X,S,PI,A>::additiveMgc(){
1092 typename ParallelInformationHierarchy::Iterator pinfo=matrices_->parallelInformation().finest();
1095 typename OperatorHierarchy::AggregatesMapList::const_iterator aggregates=matrices_->aggregatesMaps().begin();
1099 Transfer<typename OperatorHierarchy::AggregatesMap::AggregateDescriptor,Range,ParallelInformation>
1100 ::restrictVector(*(*aggregates), *rhs,
static_cast<const Range&
>(*fineRhs), *pinfo);
1106 lhs = lhs_->finest();
1109 for(rhs=rhs_->finest(); rhs != rhs_->coarsest(); ++lhs, ++rhs, ++smoother) {
1112 smoother->apply(*lhs, *rhs);
1116#ifndef DUNE_AMG_NO_COARSEGRIDCORRECTION
1117 InverseOperatorResult res;
1118 pinfo->copyOwnerToAll(*rhs, *rhs);
1119 solver_->apply(*lhs, *rhs, res);
1122 DUNE_THROW(MathError,
"Coarse solver did not converge");
1131 Transfer<typename OperatorHierarchy::AggregatesMap::AggregateDescriptor,Range,ParallelInformation>
1132 ::prolongateVector(*(*aggregates), *coarseLhs, *lhs, 1.0, *pinfo);
1138 template<
class M,
class X,
class S,
class PI,
class A>
1144 Iterator coarsest = smoothers_->
coarsest();
1145 Iterator smoother = smoothers_->finest();
1146 DIterator lhs = lhs_->finest();
1147 if(smoothers_->levels()>0) {
1148 if(smoother != coarsest || matrices_->levels()<matrices_->maxlevels())
1149 smoother->post(*lhs);
1150 if(smoother!=coarsest)
1151 for(++smoother, ++lhs; smoother != coarsest; ++smoother, ++lhs)
1152 smoother->post(*lhs);
1153 smoother->post(*lhs);
1160 template<
class M,
class X,
class S,
class PI,
class A>
1164 matrices_->getCoarsestAggregatesOnFinest(cont);
1170 template<
class>
struct isValidBlockType : std::false_type{};
1171 template<
class T,
int n,
int m>
struct isValidBlockType<FieldMatrix<T,n,m>> : std::true_type{};
1174 std::shared_ptr<Dune::Preconditioner<typename OP::element_type::domain_type, typename OP::element_type::range_type> >
1175 makeAMG(
const OP& op,
const std::string& smoother,
const Dune::ParameterTree& config)
const
1180 template<
class M,
class X,
class Y>
1181 std::shared_ptr<Dune::Preconditioner<X,Y> >
1182 makeAMG(
const std::shared_ptr<MatrixAdapter<M,X,Y>>& op,
const std::string& smoother,
1185 using OP = MatrixAdapter<M,X,Y>;
1187 if(smoother ==
"ssor")
1188 return std::make_shared<Amg::AMG<OP, X, SeqSSOR<M,X,Y>>>(op, config);
1189 if(smoother ==
"sor")
1190 return std::make_shared<Amg::AMG<OP, X, SeqSOR<M,X,Y>>>(op, config);
1191 if(smoother ==
"jac")
1192 return std::make_shared<Amg::AMG<OP, X, SeqJac<M,X,Y>>>(op, config);
1193 if(smoother ==
"gs")
1194 return std::make_shared<Amg::AMG<OP, X, SeqGS<M,X,Y>>>(op, config);
1195 if(smoother ==
"ilu")
1196 return std::make_shared<Amg::AMG<OP, X, SeqILU<M,X,Y>>>(op, config);
1201 template<
class M,
class X,
class Y,
class C>
1202 std::shared_ptr<Dune::Preconditioner<X,Y> >
1203 makeAMG(
const std::shared_ptr<OverlappingSchwarzOperator<M,X,Y,C>>& op,
const std::string& smoother,
1206 using OP = OverlappingSchwarzOperator<M,X,Y,C>;
1208 auto cop = std::static_pointer_cast<const OP>(op);
1210 if(smoother ==
"ssor")
1211 return std::make_shared<Amg::AMG<OP, X, BlockPreconditioner<X,Y,C,SeqSSOR<M,X,Y>>,C>>(cop, config, op->getCommunication());
1212 if(smoother ==
"sor")
1213 return std::make_shared<Amg::AMG<OP, X, BlockPreconditioner<X,Y,C,SeqSOR<M,X,Y>>,C>>(cop, config, op->getCommunication());
1214 if(smoother ==
"jac")
1215 return std::make_shared<Amg::AMG<OP, X, BlockPreconditioner<X,Y,C,SeqJac<M,X,Y>>,C>>(cop, config, op->getCommunication());
1216 if(smoother ==
"gs")
1217 return std::make_shared<Amg::AMG<OP, X, BlockPreconditioner<X,Y,C,SeqGS<M,X,Y>>,C>>(cop, config, op->getCommunication());
1218 if(smoother ==
"ilu")
1219 return std::make_shared<Amg::AMG<OP, X, BlockPreconditioner<X,Y,C,SeqILU<M,X,Y>>,C>>(cop, config, op->getCommunication());
1224 template<
class M,
class X,
class Y,
class C>
1225 std::shared_ptr<Dune::Preconditioner<X,Y> >
1226 makeAMG(
const std::shared_ptr<NonoverlappingSchwarzOperator<M,X,Y,C>>& op,
const std::string& smoother,
1229 using OP = NonoverlappingSchwarzOperator<M,X,Y,C>;
1231 if(smoother ==
"ssor")
1232 return std::make_shared<Amg::AMG<OP, X, NonoverlappingBlockPreconditioner<C,SeqSSOR<M,X,Y>>,C>>(op, config, op->getCommunication());
1233 if(smoother ==
"sor")
1234 return std::make_shared<Amg::AMG<OP, X, NonoverlappingBlockPreconditioner<C,SeqSOR<M,X,Y>>,C>>(op, config, op->getCommunication());
1235 if(smoother ==
"jac")
1236 return std::make_shared<Amg::AMG<OP, X, NonoverlappingBlockPreconditioner<C,SeqJac<M,X,Y>>,C>>(op, config, op->getCommunication());
1237 if(smoother ==
"gs")
1238 return std::make_shared<Amg::AMG<OP, X, NonoverlappingBlockPreconditioner<C,SeqGS<M,X,Y>>,C>>(op, config, op->getCommunication());
1239 if(smoother ==
"ilu")
1240 return std::make_shared<Amg::AMG<OP, X, NonoverlappingBlockPreconditioner<C,SeqILU<M,X,Y>>,C>>(op, config, op->getCommunication());
1245 template<
typename TL,
typename OP>
1246 std::shared_ptr<Dune::Preconditioner<typename Dune::TypeListElement<1, TL>::type,
1247 typename Dune::TypeListElement<2, TL>::type>>
1249 std::enable_if_t<isValidBlockType<typename OP::matrix_type::block_type>::value,
int> = 0)
const
1251 using field_type =
typename OP::matrix_type::field_type;
1252 using real_type =
typename FieldTraits<field_type>::real_type;
1253 if (!std::is_convertible<field_type, real_type>())
1254 DUNE_THROW(UnsupportedType,
"AMG needs field_type(" <<
1255 className<field_type>() <<
1256 ") to be convertible to its real_type (" <<
1257 className<real_type>() <<
1259 using D =
typename Dune::TypeListElement<1,
decltype(tl)>::type;
1260 using R =
typename Dune::TypeListElement<2,
decltype(tl)>::type;
1261 std::shared_ptr<Preconditioner<D,R>> amg;
1262 std::string smoother = config.
get(
"smoother",
"ssor");
1263 return makeAMG(op, smoother, config);
1266 template<
typename TL,
typename OP>
1267 std::shared_ptr<Dune::Preconditioner<typename Dune::TypeListElement<1, TL>::type,
1268 typename Dune::TypeListElement<2, TL>::type>>
1270 std::enable_if_t<!isValidBlockType<typename OP::matrix_type::block_type>::value,
int> = 0)
const
1272 DUNE_THROW(UnsupportedType,
"AMG needs a FieldMatrix as Matrix block_type");
1276 DUNE_REGISTER_PRECONDITIONER(
"amg", AMGCreator());
Parallel algebraic multigrid based on agglomeration.
Definition: amg.hh:65
The criterion describing the stop criteria for the coarsening process.
Definition: matrixhierarchy.hh:283
LevelIterator< Hierarchy< ParallelInformation, Allocator >, ParallelInformation > Iterator
Type of the mutable iterator.
Definition: hierarchy.hh:216
LevelIterator< const Hierarchy< MatrixOperator, Allocator >, const MatrixOperator > ConstIterator
Type of the const iterator.
Definition: hierarchy.hh:219
an algebraic multigrid method using a Krylov-cycle.
Definition: kamg.hh:140
Two grid operator for AMG with Krylov cycle.
Definition: kamg.hh:33
The hierarchies build by the coarsening process.
Definition: matrixhierarchy.hh:61
All parameters for AMG.
Definition: parameters.hh:393
Criterion taking advantage of symmetric matrices.
Definition: aggregates.hh:519
Criterion suitable for unsymmetric matrices.
Definition: aggregates.hh:539
Base class for Dune-Exceptions.
Definition: exceptions.hh:96
Default exception if a function was called while the object is not in a valid state for that function...
Definition: exceptions.hh:281
ConstIterator class for sequential access.
Definition: matrix.hh:404
A generic dynamic dense matrix.
Definition: matrix.hh:561
typename Imp::BlockTraits< T >::field_type field_type
Export the type representing the underlying field.
Definition: matrix.hh:565
row_type::const_iterator ConstColIterator
Const iterator for the entries of each row.
Definition: matrix.hh:589
T block_type
Export the type representing the components.
Definition: matrix.hh:568
The negation of a set. An item is contained in the set if and only if it is not contained in the nega...
Definition: enumset.hh:96
Default exception for dummy implementations.
Definition: exceptions.hh:263
Hierarchical structure of string parameters.
Definition: parametertree.hh:37
std::string get(const std::string &key, const std::string &defaultValue) const
get value as string
Definition: parametertree.cc:185
bool hasKey(const std::string &key) const
test for key
Definition: parametertree.cc:48
Base class for matrix free definition of preconditioners.
Definition: preconditioner.hh:32
X::field_type field_type
The field type of the preconditioner.
Definition: preconditioner.hh:39
Base class for scalar product and norm computation.
Definition: scalarproducts.hh:52
A few common exception classes.
#define DUNE_THROW(E, m)
Definition: exceptions.hh:218
constexpr GeometryType none(unsigned int dim)
Returns a GeometryType representing a singular of dimension dim.
Definition: type.hh:482
AMG(const AMG &amg)
Copy constructor.
Definition: amg.hh:392
void pre(Domain &x, Range &b)
Prepare the preconditioner.
Definition: amg.hh:801
Hierarchy< Domain, A >::Iterator update
The iterator over the updates.
Definition: amg.hh:303
Hierarchy< Range, A >::Iterator rhs
The iterator over the right hand sided.
Definition: amg.hh:307
bool usesDirectCoarseLevelSolver() const
Check whether the coarse solver used is a direct solver.
Definition: amg.hh:1024
X Domain
The domain type.
Definition: amg.hh:87
AMG(OperatorHierarchy &matrices, CoarseSolver &coarseSolver, const SmootherArgs &smootherArgs, const Parameters &parms)
Construct a new amg with a specific coarse solver.
Definition: amg.hh:406
AMG(std::shared_ptr< const Operator > fineOperator, const ParameterTree &configuration, const ParallelInformation &pinfo=ParallelInformation())
Constructor an AMG via ParameterTree.
Definition: amg.hh:452
ParallelInformationHierarchy::Iterator pinfo
The iterator over the parallel information.
Definition: amg.hh:287
OperatorHierarchy::AggregatesMapList::const_iterator aggregates
The iterator over the aggregates maps.
Definition: amg.hh:295
SmootherTraits< Smoother >::Arguments SmootherArgs
The argument type for the construction of the smoother.
Definition: amg.hh:100
S Smoother
The type of the smoother.
Definition: amg.hh:97
Hierarchy< Smoother, A >::Iterator smoother
The iterator over the smoothers.
Definition: amg.hh:279
M Operator
The matrix operator type.
Definition: amg.hh:73
OperatorHierarchy::ParallelMatrixHierarchy::ConstIterator matrix
The iterator over the matrices.
Definition: amg.hh:283
OperatorHierarchy::RedistributeInfoList::const_iterator redist
The iterator over the redistribution information.
Definition: amg.hh:291
X Range
The range type.
Definition: amg.hh:89
void presmooth(LevelContext &levelContext, size_t steps)
Apply pre smoothing on the current level.
Definition: smoother.hh:406
void getCoarsestAggregateNumbers(std::vector< std::size_t, A1 > &cont)
Get the aggregate number of each unknown on the coarsest level.
Definition: amg.hh:1162
Hierarchy< Domain, A >::Iterator lhs
The iterator over the left hand side.
Definition: amg.hh:299
const void * Arguments
A type holding all the arguments needed to call the constructor.
Definition: construction.hh:44
static std::shared_ptr< T > construct(Arguments &args)
Construct an object with the specified arguments.
Definition: construction.hh:52
void recalculateHierarchy()
Recalculate the matrix hierarchy.
Definition: amg.hh:221
Iterator coarsest()
Get an iterator positioned at the coarsest level.
Definition: hierarchy.hh:383
OperatorHierarchy::ParallelInformationHierarchy ParallelInformationHierarchy
The parallal data distribution hierarchy type.
Definition: amg.hh:84
InverseOperator< X, X > CoarseSolver
the type of the coarse solver.
Definition: amg.hh:91
void post(Domain &x)
Clean up.
Definition: amg.hh:1139
void postsmooth(LevelContext &levelContext, size_t steps)
Apply post smoothing on the current level.
Definition: smoother.hh:428
std::size_t level
The level index.
Definition: amg.hh:311
AMG(const Operator &fineOperator, const C &criterion, const SmootherArgs &smootherArgs=SmootherArgs(), const ParallelInformation &pinfo=ParallelInformation())
Construct an AMG with an inexact coarse solver based on the smoother.
Definition: amg.hh:428
void apply(Domain &v, const Range &d)
Apply one step of the preconditioner to the system A(v)=d.
Definition: amg.hh:888
MatrixHierarchy< M, ParallelInformation, A > OperatorHierarchy
The operator hierarchy type.
Definition: amg.hh:82
virtual SolverCategory::Category category() const
Category of the preconditioner (see SolverCategory::Category)
Definition: amg.hh:194
PI ParallelInformation
The type of the parallel information. Either OwnerOverlapCommunication or another type describing the...
Definition: amg.hh:80
@ atOnceAccu
Accumulate data to one process at once.
Definition: parameters.hh:244
@ noAccu
No data accumulution.
Definition: parameters.hh:238
@ successiveAccu
Successively accumulate to fewer processes.
Definition: parameters.hh:248
Provides a classes representing the hierarchies in AMG.
Dune namespace.
Definition: alignedallocator.hh:13
std::shared_ptr< T > stackobject_to_shared_ptr(T &t)
Create a shared_ptr for a stack-allocated object.
Definition: shared_ptr.hh:72
std::string className()
Provide the demangled class name of a type T as a string.
Definition: classname.hh:47
A hierarchical structure of string parameters.
Implements a scalar matrix view wrapper around an existing scalar.
Define base class for scalar product and norm.
Implements a scalar vector view wrapper around an existing scalar.
Classes for the generic construction and application of the smoothers.
Implementations of the inverse operator interface.
Templates characterizing the type of a solver.
Functor using the row sum (infinity) norm to determine strong couplings.
Definition: aggregates.hh:463
Traits class for getting the attribute class of a smoother.
Definition: smoother.hh:66
Statistics about the application of an inverse operator.
Definition: solver.hh:48
bool converged
True if convergence criterion has been met.
Definition: solver.hh:73
Categories for the solvers.
Definition: solvercategory.hh:22
Category
Definition: solvercategory.hh:23
static Category category(const OP &op, decltype(op.category()) *=nullptr)
Helperfunction to extract the solver category either from an enum, or from the newly introduced virtu...
Definition: solvercategory.hh:34
Classes for using SuperLU with ISTL matrices.
Prolongation and restriction for amg.
Traits for type conversions and type information.
Classes for using UMFPack with ISTL matrices.