ViennaCL - The Vienna Computing Library  1.6.0
Free open-source GPU-accelerated linear algebra and solver library.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
bicgstab.hpp File Reference

The stabilized bi-conjugate gradient method is implemented here. More...

Go to the source code of this file.

Classes

class  viennacl::linalg::bicgstab_tag
 A tag for the stabilized Bi-conjugate gradient solver. Used for supplying solver parameters and for dispatching the solve() function. More...
 

Namespaces

 viennacl
 Main namespace in ViennaCL. Holds all the basic types such as vector, matrix, etc. and defines operations upon them.
 
 viennacl::linalg
 Provides all linear algebra operations which are not covered by operator overloads.
 

Functions

template<typename MatrixT , typename NumericT >
viennacl::vector< NumericT > viennacl::linalg::solve (MatrixT const &A, viennacl::vector_base< NumericT > const &rhs, bicgstab_tag const &tag, viennacl::linalg::no_precond)
 Implementation of a pipelined stabilized Bi-conjugate gradient solver. More...
 
template<typename MatrixT , typename VectorT >
VectorT viennacl::linalg::solve (MatrixT const &matrix, VectorT const &rhs, bicgstab_tag const &tag)
 Implementation of the stabilized Bi-conjugate gradient solver. More...
 
template<typename MatrixT , typename VectorT >
VectorT viennacl::linalg::solve (MatrixT const &matrix, VectorT const &rhs, bicgstab_tag const &tag, viennacl::linalg::no_precond)
 
template<typename MatrixT , typename VectorT , typename PreconditionerT >
VectorT viennacl::linalg::solve (MatrixT const &matrix, VectorT const &rhs, bicgstab_tag const &tag, PreconditionerT const &precond)
 Implementation of the preconditioned stabilized Bi-conjugate gradient solver. More...
 

Detailed Description

The stabilized bi-conjugate gradient method is implemented here.

Definition in file bicgstab.hpp.