Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
implicit.h
Go to the documentation of this file.
1#pragma once
2#include "pcg.h"
3
4namespace dg{
6namespace detail{
7template<class Implicit, class Solver>
8struct Adaptor
9{
10 Adaptor( Implicit& im, Solver& solver) : m_im(im), m_solver(solver){}
11 template<class ContainerType, class value_type>
12 void operator()( value_type t, const ContainerType& x, ContainerType& y)
13 {
14 m_im( t,x,y);
15 }
16 template<class ContainerType, class value_type>
17 void operator()( value_type alpha, value_type t, ContainerType& y, const ContainerType& yp)
18 {
19 m_solver.solve( alpha, m_im, t, y, yp);
20 }
21 private:
22 Implicit& m_im;
23 Solver& m_solver;
24};
25}
27
63template<class ContainerType>
65{
66 using container_type = ContainerType;
90 template<class Implicit>
91 DefaultSolver( Implicit& im, const ContainerType& copyable,
92 unsigned max_iter, value_type eps): m_max_iter(max_iter)
93 {
94 m_im = [&im = im]( value_type t, const ContainerType& y, ContainerType&
95 yp) mutable
96 {
97 im( t, y, yp);
98 };
99 // We'll have to do some gymnastics to store precond and weights
100 // We do so by wrapping pcg's solve method
101 // This should not be an example of how to write custom Solvers!
102 m_solve = [ &weights = im.weights(), &precond = im.precond(), pcg =
103 dg::PCG<ContainerType>( copyable, max_iter), eps = eps ]
104 ( const std::function<void( const ContainerType&,ContainerType&)>&
105 wrapper, ContainerType& y, const ContainerType& ys) mutable
106 {
107 return pcg.solve( wrapper, y, ys, precond, weights, eps);
108 };
109 }
111 template<class ...Params>
112 void construct( Params&& ...ps)
113 {
114 //construct and swap
115 *this = DefaultSolver( std::forward<Params>( ps)...);
116 }
119 void set_benchmark( bool benchmark){ m_benchmark = benchmark;}
120
121 void operator()( value_type alpha, value_type time, ContainerType& y, const
122 ContainerType& ys)
123 {
124#ifdef MPI_VERSION
125 int rank;
126 MPI_Comm_rank(MPI_COMM_WORLD, &rank);
127#endif//MPI
128 auto wrapper = [a = alpha, t = time, &i = m_im]( const auto& x, auto& y){
129 i( t, x, y);
130 dg::blas1::axpby( 1., x, -a, y);
131 };
132 Timer ti;
133 if(m_benchmark) ti.tic();
134 dg::blas1::copy( ys, y); // take rhs as initial guess
135 unsigned number = m_solve( wrapper, y, ys);
136 if( m_benchmark)
137 {
138 ti.toc();
139 DG_RANK0 std::cout << "# of pcg iterations time solver: "
140 <<number<<"/"<<m_max_iter<<" took "<<ti.diff()<<"s\n";
141 }
142 }
143 private:
144 std::function<void( value_type, const ContainerType&, ContainerType&)>
145 m_im;
146 std::function< unsigned ( const std::function<void( const
147 ContainerType&,ContainerType&)>&, ContainerType&,
148 const ContainerType&)> m_solve;
149 unsigned m_max_iter;
150 bool m_benchmark = true;
151};
152
153}//namespace dg
Preconditioned conjugate gradient method to solve .
Definition pcg.h:57
void copy(const ContainerTypeIn &source, ContainerTypeOut &target)
Definition blas1.h:243
void axpby(value_type alpha, const ContainerType1 &x, value_type1 beta, ContainerType &y)
Definition blas1.h:306
@ y
y direction
@ x
x direction
typename TensorTraits< std::decay_t< Vector > >::value_type get_value_type
Definition tensor_traits.h:45
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
PCG Solver class for solving .
Definition implicit.h:65
DefaultSolver()
No memory allocation.
Definition implicit.h:69
ContainerType container_type
Definition implicit.h:66
DefaultSolver(Implicit &im, const ContainerType &copyable, unsigned max_iter, value_type eps)
Definition implicit.h:91
void construct(Params &&...ps)
Perfect forward parameters to one of the constructors.
Definition implicit.h:112
void set_benchmark(bool benchmark)
Set or unset performance timings during iterations.
Definition implicit.h:119
get_value_type< ContainerType > value_type
Definition implicit.h:67
void operator()(value_type alpha, value_type time, ContainerType &y, const ContainerType &ys)
Definition implicit.h:121
Simple tool for performance measuring.
Definition dg_doc.h:352
double diff() const
Return time in seconds elapsed between tic and toc.
void toc()
Stop timer.
void tic()
Start timer.
#define DG_RANK0
Definition typedefs.h:146