SenK
SenK is a C++ library for high-performance linear solvers.
senk_gcr.hpp File Reference

The GCR solvers are defined. More...

#include "senk_sparse.hpp"
#include "senk_blas1.hpp"
Include dependency graph for senk_gcr.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  senk
 The top-level namespace of SenK.
 
namespace  senk::solver
 Contains solvers.
 

Functions

template<typename T >
void senk::solver::Gcrm (T *val, int *cind, int *rptr, T *b, T *x, T nrm_b, int outer, int m, int N, T epsilon)
 The Non-preconditioned GCR(m) solver. More...
 
template<typename T >
void senk::solver::IluGcrm (T *val, int *cind, int *rptr, T *lval, int *lcind, int *lrptr, T *uval, int *ucind, int *urptr, T *b, T *x, T nrm_b, int outer, int m, int N, T epsilon)
 The ILU preconditioned GCR(m) solver. More...
 
template<typename T , int bnl, int bnw>
void senk::solver::IlubGcrm (T *val, int *cind, int *rptr, T *blval, int *blcind, int *blrptr, T *buval, int *bucind, int *burptr, T *b, T *x, T nrm_b, int outer, int m, int N, T epsilon)
 The ILUB preconditioned GCR(m) solver. More...
 

Detailed Description

The GCR solvers are defined.

Author
Kengo Suzuki
Date
5/9/2022

Definition in file senk_gcr.hpp.