7template<
class Implicit,
class Solver>
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)
16 template<
class ContainerType,
class value_type>
17 void operator()( value_type alpha, value_type t, ContainerType& y,
const ContainerType& yp)
19 m_solver.solve( alpha, m_im, t, y, yp);
63template<
class ContainerType>
90 template<
class Implicit>
92 unsigned max_iter,
value_type eps): m_max_iter(max_iter)
94 m_im = [&im = im](
value_type t,
const ContainerType&
y, ContainerType&
102 m_solve = [ &weights = im.weights(), &precond = im.precond(), pcg =
104 (
const std::function<
void(
const ContainerType&,ContainerType&)>&
105 wrapper, ContainerType&
y,
const ContainerType& ys)
mutable
107 return pcg.solve( wrapper, y, ys, precond, weights, eps);
111 template<
class ...Params>
126 MPI_Comm_rank(MPI_COMM_WORLD, &rank);
128 auto wrapper = [a = alpha, t = time, &i = m_im](
const auto&
x,
auto&
y){
133 if(m_benchmark) ti.
tic();
135 unsigned number = m_solve( wrapper,
y, ys);
139 DG_RANK0 std::cout <<
"# of pcg iterations time solver: "
140 <<number<<
"/"<<m_max_iter<<
" took "<<ti.
diff()<<
"s\n";
144 std::function<void(
value_type,
const ContainerType&, ContainerType&)>
146 std::function< unsigned (
const std::function<
void(
const
147 ContainerType&,ContainerType&)>&, ContainerType&,
148 const ContainerType&)> m_solve;
150 bool m_benchmark =
true;
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
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 ©able, 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.
#define DG_RANK0
Definition typedefs.h:146