![]() |
SenK
SenK is a C++ library for high-performance linear solvers.
|
SenK is a C++ library for high-performance linear solvers that primarily provides solvers for sparse linear systems with CSR matrix storage format. You can easily apply SenK to your applicatioins because it is a header-only library that provides basic functions.
I try to implement it in a way that it does not depend on the compiler and OS, but it has been tested on only macOS, Ubuntu, and CentOS. Since I am developing with C++17, please use a compiler that supports C++17. Installation of other libraries is not required because only C++ standard libraries are used.
Since SenK is a header-only library, no pre-build is required. Just include senk.hpp in your source file and specify the include path at compile time.
The SenK library can be downloaded from the GitHub Repository.
A sample program to execute the ILU(0) preconditioned GMRES(m) solver in double-precision is as follows:
Coming soon.
ILUB preconditioning is one of the preconditioning techniques based on ILU factorization. The control of fill-in during ILU factorization plays an important role. Since there is a trade-off between increased computational cost due to fill-ins and improved convergence property, it is necessary to control fill-in appropriately. In ILUB preconditioning, fill-in is controlled based on a certain (vertical) block structure. It thereby efficiently utilizes SIMD operations for calculations inside the block during forward/backward substitution in the preconditioning process. The SIMD operations can mitigate the effects of increased computational complexity, and the benefits of improved convergence property are more readily apparent.