34template<
class ContainerType>
53 max_iter(max_iterations),
59 sigma.assign(m_l+1,0);
60 gamma.assign(m_l+1,0);
61 gammap.assign(m_l+1,0);
62 gammapp.assign(m_l+1,0);
63 tau.assign( m_l+1, std::vector<value_type>( m_l+1, 0));
71 template<
class ...Params>
75 *
this =
BICGSTABl( std::forward<Params>( ps)...);
79 void set_max(
unsigned new_max) {max_iter = new_max;}
82 unsigned get_max()
const {
return max_iter;}
85 const ContainerType&
copyable()
const{
return m_tmp;}
93 m_throw_on_fail = throw_on_fail;
116 template<
class MatrixType0,
class ContainerType0,
class ContainerType1,
class MatrixType1,
class ContainerType2 >
117 unsigned solve( MatrixType0&& A, ContainerType0& x,
const ContainerType1& b, MatrixType1&& P,
const ContainerType2& W,
value_type eps = 1e-12,
value_type nrmb_correction = 1);
120 unsigned max_iter, m_l;
122 std::vector<ContainerType> rhat;
123 std::vector<ContainerType> uhat;
124 std::vector<value_type> sigma, gamma, gammap, gammapp;
125 std::vector<std::vector<value_type>> tau;
126 bool m_verbose =
false, m_throw_on_fail =
true;
131template<
class ContainerType>
132template<
class Matrix,
class ContainerType0,
class ContainerType1,
class Preconditioner,
class ContainerType2>
133unsigned BICGSTABl< ContainerType>::solve( Matrix&& A, ContainerType0& x,
const ContainerType1& b, Preconditioner&& P,
const ContainerType2& W, value_type eps, value_type nrmb_correction)
137 MPI_Comm_rank(MPI_COMM_WORLD, &rank);
141 value_type tol = eps*(nrmb + nrmb_correction);
155 value_type rho_0 = 1;
156 value_type alpha = 0;
157 value_type omega = 1;
158 ContainerType0& xhat=x;
160 for (
unsigned k = 0; k < max_iter; k+= m_l){
162 rho_0 = -omega*rho_0;
165 for(
unsigned j = 0; j<m_l;j++)
168 value_type beta = alpha*rho_1/rho_0;
170 for(
unsigned i = 0; i<=j;i++)
180 for(
unsigned i = 0; i<=j; i++)
190 for(
unsigned j = 1; j<=m_l; j++){
191 for(
unsigned i = 1; i<j;i++){
199 gamma[m_l] = gammap[m_l];
202 for(
unsigned j=m_l-1;j>=1;j--){
204 for(
unsigned i=j+1;i<=m_l;i++){
205 tmp += tau[j][i]*gamma[i];
207 gamma[j] = gammap[j]-tmp;
209 for(
unsigned j=1;j<=m_l-1;j++){
211 for(
unsigned i=j+1;i<=m_l-1;i++){
212 tmp += tau[j][i]*gamma[i+1];
214 gammapp[j] = gamma[j+1]+tmp;
219 for(
unsigned j = 1; j<=m_l-1; j++){
228 DG_RANK0 std::cout <<
"# Error is now : " << err <<
" Against " << tol << std::endl;
231 DG_RANK0 std::cout <<
"# Exited with error : " << err <<
" After " << k+m_l <<
" Iterations." << std::endl;
236 DG_RANK0 std::cout <<
"# Failed to converge within max_iter" << std::endl;
240 <<
"After "<<max_iter<<
" BICGSTABL iterations with rtol "<<eps<<
" and atol "<<eps*nrmb_correction );
Preconditioned BICGSTAB(l) method to solve .
Definition bicgstabl.h:36
void set_max(unsigned new_max)
Set the maximum number of iterations.
Definition bicgstabl.h:79
void set_throw_on_fail(bool throw_on_fail)
Set or unset a throw on failure-to-converge.
Definition bicgstabl.h:92
void set_verbose(bool verbose)
Set or unset debugging output during iterations.
Definition bicgstabl.h:89
BICGSTABl()=default
Allocate nothing, Call construct method before usage.
void construct(Params &&...ps)
Perfect forward parameters to one of the constructors.
Definition bicgstabl.h:72
unsigned get_max() const
Get the current maximum number of iterations.
Definition bicgstabl.h:82
dg::get_value_type< ContainerType > value_type
Definition bicgstabl.h:39
const ContainerType & copyable() const
Return an object of same size as the object used for construction.
Definition bicgstabl.h:85
ContainerType container_type
Definition bicgstabl.h:38
BICGSTABl(const ContainerType ©able, unsigned max_iterations, unsigned l_input)
Allocate memory for the preconditioned BICGSTABl method.
Definition bicgstabl.h:51
unsigned solve(MatrixType0 &&A, ContainerType0 &x, const ContainerType1 &b, MatrixType1 &&P, const ContainerType2 &W, value_type eps=1e-12, value_type nrmb_correction=1)
Solve using a preconditioned BICGSTABl method.
#define _ping_
Definition exceptions.h:12
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
auto dot(const ContainerType1 &x, const MatrixType &m, const ContainerType2 &y)
; Binary reproducible general dot product
Definition blas2.h:94
void symv(MatrixType &&M, const ContainerType1 &x, ContainerType2 &y)
Definition blas2.h:325
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...
Indicate failure to converge.
Definition exceptions.h:126
Useful typedefs of commonly used types.
#define DG_RANK0
Definition typedefs.h:146