Implementations of direct triangular solvers for sparse matrices using CUDA. More...
#include "viennacl/forwards.h"
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::cuda | |
Holds all CUDA compute kernels used by ViennaCL. | |
Functions | |
template<typename NumericT > | |
__global__ void | viennacl::linalg::cuda::csr_unit_lu_forward_kernel (const unsigned int *row_indices, const unsigned int *column_indices, const NumericT *elements, NumericT *vector, unsigned int size) |
template<typename NumericT > | |
__global__ void | viennacl::linalg::cuda::csr_lu_forward_kernel (const unsigned int *row_indices, const unsigned int *column_indices, const NumericT *elements, NumericT *vector, unsigned int size) |
template<typename NumericT > | |
__global__ void | viennacl::linalg::cuda::csr_unit_lu_backward_kernel (const unsigned int *row_indices, const unsigned int *column_indices, const NumericT *elements, NumericT *vector, unsigned int size) |
template<typename NumericT > | |
__global__ void | viennacl::linalg::cuda::csr_lu_backward_kernel (const unsigned int *row_indices, const unsigned int *column_indices, const NumericT *elements, NumericT *vector, unsigned int size) |
template<typename NumericT > | |
__global__ void | viennacl::linalg::cuda::csr_trans_lu_forward_kernel2 (const unsigned int *row_indices, const unsigned int *column_indices, const NumericT *elements, NumericT *vector, unsigned int size) |
template<typename NumericT > | |
__global__ void | viennacl::linalg::cuda::csr_trans_unit_lu_forward_kernel (const unsigned int *row_indices, const unsigned int *column_indices, const NumericT *elements, NumericT *vector, unsigned int size) |
template<typename NumericT > | |
__global__ void | viennacl::linalg::cuda::csr_trans_lu_forward_kernel (const unsigned int *row_indices, const unsigned int *column_indices, const NumericT *elements, const NumericT *diagonal_entries, NumericT *vector, unsigned int size) |
template<typename NumericT > | |
__global__ void | viennacl::linalg::cuda::csr_trans_unit_lu_backward_kernel (const unsigned int *row_indices, const unsigned int *column_indices, const NumericT *elements, NumericT *vector, unsigned int size) |
template<typename NumericT > | |
__global__ void | viennacl::linalg::cuda::csr_trans_lu_backward_kernel2 (const unsigned int *row_indices, const unsigned int *column_indices, const NumericT *elements, const NumericT *diagonal_entries, NumericT *vector, unsigned int size) |
template<typename NumericT > | |
__global__ void | viennacl::linalg::cuda::csr_trans_lu_backward_kernel (const unsigned int *row_indices, const unsigned int *column_indices, const NumericT *elements, const NumericT *diagonal_entries, NumericT *vector, unsigned int size) |
template<typename NumericT > | |
__global__ void | viennacl::linalg::cuda::csr_block_trans_unit_lu_forward (const unsigned int *row_jumper_L, const unsigned int *column_indices_L, const NumericT *elements_L, const unsigned int *block_offsets, NumericT *result, unsigned int size) |
template<typename NumericT > | |
__global__ void | viennacl::linalg::cuda::csr_block_trans_lu_backward (const unsigned int *row_jumper_U, const unsigned int *column_indices_U, const NumericT *elements_U, const NumericT *diagonal_U, const unsigned int *block_offsets, NumericT *result, unsigned int size) |
Implementations of direct triangular solvers for sparse matrices using CUDA.
Definition in file sparse_matrix_operations_solve.hpp.