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

Implementations of dense direct solvers are found here. More...

Go to the source code of this file.

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.
 
 viennacl::linalg::opencl
 Holds all routines providing OpenCL linear algebra operations.
 
 viennacl::linalg::opencl::detail
 Helper functions for OpenCL-accelerated linear algebra operations.
 

Functions

cl_uint viennacl::linalg::opencl::detail::get_option_for_solver_tag (viennacl::linalg::upper_tag)
 
cl_uint viennacl::linalg::opencl::detail::get_option_for_solver_tag (viennacl::linalg::unit_upper_tag)
 
cl_uint viennacl::linalg::opencl::detail::get_option_for_solver_tag (viennacl::linalg::lower_tag)
 
cl_uint viennacl::linalg::opencl::detail::get_option_for_solver_tag (viennacl::linalg::unit_lower_tag)
 
template<typename MatrixT1 , typename MatrixT2 , typename KernelT >
void viennacl::linalg::opencl::detail::inplace_solve_impl (MatrixT1 const &A, MatrixT2 &B, KernelT &k)
 
template<typename NumericT , typename SolverTagT >
void viennacl::linalg::opencl::inplace_solve (matrix_base< NumericT > const &A, matrix_base< NumericT > &B, SolverTagT)
 Direct inplace solver for dense triangular systems. Matlab notation: A \ B. More...
 
template<typename NumericT , typename SOLVERTAG >
void viennacl::linalg::opencl::inplace_solve (matrix_base< NumericT > const &A, vector_base< NumericT > &x, SOLVERTAG)
 

Detailed Description

Implementations of dense direct solvers are found here.

Definition in file direct_solve.hpp.