![]() |
SenK
SenK is a C++ library for high-performance linear solvers.
|
The GCR solvers are defined. More...
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... | |