1 #ifndef VIENNACL_LINALG_BISECT_GPU
2 #define VIENNACL_LINALG_BISECT_GPU
58 template<
typename NumericT>
60 bisect(
const std::vector<NumericT> & diagonal,
const std::vector<NumericT> & superdiagonal, std::vector<NumericT> & eigenvalues)
62 assert(diagonal.size() == superdiagonal.size() &&
63 diagonal.size() == eigenvalues.size() &&
64 bool(
"Input vectors do not have the same sizes!"));
69 const unsigned int mat_size =
static_cast<unsigned int>(diagonal.size());
120 template<
typename NumericT>
124 assert(diagonal.
size() == superdiagonal.
size() &&
125 diagonal.
size() == eigenvalues.
size() &&
126 bool(
"Input vectors do not have the same sizes!"));
127 bool bResult =
false;
131 const unsigned int mat_size =
static_cast<unsigned int>(diagonal.
size());
std::vector< NumericT > std_eigenvalues
eigenvalues (host side)
Helper structures to simplify variable handling.
Implementation of the dense matrix class.
Computation of eigenvalues of a large symmetric, tridiagonal matrix.
void computeGerschgorin(std::vector< NumericT > &d, std::vector< NumericT > &s, unsigned int n, NumericT &lg, NumericT &ug)
std::vector< typename viennacl::result_of::cpu_value_type< typename VectorT::value_type >::type > bisect(VectorT const &alphas, VectorT const &betas)
Implementation of the bisect-algorithm for the calculation of the eigenvalues of a tridiagonal matrix...
Computation of eigenvalues of a small symmetric, tridiagonal matrix.
Computation of Gerschgorin interval for symmetric, tridiagonal matrix.
bool processResultDataLargeMatrix(ResultDataLarge< NumericT > &result, const unsigned int mat_size)
std::vector< NumericT > std_eigenvalues
eigenvalues
void computeEigenvaluesLargeMatrix(InputData< NumericT > &input, ResultDataLarge< NumericT > &result, const unsigned int mat_size, const NumericT lg, const NumericT ug, const NumericT precision)
#define VIENNACL_BISECT_MAX_SMALL_MATRIX
void computeEigenvaluesSmallMatrix(const InputData< NumericT > &input, ResultDataSmall< NumericT > &result, const unsigned int mat_size, const NumericT lg, const NumericT ug, const NumericT precision)
void processResultSmallMatrix(ResultDataSmall< NumericT > &result, const unsigned int mat_size)
The vector type with operator-overloads and proxy classes is defined here. Linear algebra operations ...
void copy(std::vector< NumericT > &cpu_vec, circulant_matrix< NumericT, AlignmentV > &gpu_mat)
Copies a circulant matrix from the std::vector to the OpenCL device (either GPU or multi-core CPU) ...
size_type size() const
Returns the length of the vector (cf. std::vector)
In this class the data of the result for large matrices is stored.
Implementation of the ViennaCL scalar class.
In this class the data of the result for small matrices is stored.